Category Archives: Hibernate

Hibernate 5 distribution binary details

Once you download the latest version of Hibernate distribution from http://kkjavatutorials.com/latest-hibernate-distribution-zip-file-download-link/. Once you unzip the downloaded file, You will see directory structure as shown in the following image: Now you further if you go to lib directory you will see following directory structure You May Also Like: Latest hibernate distribution Zip file download link Create… Read More »

Latest hibernate distribution Zip file download link

You can refer below link to download latest distribution zip file: Download Hibernate Latest distribution zip file You May Also Like: Hibernate 5 distribution binary details Create SessionFactory in Hibernate5 using hibernate.cfg.xml Create SessionFactory in Hibernate5 without hibernate.cfg.xml Save and persist an entity example in hibernate Hibernate CRUD(Create,Read,Update and Delete) example Dirty checking in hibernate… Read More »

Create SessionFactory in Hibernate5 without hibernate.cfg.xml

In this post, we will learn how to create SessionFactory in Hibernate 5. Here we are going to use  MySQL database but you feel free to modify HibernateUtil.java to use other database as well. Technologies and tools used for this application are –            Hibernate 5.2.11.Final            Eclipse Mars.2 (4.5.0)… Read More »

Create SessionFactory in Hibernate5 using hibernate.cfg.xml

In this post, we will learn how to create SessionFactory in Hibernate 5. Here we are going to use  MySQL database but you feel free to modify hibernate.cfg.xml to use other database as well. Technologies and tools used for this application are – Hibernate 5.2.11.Final Eclipse Mars.2 (4.5.0) Maven 3.5.0 JavaSE 1.8 MySQL 5.5.57 Project Structure… Read More »

Introduction to Hibernate

This post talks about Introduction to Hibernate Overview Working with both Object-Oriented software and Relational Databases can be cumbersome and time consuming. Development costs are significantly higher due to a paradigm mismatch between how data is represented in objects versus relational databases. Hibernate is an Object/Relational Mapping solution for Java environments. The term Object/Relational Mapping refers to the… Read More »