the ejb 3.2 api belongs to the java enterprise edition 7.0 standard. It brings non-persistent timer service and asynchronous beans into the EJB-lite profile and transactional lifecycle callbacks for stateful session beans. It also makes a number of pre EJB 2.1 standards optional such as CMP/BMP beans and the EJBQL, rpc webservice endpoints are also made optional.
Questions tagged [ejb-3.2]
92 questions
0
votes
1 answer
Can I get something like an entity bean in EJB 3.2?
I was reading a Java EE book recently, and apparently entity beans were recently removed from the EJB specification. You are supposed to use JPA instead. But I want entity beans!! What I am really looking for is a JPA persistent entity that is…

tbodt
- 16,609
- 6
- 58
- 83
-1
votes
2 answers
How to react on a EJB3 transaction commit or rolleback?
I have implemented a Service as a stateless session EJB (3.2) to store data via JPA. In addition the EJB also updates a Lucene Index each time data is updated. The session bean is container managed. The code of the ejb looks like…

Ralph
- 4,500
- 9
- 48
- 87