Spring autowiring byType

Spring autowiring byType means autowiring on the basis of datatype. if any bean property datatype matches with exact one other bean’s datatype declaration then spring will automatically takes care of dependency. If more than one bean property matches, then it throws fatal exception.

Below diagram will make it clear:

Spring autowiring by Type

For example:

I am taking example of autowire “byType” here.It will be almost same as Dependency injection via setter method with some changes in XML configuration file.

1.Country.java:

This is simple pojo class having some attributes so here country has name and object of Capital class.
Create Country.java under package org.arpit.java2blog.Copy following content into Country.java.

2.Capital.java

This is also simple pojo class having one attribute called “capitalName”.
Create Capital.java under package org.arpit.java2blog.java.Above Country class contains object of this class.Copy following content into Capital.java

3.BeanAutowiringByTypeMain.java

This class contains main function.Create BeanAutowiringByTypeMain.java under package org.arpit.java2blog.Copy following content into BeanAutowiringByTypeMain.java
You can note here that we have used ClassPathXmlApplicationContext for getting bean here.There are various ways for getting beans.In hello world example we have used XmlBeanFactory for getting beans.

4.ApplicationContext.xml

Here in ,we have used autowire attribute and set it to “byType”.So now spring container will match Capital datatype in Country class with type of other beans in XML configuration file. So here you can see we have bean with class as Capital.

5.Run it

When you will run above application,you will get following as output.

What if two properties of class have same datatype:

Change ApplicationContext.xml as below:

In above xml, we have declared two capital beans,now how it will autowire.
Answer: It won’t.
When you run above program, it will give you below exception:

It will give you below exception.

Was this post helpful?

Leave a Reply

Your email address will not be published. Required fields are marked *