Multiple choice technology databases

what are the three main components in Hibernate architecture?

  1. Connection Management

  2. Bean Management

  3. Transaction Management

  4. Object relational mapping

  5. Relational Management

Reveal answer Fill a bubble to check yourself
A,C,D Correct answer
Explanation

Hibernate's three main architectural components are Connection Management (handles database connections), Transaction Management (manages ACID transactions and ensures data consistency), and Object Relational Mapping (maps Java objects to database tables). These form the core framework for database interaction. Bean Management and Relational Management are not standard Hibernate architectural components - the framework uses POJOs (Plain Old Java Objects) rather than managing beans directly.