Engineering Full Stack Apps with Java and JavaScript
In the JOINED strategy, hibernate will create a separate table for all the classes in an inheritance hierarchy, and the tables are normalized. Columns that you receive as part of inheritance will be part of parent class and referred from subclass tables using a foreign key.
In this example, we will create and save three entity classes – Shape, Rectangle and Circle; where Rectangle and Circle extends from Shape.
If you are not following the tutorials in order, refer to the article http://javajee.com/your-first-hibernate-43-program for the basic setup including hibernate configuration file.
You should replace the user class in the configuration file with Shape, Rectangle and Circle classes as:
<!-- Names the annotated entity class -->
<mapping class="com.javajee.hiberex.dto.Shape"/>
<mapping class="com.javajee.hiberex.dto.Rectangle"/>
<mapping class="com.javajee.hiberex.dto.Circle"/>
Else you will get org.hibernate.MappingException: Unknown entity:…
The base entity class, shape will have id and fillcolor properties:
@Entity
@Inheritance (strategy = InheritanceType.JOINED)
public class Shape {
@Id @GeneratedValue
int shapeId;
String fillcolor;
//Getters and setters not shown here; create them manually or generate in eclipse.
}
Entity class Rectangle extends from Shape, and have length and breadth properties:
@Entity
public class Rectangle extends Shape{
long length;
long breadth;
//Getters and setters not shown here; create them manually or generate in eclipse.
}
This class is same as in TABLE_PER_CLASS strategy or SINGLE_TABLE strategy.
Entity class Circle extends from Shape, and has one property radius:
@Entity
public class Circle extends Shape{
long radius;
//Getters and setters not shown here; create them manually or generate in eclipse.
}
This class is same as in TABLE_PER_CLASS strategy or SINGLE_TABLE strategy.
Now use the below test class to create objects for these classes, populate data and save them:
public class ShapeTest {
public static void main(String[] args) {
Shape s = new Shape();
s.setFillcolor("Green");
Rectangle r = new Rectangle();
r.setBreadth(4);
r.setLength(6);
Circle c = new Circle();
c.setRadius(5);
Configuration configuration = new Configuration();
configuration.configure();
ServiceRegistry serviceRegistry = new StandardServiceRegistryBuilder()
.applySettings(configuration.getProperties()).build();SessionFactory sessionFactory = configuration.buildSessionFactory(serviceRegistry);
Session session = sessionFactory.openSession();
session.beginTransaction();
session.save(s);
session.save(r);
session.save(c);
session.getTransaction().commit();
}
}
This class is same as in TABLE_PER_CLASS strategy or SINGLE_TABLE strategy.
When you execute the above test class, below queries are executed by hibernate (as seen from the console):
Hibernate: insert into Shape (fillcolor) values (?)
Hibernate: insert into Shape (fillcolor) values (?)
Hibernate: insert into Rectangle (breadth, length, shapeId) values (?, ?, ?)
Hibernate: insert into Shape (fillcolor) values (?)
Hibernate: insert into Circle (radius, shapeId) values (?, ?)
You can see that hibernate has created one table each for Shape, Rectangle and Circle.
Shape contains id and fillcolor.
Rectangle or Circle does not have fillcolor, but has a shapeid column that references the shapeid column of the Shape table.
Things will be more clear, once you see the database snapshot. Just do a select all query (select * from Shape/Rectangle/Circle).