Table per Class Hierarchy Example using XML
In our previous tutorial we got introduced to Inheritance Mapping In Hibernate, In this article I will explain you about Table per Class Hierarchy Inheritance mapping. By this inheritance strategy, we can map the whole hierarchy in a single table. Here, an extra column otherwise known as discriminator column is created in the table to identify the class. In the table, for each record some columns will be empty; those columns for which the particular Java class does not have fields.
The above is the Hierarchy of classes involved. Here Employee is the super class for PermanentEmployee and ContractEmployee classes. Now Let us create Java classes for the above hierarchy to implement
Model class
File: Employee.java
package model; public class Employee { private int empID; private String empName; public int getEmpID() { return empID; } public String getEmpName() { return empName; } public void setEmpID(int empID) { this.empID = empID; } public void setEmpName(String empName) { this.empName = empName; } }
File: PermanentEmployee.java
package model; public class PermanentEmployee extends Employee { private String companyName; public String getCompanyName() { return companyName; } public void setCompanyName(String companyName) { this.companyName = companyName; } }
File: ContractEmployee.java
package model; public class ContractEmployee extends Employee { String contractorName; public String getContractorName() { return contractorName; } public void setContractorName(String contractorName) { this.contractorName = contractorName; } }
Hibernate Mapping xml
In case of table per class hierarchy a discriminator column is added by the hibernate framework that specifies the type of the record. It is mainly used to identify which derived class object have been saved in the table (see Database screen shot for better understanding). To specify this, discriminator sub element (Line no 10) of class must be specified.
The subclass sub element of class, specifies the subclass. In this case, PermanentEmployee and ContractEmployee are the subclasses of Employee class.
Hibernate Configuration file
oracle.jdbc.driver.OracleDriver system admin jdbc:oracle:thin:@127.0.0.1:1521:XE 2 org.hibernate.dialect.OracleDialect thread org.hibernate.cache.NoCacheProvider true create
The hbm2ddl.auto property is defined for creating automatic table in the database.
Client program
Create the class that stores the persistent object in this class, we are simply storing the employee objects in the database.
package util; import model.ContractEmployee; import model.PermanentEmployee; import org.hibernate.Session; import org.hibernate.SessionFactory; import org.hibernate.Transaction; import org.hibernate.boot.registry.StandardServiceRegistryBuilder; import org.hibernate.cfg.Configuration; import org.hibernate.service.ServiceRegistry; public class HibernateUtil { public static void main(String[] args) { Configuration cf = new Configuration().configure("hibernate.cfg.xml"); StandardServiceRegistryBuilder srb = new StandardServiceRegistryBuilder(); srb.applySettings(cf.getProperties()); ServiceRegistry sr = srb.build(); SessionFactory sf = cf.buildSessionFactory(sr); Session session = sf.openSession(); PermanentEmployee p1 = new PermanentEmployee(); p1.setEmpID(1); p1.setEmpName("Ameer"); p1.setCompanyName("CTS"); PermanentEmployee p2 = new PermanentEmployee(); p2.setEmpID(2); p2.setEmpName("Lourde"); p2.setCompanyName("TCS"); // create two objects of ContractEmployee ContractEmployee t1 = new ContractEmployee(); t1.setEmpID(3); t1.setEmpName("Prabhu"); t1.setContractorName("ABD Consultancy"); ContractEmployee t2 = new ContractEmployee(); t2.setEmpID(4); t2.setEmpName("Badru"); t2.setContractorName("MN Consultancy"); Transaction tx = session.beginTransaction(); session.save(p1); session.save(p2); session.save(t1); session.save(t2); tx.commit(); System.out.println("Object saved successfully !"); session.close(); sf.close(); } }
Eclipse Console
Database output