Monday 31 October 2022

Introduction to Hibernate

Hibernate is an Object/Relational Mapping solution for Java applications. Object relational mapping is a technique to map the object data to a relational data representation and vice versa. For example, an object to a table row/record.

 

Hibernate is an ORM framework, that sits between your java application and a Relational database. Java application use Hibernate APIs to perform create, update, delete, and query etc., operations.

 


 

 

In this tutorial series, I used

a.   Hibernate with postgresql and H2 to demonstrate the examples.

b.   JDK 15

 

 

 

References

https://docs.jboss.org/hibernate/orm/6.0/quickstart/html_single/

https://docs.jboss.org/hibernate/orm/6.0/topical/html_single/

https://docs.jboss.org/hibernate/orm/6.0/userguide/html_single/Hibernate_User_Guide.html


Previous                                                    Next                                                    Home

No comments:

Post a Comment