InterviewSolution
Saved Bookmarks
| 1. |
What is Generator Class? List the default generator classes provided by the Hibernate Framework? |
|
Answer» Transaction is a single UNIT of work. It is single-threaded and abstracts the application from the underlying JDBC or JTA transaction. A transaction is associated with a session. It is instantiated by calling the session.beginTransaction() method. The transaction interface has the FOLLOWING methods:
Every transaction has a set of properties called ACID properties. ACID stands for Atomicity, Consistency, Isolation, Durability. |
|