Annotations Annotation Package Source: Spring Tool Suite
Annotations Annotation Package Source: Spring Tool Suite
Ive been asked several times to explain the difference between injecting Spring beans with @Resource,
@Autowired, and @Inject. While I received a few opinions from colleagues and read a couple of posts on
this topic I didnt feel like I had a complete picture.
Annotations
Annotation
@Resource
@Inject
@Qualifier
@Autowired
Package
Source
javax.annotation
Java
javax.inject
Java
javax.inject
Java
org.springframework.bean.factory Spring
In order to explore the behavior of each annotation I fired up Spring Tool Suite and started debugging the
code. I used Spring 3.0.5.RELEASE in my research. The following is a summary of my findings.
The Code
I wanted to know how @Resource, @Autowired, and @Inject resolved dependencies. I created an
interface called Party and created two implementations classes. This allowed me to inject beans without
using the concrete type. This provided the flexibility I needed to determine how Spring resolves beans
when there are multiple type matches.
public interface Party {
I setup a Spring context that scans both of these packages for beans marked with @Component.
<context:component-scan base-package="com.sourceallies.organization"/>
<context:component-scan base-package="com.sourceallies.person"/>
Tests
Test 1: Ambiguous Beans
In this test I injected a Party bean that has multiple implementations in the Spring context.
@Resource
private Party party;
@Autowired
private Party party;
@Inject
private Party party;
@Resource can also take an optional name attribute. This is equivalent to the @Resource code above. In
this case the field variable name remains party. There is no equivalent syntax for @Autowired or
@Inject. Instead you would have to use a @Qualifier. This syntax will be covered later.
@Resource(name="person")
private Party party;
@Autowired
@Qualifier("person")
private Party party;
@Inject
@Qualifier("person")
private Party party;
In this test I use a @Qualifier annotation to point to the qualified name of the Person component.
@Resource
@Qualifier("personBean")
private Party party;
@Autowired
@Qualifier("personBean")
private Party party;
@Inject
@Qualifier("personBean")
private Party party;
All of these annotations inject 2 beans into the list. This can also be accomplished with a
@Qualifier. Each bean marked with a specific qualifier will be added to the list.
In this case the field marked with @Resource uses the field name and ignores the
@Qualifier. As a result the Person bean is injected.
However the @Autowired and @Inject field throw a NoSuchBeanDefinitionException error
because it can not find a bean that matches the @Qualifier.
org.springframework.beans.factory.NoSuchBeanDefinitionException:
No matching bean of type [com.sourceallies.Party] found for dependency:
expected at least 1 bean which qualifies as autowire candidate for this dependency.
Dependency annotations: {@org.springframework.beans.factory.annotation.Autowired(required=true),
@org.springframework.beans.factory.annotation.Qualifier(value=bad)}
Conclusions
With the exception of test 2 & 7 the configuration and outcomes were identical. When I looked under the
hood I determined that the @Autowired and @Inject annotation behave identically. Both of these
annotations use the AutowiredAnnotationBeanPostProcessor to inject dependencies. @Autowired and
@Inject can be used interchangeable to inject Spring beans. However the @Resource annotation uses the
CommonAnnotationBeanPostProcessor to inject dependencies. Even though they use different post
processor classes they all behave nearly identically. Below is a summary of their execution paths.
@Autowired and @Inject
1. Matches by Type
2. Restricts by Qualifiers
3. Matches by Name
@Resource
1. Matches by Name
2. Matches by Type
3. Restricts by Qualifiers (ignored if match is found by name)
While it could be argued that @Resource will perform faster by name than @Autowired and @Inject it
would be negligible. This isnt a sufficient reason to favor one syntax over the others. I do however favor
the @Resource annotation for its concise notation style.
@Resource(name="person")
@Autowired
@Qualifier("person")
@Inject
@Qualifier("person")
You may argue that they can be equal concise if you use the field name to identify the bean name.
@Resource
private Party person;
@Autowired
private Party person;
@Inject
private Party person;
True enough, but what happens if you want to refactor your code? By simply renaming the field name
youre no longer referring to the same bean. I recommend the following practices when wiring beans with
annotations.
Spring Annotation Style Best Practices