Hibernate Fetch types

Let us understand the different modes of Fetch and When to use them In any ORM framework, it’s very important to understand how it loads the entity especially when entity has relations and collections in it. In Hibernate we call it as Fetch mode or fetching strategy. Yes Hibernate decides how to load the entity […]

Share this article on

Inheritance in Hibernate overview

Let us understand about Inheritance in Hibernate Inheritance is an object oriented feature which provides the power of re-usability. The same concept of re-usability is provided in Hibernate as well. It is one of the advantages of Hibernate when compared with JDBC. Assume we have Parent and Child classes, we know that Child class object […]

Share this article on
< Previous Next >