Question

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.

Était-ce utile?

La solution

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

@EJB private YourStatelessBeanInterface statelessBean;

Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top