I have got two Beans. One Stateful and one Stateless. Now I want to call a method, which is in the stateless bean, from the stateful bean. How can I do this? The stateless bean has also got an interface.

link|improve this question

50% accept rate
Could you describe what is your problem exactly? Did you try to do this and it didn't work? – Piotr Nowicki Nov 6 '11 at 22:17
feedback

1 Answer

I assume you are using EJB3.0. So, put in your Stateful bean:

@EJB private YourStatelessBeanInterface statelessBean;

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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