Hibernate ORM 4.2.21.Final Released - Create CURD application in latest Hibernate

Hibernate ORM 4.2.21.Final Released on Check changes make to this version of Hibernate ORM Framework.

Hibernate ORM 4.2.21.Final Released - Create CURD application in latest Hibernate

Hibernate ORM 4.2.21.Final Released - Create CURD application in latest Hibernate

Hibernate ORM 4.2.21 released and this is the latest Hibernate ORM framework which can be downloaded in the zip format. The dependency of this project is also available as maven dependency and it can be used in maven project. This tutorial is using the maven build tool for managing the dependency in the project.

Hibernate ORM 4.2.21 released on 2015.10.23 and in this tutorial I will going to teach you how to create CRUD application using maven tool in Eclipse IDE. You will be able to learn how to use the Maven dependency of Hibernate ORM 4.2.21 in pom.xml file. We have used the latest version of Eclipse.

Hibernate ORM 4.2.21 released on 2015.10.23 and it comes with many bug fixes.

Here are the bugs fixed in this version of Hibernate:

  • [HHH-5255] - Merge detached entity failed when the instrumented lazy property is initialized
  • [HHH-7573] - Lazy properties are not processed properly after a PreUpdate callback
  • [HHH-9928] - Pending put leaks when the entity is not found in DB
  • [HHH-10182] - Backport HHH-7898 and HHH-10005 for JTA environment only

Here is the video tutorial of getting started with Hibernate ORM 4.2.21 and create CRUD application:

Here is the video tutorial of: "Hibernate ORM 4.2.21 released - Learn to create first application"

So, if you are using the latest version of Hibernate in your project you can upgrade to this version of Hibernate which is Hibernate ORM 4.2.21.

This version of Hibernate can be downloaded from http://hibernate.org/orm/downloads/. This build is also available a maven dependency and you can use the following dependency code in pom.xml file:

<dependency>
	<groupId>org.hibernate</groupId>
	<artifactId>hibernate-core</artifactId>
	<version>4.2.21.Final</version>
</dependency>

 

Download the source code of this tutorial which is in the Eclipse project format and uses Maven for dependency management.

Check all the tutorials of Hibernate in Hibernate tutorials section.