Home » Hibernate Many to One Example using XML

Hibernate Many to One Example using XML

by Online Tutorials Library

Hibernate Many to One Mapping using XML

In many to one mapping, various attributes can be referred to one attribute only.

In this example, every employee has one company address only and one address belongs to many employees. Here, we are going to perform many to one mapping using XML.

1) Persistent classes for one to one mapping

There are two persistent classes Employee.java and Address.java. Employee class contains Address class reference and vice versa.

Employee.java

Address.java

2) Mapping files for the persistent classes

The two mapping files are employee.hbm.xml and address.hbm.xml.

employee.hbm.xml

address.hbm.xml

3) Configuration file

This file contains information about the database and mapping file.

4) User classes to store and fetch the data

Store.java

Output

Hibernate Many to One Example 1 Hibernate Many to One Example 2

Fetch.java

Output

Hibernate Many to One Example 3

Download

You may also like