First bug fix of Hibernate: Hibernate ORM 4.2.14.Final released
Hibernate ORM 4.2.14 Final is released with few updates. In this version of the Hibernate 4.2 update there are 4 changes.
Hibernate is ORM framework and every developer must learn it as this is most used framework in Java for writing the database access layer. Hibernate increased the developer productivity.
So, get the latest version of Hibernate and learn it.
Bug fixes in the Hibernate 4.2.14.Final
- Fix of Test failure (testNaturalIdChangedWhileAttached) on
SAP/SYBASE ASE
- Fix of CastFunctionTest. testFloatCasting and
testLongCasting fail on mysql
- Fix of Error executing batch should abort rest of batch for
"cleanliness" sake
- Fix of Revert HHH-9222 due to bugs in bulk deleting collection elements that use a property-ref
How to use Hibernate 4.2.14 in project?
If you are using the Maven build tool you can use the following dependency in pom.xml file:
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-core</artifactId> <version>4.2.14.Final</version> </dependency>
Check more tutorials at Hibernate tutorials home page.
More tutorials of Hibernate Framework:
Hibernate 4.2.x Tutorial
Basics:
- Hibernate 4.2.7 Maven dependency - Learn how to use the Maven dependency in your project.
- Hibernate Overview - Learn the overview of Hibernate framework
- Hibernate Architecture - Learn the Architecture of Hibernate ORM Framework
- Setup Hibernate Environment - Learn How you can setup development environment using Hibernate ORM framework.
- Hibernate Configuration files - Learn about the Configuration files in the Hibernate framework
- First Hibernate Example Step by Step in Eclipse - Learn how to create first Hibernate example
- Hibernate Save Example - Learn how the save example works
- Hibernate Load Example - In this example you will learn how to load entity with the help of session.load() method
- Hibernate save or update method example - In this example you will learn how to use the saveOrUpdate() method.
- Hibernate Session.delete() Example - Learn how to delete the entity using Hibernate.
Check the Latest Hibernate Tutorials at our Hibernate tutorials home page.