The new version of Compass is released
The third milestone release of version 1.1 ( version 1.1 M3) of COMPASS is released. It includes the following major features… Support for polymorphic relationships Better cyclic mappings support FS...
View ArticleCommonly used Generators in ‘Hibernate’
Generator Description increment It generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. It should not the used in the...
View Article‘Hibernate Dialect property’ for Different Databases
Hibernate is the most common and famous ORM using these days. It has a property called “Dialect” through which we tells Hibernate that we are using ‘this specific’ database. Here in this post you can...
View ArticleHibernate – Difference between session’s get() and load()
Today I went through a great post by Mr. Ganeshji Marwah which will be very useful to beginners. This post is regarding with the difference between Hibernate session’s get() and load() methods. As he...
View ArticleUML models of open source projects
This site includes the UML models of some great open source projects like JBoss, Spring, Hibernate etc. Its really helping me to understand this frameworks., Technorati : Hibernate, JBoss, Opensource,...
View ArticleTest your Spring – Hibernate Applications using Unitils
Unitils is an open source library aimed at making unit testing easy and maintainable. Unitils builds further on existing libraries like DBUnit and EasyMock and integrates with JUnit and TestNG. This...
View ArticleAdvantages of Hibernate
Caching objects. The session is a transaction-level cache of persistent objects. You may also enable a JVM-level/cluster cache to memory and/or local disk. Executing SQL statements later, when needed....
View ArticleHibernate generator classes
Extracted from Hibernate online official tutorials In Hibernate the optional <generator> child element names a Java class used to generate unique identifiers for instances of the persistent...
View ArticleList of Cache Providers in Hibernate and their Concurrency Support details
Here in this port you can find the list of Cache providers and their Concurrency support details. (Exerted from Official Hibernate Tutorial) EHCache (Easy Hibernate Cache)...
View ArticleThe Second Level Cache in Hibernate : Settings and Configurations.
A Hibernate Session is a transaction-level cache of persistent data. We can configure a cluster or JVM-level (SessionFactory-level) cache on a class-by-class and collection-by-collection basis. We can...
View Article