Hibernate tutorial By Maniram Yadav
Hibernate configuration file
hibernate.cfg.xml
TubeAcademy
Hibernate Collection mapping
So far we have seen very basic O/R mapping using hibernate but there are three most important mapping topics which we have to learn in detail. These are the mapping of collections, the mapping of associations between entity classes and Component Mappings.
We can map collection elements of Persistent class in Hibernate. You need to declare the type of collection in Persistent class from one of the following types:
java.util.List
java.util.Set
java.util.SortedSet
java.util.Map
java.util.SortedMap
java.util.Collection
or write the implementation of
org.hibernate.usertype.UserCollectionType
Entity bean
@Table Annotation
@Id Annotation
@Column annotation
Tutorial By Maniram Yadav
Hibernate Introduction
Object Relational Mapping
ORM
Tutorial By Maniram Yadav
Java Tutorial
Java programming
HQL
Hibernate Basics
RDBMS
learnpedia
learnpidea
table per sub class concept in hibernate by maniram yadav
tabel per sub class mapping by using annotation configuration