57.5k views
0 votes
What are the core interfaces are of the Hibernate framework?

User Ann
by
8.7k points

1 Answer

0 votes

Final answer:

The core interfaces of the Hibernate framework are SessionFactory, Session, Transaction, Query, and Criteria.

Step-by-step explanation:

The core interfaces of the Hibernate framework are:



  1. SessionFactory: This interface provides methods to create and manage database connections.
  2. Session: This interface represents a single unit of work with the database.
  3. Transaction: This interface is used to perform database transactions.
  4. Query: This interface is used to execute database queries.
  5. Criteria: This interface provides a way to formulate database queries using Java objects.

User Jsmtslch
by
7.9k points