Tag: hibernate mapping
Mapping And Configuration Files In Hibernate
by  java4s | 60 Comments
  [ Ask Question ]
Mapping and Configuration are very familiar keywords we used to here in the hibernate, every hibernate program must need these 2 xml files. Mapping: Mapping file is the heart of hibernate application. Every ORM tool needs this mapping, mapping is…
Inheritance Mapping In Hibernate – Introduction
by  Java4s | 25 Comments
  [ Ask Question ]
Compared to JDBC we have one main advantage in hibernate, which is hibernate inheritance. Suppose if we have base and derived classes, now if we save derived(sub) class object, base class object will also be stored into the database….