Session 04 Java Persistence, Hibernate, Spring Data
Session 04 Java Persistence, Hibernate, Spring Data
ANTEA TRAINING
Java Persistence, Hibernate, Spring Data
Session 04
• Summary
• Java Persistence, Entity Manager
• In
One-To-One relationship, one item can belong to only one
other item.
• It
means each row of one entity is referred to one and only
one row of another entity.
Java Persistence API
• JPQL Entity Relationships One-To-One
Java Persistence API
• JPQL Entity Relationships
Hibernate Framework
Session 04
Hibernate Framework
• Hibernate Framework Introduction
Java Persistence API (JPA) defines the management of Hibernate is an Object-Relational Mapping (ORM) tool
relational data in the Java applications. which is used to save the state of Java object into the
database.
It is just a specification. Various ORM tools implement It is one of the most frequently used JPA
it for data persistence. implementation.