Hibernate Table per concrete class hierarchy using annotations Tutorial with examples

In case of Table Per Concrete class, tables are created per class. So there are no nullable values in the table. Disadvantage of this appro...

Hibernate Table Per Subclass using Annotation Tutorial with examples

As we have specified earlier, in case of table per subclass strategy, tables are created as per persistent classes but they are reated usin...

Hibernate Table Per Hierarchy using Annotation Tutorial with examples

By this inheritance strategy, we can map the whole hierarchy by single table only. Here, an extra column (also known as discriminator colum...

Inheritance Mapping in Hibernate Tutorial with examples

Compared to JDBC we have one main advantage in hibernate, which is hibernate inheritance. Inheritance is one of the most visible facets ...