EJB-isolation-levels.aspx

What are the transaction isolation levels in EJB?

1. Transaction_read_uncommitted : Allows a method to read uncommitted data from a DB(fast but not wise).

2. Transaction_read_committed : Guarantees that the data you are getting has been committed.

3. Transaction_repeatable_read : Guarantees that all reads of the database will be the same during the transaction (good for read and update operations).

4. Transaction_serializable : All the transactions for resource are performed serial.
Bean managed transaction: What is bean managed transaction?
Bean managed transaction - This is usually when a developer does not want the Container to manage the transactions. ..
EJB abstract schema: What is abstract schema?
EJB abstract schema - Abstract schema is specified for entity beans with container managed persistence. The name of Abstract schema....
EJB Message Driven Bean: What is Message Driven Bean?
EJB Message Driven Bean - A Message Driven Bean is a message consumer. Message-driven beans receive JMS messages and process them...
Post your comment