This tag is used for question related to the session bean and message-driven bean component types of the EJB 3.0 programming model.
I have a stateless bean something like: @Stateless public class MyStatelessBean implements MyStatelessLocal, MyStatelessRemote { @PersistenceContext(unitName="myPC") private EntityManager mgr; @…
transactions jakarta-ee ejb-3.0When a (transactional) method of an EJB calls another (transactional) method of another EJB, and an exception is thrown in …
jakarta-ee transactions ejb ejb-3.0EJBs seem to be loaded lazily - whenever accessed. However, I want to initialize them eagerly - i.e. whenever …
java jboss jakarta-ee ejb-3.0I just read the Transactions Chapter (10) of "Mastering EJB 3.0" and now I'm confused about nested transactions. The book says "The …
jakarta-ee transactions ejb-3.0 nested-transactionsI'm triying to consume a Local EJB in the same Glassfish, but different ears. But Glassfish can't found the local …
java jakarta-ee ejb ejb-3.0 glassfish-3Regarding a Java EE Web application which is going to be served by a full Java EE Application server e.…
hibernate jpa jakarta-ee ejb-3.0I am trying to call a method when my webapplication starts. The purpose is to kick-off a timer that does …
java jboss ejb-3.0This is probably something trivial, but I'd love some help. I get: javax.ejb.EJBException: java.lang.IllegalStateException: Illegal to …
java hibernate jpa transactions ejb-3.0