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...)