Spring has its own Qualifier annotation, I think it's equals to javax.inject.Named annotation, which in turns is a concrete qualifier in JSR-330.

So, I'm wondering whether or which version of Spring supports Qualifier?

Here is my example usage, unfortunately it doesn't work with spring-context 3.0.5:

@Retention(RUNTIME)
@javax.inject.Qualifier
public @interface Version {

    String value();

}

@Configuration
public class MyConfig {

    @Bean("book-12") @Version("a") Book book12a() { ... }

    @Bean("book-12") @Version("b") Book book12b() { ... }

}

@Component
public class UserClass {

    @Inject @Named("book-12") Book anybook12;

    @Inject @Named("book-12") @Version("b") Book book12_b;

}
link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

Yes, it supports all javax.inject.* annotations. I myself have used the javax.inject.Qualifier

Btw, I assume you want @Service or @Component instead of @Bean, and you need your Book class to be made spring-managed.

link|improve this answer
D'oh.. But my example doesn't work... - - – Xie Jilei Mar 8 '11 at 13:38
@谢继雷'Lenik use @Service rather than @Bean – Bozho Mar 8 '11 at 13:39
@Bozho: @Service and @Component are ElementType.TYPE targeted, but I don't want to create extra types. So, I guess @Bean won't work, right? – Xie Jilei Mar 8 '11 at 15:04
@谢继雷'Lenik no. you must have a Book class that is annotated and made spring-managed. – Bozho Mar 8 '11 at 15:09
1  
@CarlosZ @谢继雷'Lenik well, using java-config (@Configuration) perhaps doesn't work with qualifiers. – Bozho Mar 8 '11 at 15:17
show 1 more comment
feedback

Your Answer

 
or
required, but never shown

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