Pre-requisite trails
Concept Overview
Typically in Spring, dependency injection is achieved using
bean
,
constructor
and
property
tags.
However, in large applications, the number of beans will increase and the corresponding XML written to configure the numerous beans will become very large and unwieldly.
Spring provides a feature called ‘Auto-Wiring’ that minimizes the XML to be written provided that certain assumptions are made about the nomenclature of beans and properties. Using ‘Auto-Wiring’ feature, the number of tags like
constructor
and
property
is significantly minimized and the size of XML is reduced considerably for large applications.
Spring provides auto-wiring based on both XML and Annotations.
In this tutorial we will look into auto-wiring based on Annotations.
Auto-Wiring based on annotations is achieved as follows:
- Use the context:annotation-config tag in spring-context.xml
- Use the @Autowired annotation to qualify either the member or a corresponding method (usually the setter method) which takes the injected type as argument
Using
@Autowired
annotation is similar to using XML auto-wire configuration using
byType
. Refer to
this trail
for further details.
The
@Autowired
annotation can be used to qualify:
- a member
- any method (including setter method) which takes the injected type as argument
Note: If Spring finds no bean of injected type for auto-wiring, then it will throw
NoSuchBeanDefinitionException
. If in such a situation, we don’t want Spring to throw the exception and it is acceptable to leave the dependency un-injected then use
@Autowired(required=false)
.
Also note that if multiple types are available for injection, then Spring will be unable to make a decision on which bean to inject and will throw an Exception.
Sample Program Overview
The sample program is based on an ATM system which contains a Printer that prints the balance information for an account.
We will create the Printer class .
We will then create the ATM with member as printer.
We will also create the spring-config.xml and declare the Printer and ATM beans. We will use the
context:annotation-config
tag in spring-context.xml to let Spring know that annotation based auto-wiring will be used.
We will then use Spring’s auto-wiring feature and use
@Autowired
annotation to inject Printer into ATM bean.
Finally, we will test our setup using TestAutoWireAnnotation class which will load Spring context and get a reference to ATM class. We will print the balance information for an account number to verify that dependency injection using auto-wiring by Annotations has occured successfully.
- commons-logging.jar
- log4j.jar
- org.springframework.aop.jar
- org.springframework.asm.jar
- org.springframework.beans.jar
- org.springframework.context.jar
- org.springframework.context.support.jar
- org.springframework.core.jar
- org.springframework.expression.jar
Create the Printer (see sample code below).
Create the printBalanceInformation() method (see line 6 below)
Create the ATM (see sample code below).
Create member printer (see line 7 below)
Create accessor methods for printer (see lines 9-15 below).
Add the
@Autowired
annotation on top of the setPrinter() method (see line 12 below). This demonstrates the usage of Annotation based auto-wiring.
Create the printBalanceInformation() method (see line 17 below) and delegate the call to Printer.printBalanceInformation() method (see line 18 below).
Create the spring-config.xml file (see below).
Let Spring know that annotation based auto-wiring will be used by declaring the tag
context:annotation-config
tag(see line 14 below)
Declare bean for Printer (see lines 16-18 below)
Declare bean for ATM (see line 20 below).
Note that no dependency injection is configured in spring-config.xml file
Note that we did not declare the
property
tag with
bean
tag of ATM thereby reducing the XML size.
Finally, we need a java program to test the our setup.This is done by TestAutoWireAnnotation (see source code below).
We need to tell Spring framework to use the ‘spring-config.xml’ to load our beans (see line 11 below).
We get the reference to ATM class through Spring using the bean name ‘atm’ (see line 12 below).
We access the atm.printBalanceInformation(() method and print the balance information to verify that auto-wiring using Annotations has occured successfully (see line 14 below).
This sample program has been packaged as a jar installer which will copy the source code (along with all necessary dependencies) on your machine and automatically run the program for you as shown in the steps below. To run the sample program, you only need Java Runtime Environment (JRE) on your machine and nothing else.
(Alternatively you can go the folder containing the springautowireannotation-installer.jar and execute the jar using
java -jar springautowireannotation-installer.jar
command)
This source code for this program is downloaded in the folder specified by you (say, C:\Temp) as an eclipse project called
springautowireannotation
. All the required libraries have also been downloaded and placed in the same location. You can open this project from Eclipe IDE and directly browse the source code. See below for details of the project structure.
When @Autowired uses, default constructor is called. For example:
Class B {
@Autowired
A b
}
@Component
Class A {
A() {
// default constructor
}
A(int x, int y) {
// another constructor
}
}
My question is, how to configure so that overloaded constructor will be called rather than default one?