How can I use JSR-299 CDI to inject (not annotated) beans from external libraries?

Examples:

Interface X and its implementations come from a third party lib. How can I decide which implementation to use?

class A {

    @Inject 
    private X x;

}

What if I had several classes using the X interface but different implementations?

class A {

    @Inject 
    private X x; // should be XDefaultImpl

}

class B {

    @Inject 
    private X x; // should be XSpecialImpl

}
link|improve this question

69% accept rate
feedback

1 Answer

up vote 3 down vote accepted

Use producers:

public class ClassInABeanArchive {
    @Produces @SpecialX public X createSpecialX() {
        return new XSpecialImpl();
    }

    @Produces @DefaultX public X createDefaultX() {
        return new XDefaultImpl();
    }
}

You will have to define the @SpecialX and @DefaultX qualifiers. and use them together with @Inject:

@Qualifier
@Retention(..)
@Target(..)
public @interface SpecialX {}

If you don't need to differentiate two implementations, skip the qualifiers part.

link|improve this answer
+1 How went your partial implementation of JSR-299 BTW? – Pascal Thivent Jun 3 '10 at 17:36
I submitted it. It wasn't of quite a good quality, but the major features worked fine :) I made a sample jsf2 app to demonstrate some of the features. All others were unit-tested. Now I plan to make a presentation on CDI in front of BG JUG. We'll see :) – Bozho Jun 3 '10 at 17:52
(code.google.com/p/blinkframework it's here, but it isn't of "production interest" :) ) – Bozho Jun 3 '10 at 17:59
Using an annotation with a string parameter (httpParm("foo")) is described in the Weld Documentation (but does not map directly to JSR-330): docs.jboss.org/weld/reference/1.0.0/en-US/html_single/#d0e1540 – Thorbjørn Ravn Andersen Jan 13 '11 at 10:41
yes, there was some strange things with the usecase. But how does it relate to this answer/question? – Bozho Jan 13 '11 at 10:45
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.