February 2017
Intermediate to advanced
1023 pages
24h 11m
English
Q1. What is ORM?
ORM is the process of persisting objects in a relational database such as RDBMS. ORM bridges the gap between object and relational schemas, allowing object-oriented application to persist objects directly without having the need for converting object to and from a relational format.
ORM is about mapping object representations to JDBC Statement parameters, and in turn mapping JDBC query results back to object representations. The database columns are mapped to instance fields of domain objects or JavaBeans' properties.
Q2. Explain the basics elements of Hibernate architecture.
The basics elements of Hibernate architecture are described in the following sections:
Configuration: The org.hibernate.cfg.Configuration ...Read now
Unlock full access