Hibernate

Hibernate

Hibernate is a Java framework that simplifies the development of Java application to interact with the database. It is an open source, lightweight, ORM (Object Relational Mapping) tool. Hibernate implements the specifications of JPA (Java Persistence API) for data persistence.

 

Anotaions

Entity
Tables
Id
Transient


SQL

Configuration
buildSessionFactory
openSession
addAnotatedClass
Trancaction


Emmedable

Emmedable anotation
Save, fetch


Relationship

One to One
One To Many
Many To Many
Save, fetch


Caching

Save, fetch


CRUD Operations

Create, Read, Update, Delete

Share The Post