I would like to inject a different implementation in a bean, depending on the context. Here is the situation :

interface A{}

class AImplForTest implements A{}

class AImplForProd implements A{}

class B{
    @Inject A a;
}

In a test context, I would like the AImplForTest to be injected, while in a production context, this should be AImplForProd. B is the same class in the two contexts. Is it possible?

link|improve this question

67% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Never used in practice but from theory you could use the @Alternative annotation.

From the Weld reference documentation:

Alternatives are beans whose implementation is specific to a particular client module or deployment scenario. ... By default, @Alternative beans are disabled. We need to enable an alternative in the beans.xml descriptor of a bean archive to make it available for instantiation and injection. This activation only applies to the beans in that archive.

link|improve this answer
That's what I tried in a first time, but I had to locate my sources in a project, and the test (and the AImplForTest) in another project. But what does the term "archive" mean ? Maybe I don't really understand what it really means... – Rémi Doolaeghe Feb 10 at 10:00
Archive is the WAR or JAR. – Matt Handy Feb 10 at 10:18
feedback

Your Answer

 
or
required, but never shown

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