Which annotation, @Resource (jsr250) or @Autowired (Spring specific) should I be using when using DI?

I have successfully used both in the past, @Resource(name="blah") and @Autowired @Qualifier("blah")

my instinct is to stick with the @Resource tag since it's been ratified by the jsr people... anyone have strong thoughts on this?

(apologies if this question has been asked before, I couldn't find it...)

link|improve this question

feedback

3 Answers

up vote 18 down vote accepted

In spring pre-3.0 it doesn't matter which one.

In spring 3.0 there's support for the standard (JSR-330) annotation @javax.inject.Inject - use it, with a combination of @Qualifier. Note that spring now also supports the @javax.inject.Qualifier meta-annotation:

@Qualifier
@Retention(RUNTIME)
public @interface YourQualifier {}

So you can have

<bean class="com.pkg.SomeBean">
   <qualifier type="YourQualifier"/>
</bean>

or

@YourQualifier
@Component
public class SomeBean implements Foo { .. }

And then:

@Inject @YourQualifier private Foo foo;

This makes less use of String-names, which can be misspelled and are harder to maintain.

link|improve this answer
1  
+1 for the Spring 3 new features. I hope you wouldn't mind my corrections to the post. – Adeel Ansari Nov 4 '10 at 15:49
+1 nice answer, cheers – mlo55 Nov 8 '10 at 1:15
@mlo55 note that you are invited to mark the best answer according to you, as accepted (tick below the vote counter) – Bozho Nov 8 '10 at 6:27
done, cheers – mlo55 Nov 9 '10 at 1:14
This might see like a silly question, but when you use this style of injection, do you need a public setter for foo or a constructor in SomeBean with a Foo param? – Snekse Dec 29 '11 at 16:28
show 2 more comments
feedback

The primary difference is, @Autowired is a spring annotation. Whereas @Resource is specified by the JSR-250, as you pointed out yourself. So the latter is part of Java whereas the former is Spring specific.

Hence, you are right in suggesting that, in a sense. I found folks use @Autowired with @Qualifier because it is more powerful. Moving from some framework to some other is considered very unlikely, if not myth, especially in the case of Spring.

link|improve this answer
feedback

Both of them are equally good. The advantage of using Resource is in future if you want to another DI framework other than spring, your code changes will be much simpler. Using Autowired your code is tightly coupled with springs DI.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.