Pergunta

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.

Foi útil?

Solução

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

@EJB private YourStatelessBeanInterface statelessBean;

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top