vote up 0 vote down star

Is it possible to inject ejb's into pojo's using the @EJB annotation? If it is, do I have to set up anything special on a JBoss server to make it work?

Please let us not discuss the rationale behind doing this - I am just trying to hack some old code to make it work :-)

flag

70% accept rate

2 Answers

vote up 0 vote down

Not sure, but EJB 3.1 should allow this.

link|flag
vote up 1 vote down

Yes, if you can make JBoss create the Pojo for you.

Your problem is that you probably call new to create the Pojo and the framework can't intercept this which is why @EJB is ignored.

The solution is to use a factory to create your Pojos and tell the factory about the EJBs, so it can set them before returning the new Pojo.

link|flag
You mean a regular factory pattern created as a bean, right? Factories are not a specific part of the JBoss?! – homaxto Nov 2 at 8:21
I refer to the Gang of Four pattern: en.wikipedia.org/wiki/Factory_pattern – Aaron Digulla Nov 2 at 8:57
If I use the factory to set the EJB's then I don't use the @EJB, or do I misunderstand something? – homaxto Nov 2 at 11:03

Your Answer

Get an OpenID
or

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