- Java Hibernate Cookbook
- Yogesh Prajapati Vishal Ranapariya
- 844字
- 2021-07-16 19:59:46
Providing an XML-based hibernate mapping
In the preceding recipe, you learned how to create a POJO. Now we will consider how to create the configuration for hibernate. There are multiple ways of mapping, and this is one of them.
Generally, the configuration provides the following information:
- The mapping between the POJO and the database table
- The mapping between the POJO property and the database table column
- The definition of the primary key column
- The definitions of the foreign key column and relationships such as one-to-one, one-to-many, many-to-one, many-to-many with another table, and so on
- Constraints such as not-null, formula, lazy, cascade, and so on
- The definitions of the length, the data type of the column, the formula, and so on
How to do it…
To provide hibernate mapping based on XML, perform the following steps:
- Ensure that the basic structure of the configuration file is as follows:
<!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD X.X//EN" "http://hibernate.sourceforge.net/hibernate-mapping-X.X.dtd"> <hibernate-mapping> ... </hibernate-mapping>
- Create a XML file and name it
Employee.hbm.xml
. Then, add the configuration, as shown in the following code:<hibernate-mapping> <class="Employee" table="employee"> <id name="id" type="long" column="id"> <generator class="increment" /> </id> <property column="firstName" name="firstName" /> <property column="salary" name="salary" /> <!-- other properties mapping--> </class> </hibernate-mapping>
Note
Here, we named the mapping file
Employee.hbm.xml
. However, while developing, there is no strict rule regarding the naming convention. Here, we will create a new hbm file for each POJO; for example, we created anEmployee.hbm.xml
file for theEmployee.java
class. Another common practice we will use here is to create one hbm file for the module, map all the classes of this module in the same mapping file, and name this filemodulename.hbm.xml
.
How it works…
Here, <hibernate-mapping>
is a root element that contains all the <class>
elements. The <class>
tag contains the following attributes:
name
: This specifies the FQN (Fully Qualified Name) of the Java class.table:
This denotes the database table used for the class defined in thename
attribute.- The
<generator>
tag in the<id>
tag is used to generate the value of the primary key. There are many types of built-in generators provided by hibernate, such asidentity
,sequence
,hilo
, and so on.
The <id>
tag defines the primary key column for the database table. It contains the following attributes:
name
: This specifies the Java class attribute namecolumn
: This denotes the database table's column nametype
: This specifies the data type of the column that will help hibernate during the creation and retrieval of the automatic tablesize
: This denotes the size attribute that defines the length of the table's column
Usually, we create a mapping file called hbm (hibernate mapping). It is a normal XML schema file that contains custom hibernate XML tags. This helps the hibernate engine to map the class to the table and the class
field to the table
column, along with the given attributes.
All the mapping definitions for hibernate are bundled under the <hibernate-mapping> ... </hibernate-mapping>
tag. In <hibernate-mapping> ... </hibernate-mapping>
, we can add any number of class-to-table mapping definitions.
There's more…
Now, let's create the XML mapping for the POJO having a reference with another POJO. Here, we will create two different mapping files. To achieve this using an XML-based mapping, we have to create different class mappings for each POJO that has a dependency.
The following is a code that represents the mapping for the Department
class. The mapping is in the Department.hbm.xml
file:
… <hibernate-mapping> <class name="Department" table="department"> <id name="id" type="long" column="id"> <generator class="auto" /> </id> <property column="deptName" name="deptName" /> <!-- other properties mapping --> </class> </hibernate-mapping> …
Next, we will create a mapping for the Employee
class. Its definition is present in the Employee.hbm.xml
file:
… <hibernate-mapping> <class="Employee" table="employee"> <id name="id" type="long" column="id"> <generator class="auto" /> </id> <property column="firstName" name="firstName" /> <property column="salary" name="salary" /> <many-to-one name="department" class="Department" > <column name="department"/> </many-to-one> <!-- other properties mapping--> </class> </hibernate-mapping> …
In the preceding example, we mapped the Department
entity with the Employee
entity. This will refer to the department
column in the employee table. This means that it will create a foreign key that is referenced to the department table.
Here, we will use the <many-to-one>
relationship, which means that either many employees are connected with one department, or one department is used by many employees.
The properties are as follows:
- not-null="
true
": This property prevents the user from inserting the NULL value in the column - lazy="
true
": This feature helps us while retrieving data using hibernate
The two possible options for lazy
are true
and false
. In our example, Employee
is a parent class, whereas Department
is a child of the Employee
class. Now, while fetching, if we set lazy
as true
, it means that it will only fetch employee records. No child records will be fetched with Employee
, and hibernate will use a separate query if we try to access a child record, which is employee.getDepartment()
. If we set lazy
as false
, hibernate will fetch the child records with the parent, which means that the department information will also be fetched, along with that of the employee. Hibernate will use a join query to fetch the child records.
- OpenCV 3和Qt5計算機(jī)視覺應(yīng)用開發(fā)
- Learning Bayesian Models with R
- Python GUI Programming Cookbook
- Getting Started with Python Data Analysis
- Python貝葉斯分析(第2版)
- Responsive Web Design by Example
- Mastering Android Development with Kotlin
- 單片機(jī)C語言程序設(shè)計實(shí)訓(xùn)100例
- HTML5 APP開發(fā)從入門到精通(微課精編版)
- Mastering openFrameworks:Creative Coding Demystified
- Scala編程(第5版)
- Angular應(yīng)用程序開發(fā)指南
- 邊玩邊學(xué)Scratch3.0少兒趣味編程
- 數(shù)據(jù)分析與挖掘算法:Python實(shí)戰(zhàn)
- Clojure High Performance Programming(Second Edition)