Hibernate Reference
Hibernate Reference
Hibernate Reference
Documentation
3.6.0.Final
and thanks to James Cobb (Graphic Design) and Cheyenne Weaver (Graphic Design)
Preface ............................................................................................................................. xi
1. Tutorial ........................................................................................................................ 1
1.1. Part 1 - The first Hibernate Application ................................................................ 1
1.1.1. Setup ...................................................................................................... 1
1.1.2. The first class .......................................................................................... 3
1.1.3. The mapping file ...................................................................................... 4
1.1.4. Hibernate configuration ............................................................................. 7
1.1.5. Building with Maven ................................................................................. 9
1.1.6. Startup and helpers .................................................................................. 9
1.1.7. Loading and storing objects .................................................................... 10
1.2. Part 2 - Mapping associations ........................................................................... 13
1.2.1. Mapping the Person class ...................................................................... 13
1.2.2. A unidirectional Set-based association ..................................................... 14
1.2.3. Working the association .......................................................................... 15
1.2.4. Collection of values ................................................................................ 17
1.2.5. Bi-directional associations ....................................................................... 19
1.2.6. Working bi-directional links ..................................................................... 19
1.3. Part 3 - The EventManager web application ....................................................... 20
1.3.1. Writing the basic servlet ......................................................................... 20
1.3.2. Processing and rendering ....................................................................... 22
1.3.3. Deploying and testing ............................................................................. 23
1.4. Summary .......................................................................................................... 24
2. Architecture ............................................................................................................... 25
2.1. Overview .......................................................................................................... 25
2.1.1. Minimal architecture ............................................................................... 25
2.1.2. Comprehensive architecture .................................................................... 26
2.1.3. Basic APIs ............................................................................................. 27
2.2. JMX Integration ................................................................................................ 28
2.3. Contextual sessions .......................................................................................... 28
3. Configuration ............................................................................................................. 31
3.1. Programmatic configuration ............................................................................... 31
3.2. Obtaining a SessionFactory ............................................................................... 32
3.3. JDBC connections ............................................................................................ 32
3.4. Optional configuration properties ........................................................................ 34
3.4.1. SQL Dialects .......................................................................................... 42
3.4.2. Outer Join Fetching ................................................................................ 43
3.4.3. Binary Streams ...................................................................................... 43
3.4.4. Second-level and query cache ................................................................ 43
3.4.5. Query Language Substitution .................................................................. 43
3.4.6. Hibernate statistics ................................................................................. 43
3.5. Logging ............................................................................................................ 44
3.6. Implementing a NamingStrategy ........................................................................ 44
3.7. XML configuration file ........................................................................................ 45
3.8. J2EE Application Server integration ................................................................... 46
iii
HIBERNATE - Relational Persis...
iv
6.4. Custom types .................................................................................................. 148
6.4.1. Custom types using org.hibernate.type.Type .......................................... 148
6.4.2. Custom types using org.hibernate.usertype.UserType ............................. 150
6.4.3. Custom types using org.hibernate.usertype.CompositeUserType ............. 151
6.5. Type registry ................................................................................................... 152
7. Collection mapping .................................................................................................. 155
7.1. Persistent collections ....................................................................................... 155
7.2. How to map collections ................................................................................... 156
7.2.1. Collection foreign keys .......................................................................... 160
7.2.2. Indexed collections ............................................................................... 160
7.2.3. Collections of basic types and embeddable objects ................................. 166
7.3. Advanced collection mappings ......................................................................... 168
7.3.1. Sorted collections ................................................................................. 168
7.3.2. Bidirectional associations ...................................................................... 169
7.3.3. Bidirectional associations with indexed collections .................................. 174
7.3.4. Ternary associations ............................................................................. 175
7.3.5. Using an <idbag> ................................................................................. 176
7.4. Collection examples ........................................................................................ 177
8. Association Mappings ............................................................................................. 183
8.1. Introduction ..................................................................................................... 183
8.2. Unidirectional associations ............................................................................... 183
8.2.1. Many-to-one ......................................................................................... 183
8.2.2. One-to-one ........................................................................................... 183
8.2.3. One-to-many ........................................................................................ 184
8.3. Unidirectional associations with join tables ........................................................ 185
8.3.1. One-to-many ........................................................................................ 185
8.3.2. Many-to-one ......................................................................................... 186
8.3.3. One-to-one ........................................................................................... 186
8.3.4. Many-to-many ...................................................................................... 187
8.4. Bidirectional associations ................................................................................. 188
8.4.1. one-to-many / many-to-one ................................................................... 188
8.4.2. One-to-one ........................................................................................... 189
8.5. Bidirectional associations with join tables .......................................................... 190
8.5.1. one-to-many / many-to-one ................................................................... 190
8.5.2. one to one ........................................................................................... 191
8.5.3. Many-to-many ...................................................................................... 191
8.6. More complex association mappings ................................................................ 192
9. Component Mapping ................................................................................................ 195
9.1. Dependent objects .......................................................................................... 195
9.2. Collections of dependent objects ...................................................................... 197
9.3. Components as Map indices ............................................................................ 198
9.4. Components as composite identifiers ............................................................... 198
9.5. Dynamic components ...................................................................................... 200
10. Inheritance mapping .............................................................................................. 203
v
HIBERNATE - Relational Persis...
vi
13.2.2. Using JTA .......................................................................................... 245
13.2.3. Exception handling ............................................................................. 246
13.2.4. Transaction timeout ............................................................................ 247
13.3. Optimistic concurrency control ........................................................................ 248
13.3.1. Application version checking ............................................................... 248
13.3.2. Extended session and automatic versioning ......................................... 249
13.3.3. Detached objects and automatic versioning .......................................... 250
13.3.4. Customizing automatic versioning ........................................................ 250
13.4. Pessimistic locking ........................................................................................ 251
13.5. Connection release modes ............................................................................ 252
14. Interceptors and events ......................................................................................... 255
14.1. Interceptors ................................................................................................... 255
14.2. Event system ................................................................................................ 257
14.3. Hibernate declarative security ........................................................................ 258
15. Batch processing ................................................................................................... 261
15.1. Batch inserts ................................................................................................. 261
15.2. Batch updates ............................................................................................... 262
15.3. The StatelessSession interface ...................................................................... 262
15.4. DML-style operations ..................................................................................... 263
16. HQL: The Hibernate Query Language .................................................................... 267
16.1. Case Sensitivity ............................................................................................ 267
16.2. The from clause ............................................................................................ 267
16.3. Associations and joins ................................................................................... 268
16.4. Forms of join syntax ...................................................................................... 269
16.5. Referring to identifier property ........................................................................ 270
16.6. The select clause .......................................................................................... 270
16.7. Aggregate functions ....................................................................................... 272
16.8. Polymorphic queries ...................................................................................... 272
16.9. The where clause .......................................................................................... 273
16.10. Expressions ................................................................................................ 275
16.11. The order by clause .................................................................................... 279
16.12. The group by clause .................................................................................... 279
16.13. Subqueries .................................................................................................. 280
16.14. HQL examples ............................................................................................ 281
16.15. Bulk update and delete ................................................................................ 283
16.16. Tips & Tricks ............................................................................................... 283
16.17. Components ................................................................................................ 284
16.18. Row value constructor syntax ....................................................................... 285
17. Criteria Queries ...................................................................................................... 287
17.1. Creating a Criteria instance ........................................................................... 287
17.2. Narrowing the result set ................................................................................. 287
17.3. Ordering the results ....................................................................................... 288
17.4. Associations .................................................................................................. 289
17.5. Dynamic association fetching ......................................................................... 290
vii
HIBERNATE - Relational Persis...
viii
21.4. The Query Cache .......................................................................................... 338
21.4.1. Enabling query caching ....................................................................... 339
21.4.2. Query cache regions .......................................................................... 340
21.5. Understanding Collection performance ............................................................ 340
21.5.1. Taxonomy .......................................................................................... 340
21.5.2. Lists, maps, idbags and sets are the most efficient collections to update... 341
21.5.3. Bags and lists are the most efficient inverse collections ......................... 341
21.5.4. One shot delete .................................................................................. 342
21.6. Monitoring performance ................................................................................. 342
21.6.1. Monitoring a SessionFactory ............................................................... 342
21.6.2. Metrics ............................................................................................... 343
22. Toolset Guide ......................................................................................................... 345
22.1. Automatic schema generation ........................................................................ 345
22.1.1. Customizing the schema ..................................................................... 345
22.1.2. Running the tool ................................................................................. 348
22.1.3. Properties .......................................................................................... 349
22.1.4. Using Ant ........................................................................................... 349
22.1.5. Incremental schema updates ............................................................... 350
22.1.6. Using Ant for incremental schema updates ........................................... 350
22.1.7. Schema validation .............................................................................. 351
22.1.8. Using Ant for schema validation .......................................................... 351
23. Additional modules ................................................................................................ 353
23.1. Bean Validation ............................................................................................. 353
23.1.1. Adding Bean Validation ....................................................................... 353
23.1.2. Configuration ...................................................................................... 353
23.1.3. Catching violations .............................................................................. 355
23.1.4. Database schema ............................................................................... 355
23.2. Hibernate Search .......................................................................................... 356
23.2.1. Description ......................................................................................... 356
23.2.2. Integration with Hibernate Annotations ................................................. 356
24. Example: Parent/Child ............................................................................................ 357
24.1. A note about collections ................................................................................ 357
24.2. Bidirectional one-to-many ............................................................................... 357
24.3. Cascading life cycle ...................................................................................... 359
24.4. Cascades and unsaved-value ........................................................................ 360
24.5. Conclusion .................................................................................................... 361
25. Example: Weblog Application ................................................................................ 363
25.1. Persistent Classes ......................................................................................... 363
25.2. Hibernate Mappings ...................................................................................... 364
25.3. Hibernate Code ............................................................................................. 366
26. Example: Various Mappings .................................................................................. 371
26.1. Employer/Employee ....................................................................................... 371
26.2. Author/Work .................................................................................................. 373
26.3. Customer/Order/Product ................................................................................ 375
ix
HIBERNATE - Relational Persis...
x
Preface
Working with both Object-Oriented software and Relational Databases can be cumbersome
and time consuming. Development costs are significantly higher due to a paradigm mismatch
between how data is represented in objects versus relational databases. Hibernate is an Object/
Relational Mapping solution for Java environments. The term Object/Relational Mapping refers
to the technique of mapping data from an object model representation to a relational data model
representation (and visa versa). See http://en.wikipedia.org/wiki/Object-relational_mapping for a
good high-level discussion.
Note
While having a strong background in SQL is not required to use Hibernate, having
a basic understanding of the concepts can greatly help you understand Hibernate
more fully and quickly. Probably the single best background is an understanding of
data modeling principles. You might want to consider these resources as a good
starting point:
• http://www.agiledata.org/essays/dataModeling101.html
• http://en.wikipedia.org/wiki/Data_modeling
Hibernate not only takes care of the mapping from Java classes to database tables (and from
Java data types to SQL data types), but also provides data query and retrieval facilities. It can
significantly reduce development time otherwise spent with manual data handling in SQL and
JDBC. Hibernate’s design goal is to relieve the developer from 95% of common data persistence-
related programming tasks by eliminating the need for manual, hand-crafted data processing
using SQL and JDBC. However, unlike many other persistence solutions, Hibernate does not hide
the power of SQL from you and guarantees that your investment in relational technology and
knowledge is as valid as always.
Hibernate may not be the best solution for data-centric applications that only use stored-
procedures to implement the business logic in the database, it is most useful with object-
oriented domain models and business logic in the Java-based middle-tier. However, Hibernate
can certainly help you to remove or encapsulate vendor-specific SQL code and will help with the
common task of result set translation from a tabular representation to a graph of objects.
If you are new to Hibernate and Object/Relational Mapping or even Java, please follow these
steps:
1. Read Chapter 1, Tutorial for a tutorial with step-by-step instructions. The source code for the
tutorial is included in the distribution in the doc/reference/tutorial/ directory.
2. Read Chapter 2, Architecture to understand the environments where Hibernate can be used.
xi
Preface
3. View the eg/ directory in the Hibernate distribution. It contains a simple standalone application.
Copy your JDBC driver to the lib/ directory and edit etc/hibernate.properties, specifying
correct values for your database. From a command prompt in the distribution directory, type
ant eg (using Ant), or under Windows, type build eg.
4. Use this reference documentation as your primary source of information. Consider reading
[JPwH] if you need more help with application design, or if you prefer a step-by-step tutorial. Also
visit http://caveatemptor.hibernate.org and download the example application from [JPwH].
6. Links to third party demos, examples, and tutorials are maintained on the Hibernate website.
7. The Community Area on the Hibernate website is a good resource for design patterns and
various integration solutions (Tomcat, JBoss AS, Struts, EJB, etc.).
There are a number of ways to become involved in the Hibernate community, including
• Trying your hand at fixing some bugs or implementing enhancements. Again, see http://
hibernate.org/issuetracker.html details.
• There are forums for users to ask questions and receive help from the community.
• Helping improve or translate this documentation. Contact us on the developer mailing list if you
have interest.
xii
Chapter 1.
Tutorial
Intended for new users, this chapter provides an step-by-step introduction to Hibernate, starting
with a simple application using an in-memory database. The tutorial is based on an earlier tutorial
developed by Michael Gloegl. All code is contained in the tutorials/web directory of the project
source.
Important
This tutorial expects the user have knowledge of both Java and SQL. If you have
a limited knowledge of JAVA or SQL, it is advised that you start with a good
introduction to that technology prior to attempting to learn Hibernate.
Note
The distribution contains another example application under the tutorial/eg
project source directory.
Note
Although you can use whatever database you feel comfortable using, we will use
HSQLDB [http://hsqldb.org/] (an in-memory, Java database) to avoid describing
installation/setup of any particular database servers.
1.1.1. Setup
The first thing we need to do is to set up the development environment. We will be using
the "standard layout" advocated by alot of build tools such as Maven [http://maven.org].
Maven, in particular, has a good resource describing this layout [http://maven.apache.org/guides/
introduction/introduction-to-the-standard-directory-layout.html]. As this tutorial is to be a web
application, we will be creating and making use of src/main/java, src/main/resources and
src/main/webapp directories.
We will be using Maven in this tutorial, taking advantage of its transitive dependency management
capabilities as well as the ability of many IDEs to automatically set up a project for us based on
the maven descriptor.
1
Chapter 1. Tutorial
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/
maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>org.hibernate.tutorials</groupId>
<artifactId>hibernate-tutorial</artifactId>
<version>1.0.0-SNAPSHOT</version>
<name>First Hibernate Tutorial</name>
<build>
<!-- we dont want the version to be part of the generated war file name -->
<finalName>${artifactId}</finalName>
</build>
<dependencies>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
</dependency>
<!-- Because this is a web app, we also have a dependency on the servlet api. -->
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
</dependency>
<!-- Hibernate uses slf4j for logging, for our purposes here use the simple backend -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-simple</artifactId>
</dependency>
<!-- Hibernate gives you a choice of bytecode providers between cglib and javassist -->
<dependency>
<groupId>javassist</groupId>
<artifactId>javassist</artifactId>
</dependency>
</dependencies>
</project>
Tip
It is not a requirement to use Maven. If you wish to use something else to build
this tutorial (such as Ant), the layout will remain the same. The only change is
that you will need to manually account for all the needed dependencies. If you
use something like Ivy [http://ant.apache.org/ivy/] providing transitive dependency
management you would still use the dependencies mentioned below. Otherwise,
you'd need to grab all dependencies, both explicit and transitive, and add them
to the project's classpath. If working from the Hibernate distribution bundle, this
2
The first class
would mean hibernate3.jar, all artifacts in the lib/required directory and all
files from either the lib/bytecode/cglib or lib/bytecode/javassist directory;
additionally you will need both the servlet-api jar and one of the slf4j logging
backends.
Next, we create a class that represents the event we want to store in the database; it is a simple
JavaBean class with some properties:
package org.hibernate.tutorial.domain;
import java.util.Date;
public Event() {}
This class uses standard JavaBean naming conventions for property getter and setter methods,
as well as private visibility for the fields. Although this is the recommended design, it is not
3
Chapter 1. Tutorial
required. Hibernate can also access fields directly, the benefit of accessor methods is robustness
for refactoring.
The id property holds a unique identifier value for a particular event. All persistent entity classes
(there are less important dependent classes as well) will need such an identifier property if we want
to use the full feature set of Hibernate. In fact, most applications, especially web applications, need
to distinguish objects by identifier, so you should consider this a feature rather than a limitation.
However, we usually do not manipulate the identity of an object, hence the setter method should
be private. Only Hibernate will assign identifiers when an object is saved. Hibernate can access
public, private, and protected accessor methods, as well as public, private and protected fields
directly. The choice is up to you and you can match it to fit your application design.
The no-argument constructor is a requirement for all persistent classes; Hibernate has to create
objects for you, using Java Reflection. The constructor can be private, however package or public
visibility is required for runtime proxy generation and efficient data retrieval without bytecode
instrumentation.
Hibernate needs to know how to load and store objects of the persistent class. This is where
the Hibernate mapping file comes into play. The mapping file tells Hibernate what table in the
database it has to access, and what columns in that table it should use.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="org.hibernate.tutorial.domain">
[...]
</hibernate-mapping>
Hibernate DTD is sophisticated. You can use it for auto-completion of XML mapping elements
and attributes in your editor or IDE. Opening up the DTD file in your text editor is the easiest
way to get an overview of all elements and attributes, and to view the defaults, as well as some
comments. Hibernate will not load the DTD file from the web, but first look it up from the classpath
of the application. The DTD file is included in hibernate-core.jar (it is also included in the
hibernate3.jar, if using the distribution bundle).
4
The mapping file
Important
We will omit the DTD declaration in future examples to shorten the code. It is, of
course, not optional.
Between the two hibernate-mapping tags, include a class element. All persistent entity classes
(again, there might be dependent classes later on, which are not first-class entities) need a
mapping to a table in the SQL database:
<hibernate-mapping package="org.hibernate.tutorial.domain">
</class>
</hibernate-mapping>
So far we have told Hibernate how to persist and load object of class Event to the table EVENTS.
Each instance is now represented by a row in that table. Now we can continue by mapping the
unique identifier property to the tables primary key. As we do not want to care about handling
this identifier, we configure Hibernate's identifier generation strategy for a surrogate primary key
column:
<hibernate-mapping package="org.hibernate.tutorial.domain">
</hibernate-mapping>
The id element is the declaration of the identifier property. The name="id" mapping attribute
declares the name of the JavaBean property and tells Hibernate to use the getId() and setId()
methods to access the property. The column attribute tells Hibernate which column of the EVENTS
table holds the primary key value.
The nested generator element specifies the identifier generation strategy (aka how are identifier
values generated?). In this case we choose native, which offers a level of portability depending
on the configured database dialect. Hibernate supports database generated, globally unique, as
well as application assigned, identifiers. Identifier value generation is also one of Hibernate's many
extension points and you can plugin in your own strategy.
5
Chapter 1. Tutorial
Tip
native is no longer consider the best strategy in terms of portability. for further
discussion, see Section 28.4, “Identifier generation”
Lastly, we need to tell Hibernate about the remaining entity class properties. By default, no
properties of the class are considered persistent:
<hibernate-mapping package="org.hibernate.tutorial.domain">
</hibernate-mapping>
Similar to the id element, the name attribute of the property element tells Hibernate which
getter and setter methods to use. In this case, Hibernate will search for getDate(), setDate(),
getTitle() and setTitle() methods.
Note
Why does the date property mapping include the column attribute, but the title
does not? Without the column attribute, Hibernate by default uses the property
name as the column name. This works for title, however, date is a reserved
keyword in most databases so you will need to map it to a different name.
The title mapping also lacks a type attribute. The types declared and used in the mapping files
are not Java data types; they are not SQL database types either. These types are called Hibernate
mapping types, converters which can translate from Java to SQL data types and vice versa. Again,
Hibernate will try to determine the correct conversion and mapping type itself if the type attribute
is not present in the mapping. In some cases this automatic detection using Reflection on the
Java class might not have the default you expect or need. This is the case with the date property.
Hibernate cannot know if the property, which is of java.util.Date, should map to a SQL date,
timestamp, or time column. Full date and time information is preserved by mapping the property
with a timestamp converter.
6
Hibernate configuration
Tip
Hibernate makes this mapping type determination using reflection when the
mapping files are processed. This can take time and resources, so if startup
performance is important you should consider explicitly defining the type to use.
Note
We do this do that the data remains between runs.
We will utilize the Maven exec plugin to launch the HSQLDB server by running: mvn exec:java
-Dexec.mainClass="org.hsqldb.Server" -Dexec.args="-database.0 file:target/data/
tutorial" You will see it start up and bind to a TCP/IP socket; this is where our application will
connect later. If you want to start with a fresh database during this tutorial, shutdown HSQLDB,
delete all files in the target/data directory, and start HSQLDB again.
Hibernate will be connecting to the database on behalf of your application, so it needs to know
how to obtain connections. For this tutorial we will be using a standalone connection pool (as
opposed to a javax.sql.DataSource). Hibernate comes with support for two third-party open
source JDBC connection pools: c3p0 [https://sourceforge.net/projects/c3p0] and proxool [http://
proxool.sourceforge.net/]. However, we will be using the Hibernate built-in connection pool for
this tutorial.
Caution
The built-in Hibernate connection pool is in no way intended for production use. It
lacks several features found on any decent connection pool.
7
Chapter 1. Tutorial
"http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
<session-factory>
<mapping resource="org/hibernate/tutorial/domain/Event.hbm.xml"/>
</session-factory>
</hibernate-configuration>
Note
Notice that this configuration file specifies a different DTD
The first four property elements contain the necessary configuration for the JDBC connection.
The dialect property element specifies the particular SQL variant Hibernate generates.
Tip
In most cases, Hibernate is able to properly determine which dialect to use. See
Section 28.3, “Dialect resolution” for more information.
8
Building with Maven
Hibernate's automatic session management for persistence contexts is particularly useful in this
context. The hbm2ddl.auto option turns on automatic generation of database schemas directly
into the database. This can also be turned off by removing the configuration option, or redirected
to a file with the help of the SchemaExport Ant task. Finally, add the mapping file(s) for persistent
classes to the configuration.
We will create a HibernateUtil helper class that takes care of startup and makes accessing the
org.hibernate.SessionFactory more convenient.
package org.hibernate.tutorial.util;
import org.hibernate.SessionFactory;
import org.hibernate.cfg.Configuration;
9
Chapter 1. Tutorial
This class not only produces the global org.hibernate.SessionFactory reference in its static
initializer; it also hides the fact that it uses a static singleton. We might just as well have looked up
the org.hibernate.SessionFactory reference from JNDI in an application server or any other
location for that matter.
If you give the org.hibernate.SessionFactory a name in your configuration, Hibernate will try
to bind it to JNDI under that name after it has been built. Another, better option is to use a JMX
deployment and let the JMX-capable container instantiate and bind a HibernateService to JNDI.
Such advanced options are discussed later.
You now need to configure a logging system. Hibernate uses commons logging and provides two
choices: Log4j and JDK 1.4 logging. Most developers prefer Log4j: copy log4j.properties from
the Hibernate distribution in the etc/ directory to your src directory, next to hibernate.cfg.xml.
If you prefer to have more verbose output than that provided in the example configuration, you
can change the settings. By default, only the Hibernate startup message is shown on stdout.
The tutorial infrastructure is complete and you are now ready to do some real work with Hibernate.
package org.hibernate.tutorial;
import org.hibernate.Session;
10
Loading and storing objects
import java.util.*;
import org.hibernate.tutorial.domain.Event;
import org.hibernate.tutorial.util.HibernateUtil;
if (args[0].equals("store")) {
mgr.createAndStoreEvent("My Event", new Date());
}
HibernateUtil.getSessionFactory().close();
}
session.getTransaction().commit();
}
What does sessionFactory.getCurrentSession() do? First, you can call it as many times
and anywhere you like once you get hold of your org.hibernate.SessionFactory. The
getCurrentSession() method always returns the "current" unit of work. Remember that we
switched the configuration option for this mechanism to "thread" in our src/main/resources/
hibernate.cfg.xml? Due to that setting, the context of a current unit of work is bound to the
current Java thread that executes the application.
Important
Hibernate offers three methods of current session tracking. The "thread" based
method is not intended for production use; it is merely useful for prototyping and
11
Chapter 1. Tutorial
tutorials such as this one. Current session tracking is discussed in more detail later
on.
A org.hibernate.Session begins when the first call to getCurrentSession() is made for the
current thread. It is then bound by Hibernate to the current thread. When the transaction ends,
either through commit or rollback, Hibernate automatically unbinds the org.hibernate.Session
from the thread and closes it for you. If you call getCurrentSession() again, you get a new
org.hibernate.Session and can start a new unit of work.
Related to the unit of work scope, should the Hibernate org.hibernate.Session be used to execute
one or several database operations? The above example uses one org.hibernate.Session for one
operation. However this is pure coincidence; the example is just not complex enough to show
any other approach. The scope of a Hibernate org.hibernate.Session is flexible but you should
never design your application to use a new Hibernate org.hibernate.Session for every database
operation. Even though it is used in the following examples, consider session-per-operation an
anti-pattern. A real web application is shown later in the tutorial which will help illustrate this.
See Chapter 13, Transactions and Concurrency for more information about transaction handling
and demarcation. The previous example also skipped any error handling and rollback.
To run this, we will make use of the Maven exec plugin to call
our class with the necessary classpath setup: mvn exec:java -
Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="store"
Note
You may need to perform mvn compile first.
You should see Hibernate starting up and, depending on your configuration, lots of log output.
Towards the end, the following line will be displayed:
[java] Hibernate: insert into EVENTS (EVENT_DATE, title, EVENT_ID) values (?, ?, ?)
if (args[0].equals("store")) {
mgr.createAndStoreEvent("My Event", new Date());
}
else if (args[0].equals("list")) {
List events = mgr.listEvents();
for (int i = 0; i < events.size(); i++) {
Event theEvent = (Event) events.get(i);
System.out.println(
"Event: " + theEvent.getTitle() + " Time: " + theEvent.getDate()
12
Part 2 - Mapping associations
);
}
}
Here, we are using a Hibernate Query Language (HQL) query to load all existing Event objects
from the database. Hibernate will generate the appropriate SQL, send it to the database and
populate Event objects with the data. You can create more complex queries with HQL. See
Chapter 16, HQL: The Hibernate Query Language for more information.
Now we can call our new functionality, again using the Maven exec plugin: mvn exec:java -
Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="list"
package org.hibernate.tutorial.domain;
public Person() {}
13
Chapter 1. Tutorial
<hibernate-mapping package="org.hibernate.tutorial.domain">
</hibernate-mapping>
<mapping resource="events/Event.hbm.xml"/>
<mapping resource="events/Person.hbm.xml"/>
Create an association between these two entities. Persons can participate in events, and events
have participants. The design questions you have to deal with are: directionality, multiplicity, and
collection behavior.
By adding a collection of events to the Person class, you can easily navigate to the events for a
particular person, without executing an explicit query - by calling Person#getEvents. Multi-valued
associations are represented in Hibernate by one of the Java Collection Framework contracts;
here we choose a java.util.Set because the collection will not contain duplicate elements and
the ordering is not relevant to our examples:
14
Working the association
Before mapping this association, let's consider the other side. We could just keep this
unidirectional or create another collection on the Event, if we wanted to be able to navigate it from
both directions. This is not necessary, from a functional perspective. You can always execute an
explicit query to retrieve the participants for a particular event. This is a design choice left to you,
but what is clear from this discussion is the multiplicity of the association: "many" valued on both
sides is called a many-to-many association. Hence, we use Hibernate's many-to-many mapping:
</class>
Hibernate supports a broad range of collection mappings, a set being most common. For a many-
to-many association, or n:m entity relationship, an association table is required. Each row in this
table represents a link between a person and an event. The table name is decalred using the table
attribute of the set element. The identifier column name in the association, for the person side, is
defined with the key element, the column name for the event's side with the column attribute of
the many-to-many. You also have to tell Hibernate the class of the objects in your collection (the
class on the other side of the collection of references).
_____________ __________________
| | | | _____________
| EVENTS | | PERSON_EVENT | | |
|_____________| |__________________| | PERSON |
| | | | |_____________|
| *EVENT_ID | <--> | *EVENT_ID | | |
| EVENT_DATE | | *PERSON_ID | <--> | *PERSON_ID |
| TITLE | |__________________| | AGE |
|_____________| | FIRSTNAME |
| LASTNAME |
|_____________|
Now we will bring some people and events together in a new method in EventManager:
15
Chapter 1. Tutorial
session.getTransaction().commit();
}
After loading a Person and an Event, simply modify the collection using the normal collection
methods. There is no explicit call to update() or save(); Hibernate automatically detects that the
collection has been modified and needs to be updated. This is called automatic dirty checking. You
can also try it by modifying the name or the date property of any of your objects. As long as they are
in persistent state, that is, bound to a particular Hibernate org.hibernate.Session, Hibernate
monitors any changes and executes SQL in a write-behind fashion. The process of synchronizing
the memory state with the database, usually only at the end of a unit of work, is called flushing. In
our code, the unit of work ends with a commit, or rollback, of the database transaction.
You can load person and event in different units of work. Or you can modify an object outside of
a org.hibernate.Session, when it is not in persistent state (if it was persistent before, this state
is called detached). You can even modify a collection when it is detached:
session.getTransaction().commit();
session2.getTransaction().commit();
}
16
Collection of values
The call to update makes a detached object persistent again by binding it to a new unit of work,
so any modifications you made to it while detached can be saved to the database. This includes
any modifications (additions/deletions) you made to a collection of that entity object.
This is not much use in our example, but it is an important concept you can incorporate into
your own application. Complete this exercise by adding a new action to the main method of the
EventManager and call it from the command line. If you need the identifiers of a person and an
event - the save() method returns it (you might have to modify some of the previous methods
to return that identifier):
else if (args[0].equals("addpersontoevent")) {
Long eventId = mgr.createAndStoreEvent("My Event", new Date());
Long personId = mgr.createAndStorePerson("Foo", "Bar");
mgr.addPersonToEvent(personId, eventId);
System.out.println("Added person " + personId + " to event " + eventId);
}
This is an example of an association between two equally important classes : two entities. As
mentioned earlier, there are other classes and types in a typical model, usually "less important".
Some you have already seen, like an int or a java.lang.String. We call these classes value
types, and their instances depend on a particular entity. Instances of these types do not have
their own identity, nor are they shared between entities. Two persons do not reference the same
firstname object, even if they have the same first name. Value types cannot only be found in the
JDK , but you can also write dependent classes yourself such as an Address or MonetaryAmount
class. In fact, in a Hibernate application all JDK classes are considered value types.
You can also design a collection of value types. This is conceptually different from a collection of
references to other entities, but looks almost the same in Java.
Let's add a collection of email addresses to the Person entity. This will be represented as a
java.util.Set of java.lang.String instances:
17
Chapter 1. Tutorial
The difference compared with the earlier mapping is the use of the element part which tells
Hibernate that the collection does not contain references to another entity, but is rather a collection
whose elements are values types, here specifically of type string. The lowercase name tells you
it is a Hibernate mapping type/converter. Again the table attribute of the set element determines
the table name for the collection. The key element defines the foreign-key column name in the
collection table. The column attribute in the element element defines the column name where the
email address values will actually be stored.
_____________ __________________
| | | | _____________
| EVENTS | | PERSON_EVENT | | | ___________________
|_____________| |__________________| | PERSON | | |
| | | | |_____________| | PERSON_EMAIL_ADDR |
| *EVENT_ID | <--> | *EVENT_ID | | | |___________________|
| EVENT_DATE | | *PERSON_ID | <--> | *PERSON_ID | <--> | *PERSON_ID |
| TITLE | |__________________| | AGE | | *EMAIL_ADDR |
|_____________| | FIRSTNAME | |___________________|
| LASTNAME |
|_____________|
You can see that the primary key of the collection table is in fact a composite key that uses both
columns. This also implies that there cannot be duplicate email addresses per person, which is
exactly the semantics we need for a set in Java.
You can now try to add elements to this collection, just like we did before by linking persons and
events. It is the same code in Java:
session.getTransaction().commit();
}
18
Bi-directional associations
This time we did not use a fetch query to initialize the collection. Monitor the SQL log and try to
optimize this with an eager fetch.
Note
A relational database is more flexible than a network programming language, in
that it does not need a navigation direction; data can be viewed and retrieved in
any possible way.
These are normal set mappings in both mapping documents. Notice that the column names in
key and many-to-many swap in both mapping documents. The most important addition here is
the inverse="true" attribute in the set element of the Event's collection mapping.
What this means is that Hibernate should take the other side, the Person class, when it needs to
find out information about the link between the two. This will be a lot easier to understand once
you see how the bi-directional link between our two entities is created.
19
Chapter 1. Tutorial
Event to the collection of event references, of an instance of Person. If you want to make this
link bi-directional, you have to do the same on the other side by adding a Person reference to
the collection in an Event. This process of "setting the link on both sides" is absolutely necessary
with bi-directional links.
Many developers program defensively and create link management methods to correctly set both
sides (for example, in Person):
The get and set methods for the collection are now protected. This allows classes in the same
package and subclasses to still access the methods, but prevents everybody else from altering
the collections directly. Repeat the steps for the collection on the other side.
What about the inverse mapping attribute? For you, and for Java, a bi-directional link is simply
a matter of setting the references on both sides correctly. Hibernate, however, does not have
enough information to correctly arrange SQL INSERT and UPDATE statements (to avoid constraint
violations). Making one side of the association inverse tells Hibernate to consider it a mirror
of the other side. That is all that is necessary for Hibernate to resolve any issues that arise
when transforming a directional navigation model to a SQL database schema. The rules are
straightforward: all bi-directional associations need one side as inverse. In a one-to-many
association it has to be the many-side, and in many-to-many association you can select either side.
20
Writing the basic servlet
package org.hibernate.tutorial.web;
// Imports
try {
// Begin unit of work
HibernateUtil.getSessionFactory().getCurrentSession().beginTransaction();
The pattern applied here is called session-per-request. When a request hits the servlet, a
new Hibernate Session is opened through the first call to getCurrentSession() on the
SessionFactory. A database transaction is then started. All data access occurs inside a
transaction irrespective of whether the data is read or written. Do not use the auto-commit mode
in applications.
Do not use a new Hibernate Session for every database operation. Use one Hibernate Session
that is scoped to the whole request. Use getCurrentSession(), so that it is automatically bound
to the current Java thread.
Next, the possible actions of the request are processed and the response HTML is rendered. We
will get to that part soon.
Finally, the unit of work ends when processing and rendering are complete. If any problems
occurred during processing or rendering, an exception will be thrown and the database transaction
rolled back. This completes the session-per-request pattern. Instead of the transaction
21
Chapter 1. Tutorial
demarcation code in every servlet, you could also write a servlet filter. See the Hibernate website
and Wiki for more information about this pattern called Open Session in View. You will need it as
soon as you consider rendering your view in JSP, not in a servlet.
Now you can implement the processing of the request and the rendering of the page.
// Handle actions
if ( "store".equals(request.getParameter("action")) ) {
if ( "".equals(eventTitle) || "".equals(eventDate) ) {
out.println("<b><i>Please enter event title and date.</i></b>");
}
else {
createAndStoreEvent(eventTitle, dateFormatter.parse(eventDate));
out.println("<b><i>Added event.</i></b>");
}
}
// Print page
printEventForm(out);
listEvents(out, dateFormatter);
This coding style, with a mix of Java and HTML, would not scale in a more complex application-
keep in mind that we are only illustrating basic Hibernate concepts in this tutorial. The code prints
an HTML header and a footer. Inside this page, an HTML form for event entry and a list of all
events in the database are printed. The first method is trivial and only outputs HTML:
22
Deploying and testing
The listEvents() method uses the Hibernate Session bound to the current thread to execute
a query:
Finally, the store action is dispatched to the createAndStoreEvent() method, which also uses
the Session of the current thread:
HibernateUtil.getSessionFactory()
.getCurrentSession().save(theEvent);
}
The servlet is now complete. A request to the servlet will be processed in a single Session and
Transaction. As earlier in the standalone application, Hibernate can automatically bind these
objects to the current thread of execution. This gives you the freedom to layer your code and
access the SessionFactory in any way you like. Usually you would use a more sophisticated
design and move the data access code into data access objects (the DAO pattern). See the
Hibernate Wiki for more examples.
To deploy this application for testing we must create a Web ARchive (WAR). First we must define
the WAR descriptor as src/main/webapp/WEB-INF/web.xml
23
Chapter 1. Tutorial
<servlet>
<servlet-name>Event Manager</servlet-name>
<servlet-class>org.hibernate.tutorial.web.EventManagerServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>Event Manager</servlet-name>
<url-pattern>/eventmanager</url-pattern>
</servlet-mapping>
</web-app>
To build and deploy call mvn package in your project directory and copy the hibernate-
tutorial.war file into your Tomcat webapps directory.
Note
1.4. Summary
This tutorial covered the basics of writing a simple standalone Hibernate application and a small
web application. More tutorials are available from the Hibernate website [http://hibernate.org].
24
Chapter 2.
Architecture
2.1. Overview
The diagram below provides a high-level view of the Hibernate architecture:
Application
Persistent Objects
HIBERNATE
hibernate. XML Mapping
properties
Database
Unfortunately we cannot provide a detailed view of all possible runtime architectures. Hibernate is
sufficiently flexible to be used in a number of ways in many, many architectures. We will, however,
illustrate 2 specifically since they are extremes.
The "minimal" architecture has the application manage its own JDBC connections and provide
those connections to Hibernate; additionally the application manages transactions for itself. This
approach uses a minimal subset of Hibernate APIs.
25
Chapter 2. Architecture
Persistent
Objects
Database
SessionFactory
Session Transaction
TransactionFactory ConnectionProvider
Database
26
Basic APIs
SessionFactory (org.hibernate.SessionFactory)
A thread-safe, immutable cache of compiled mappings for a single
database. A factory for org.hibernate.Session instances. A client of
org.hibernate.connection.ConnectionProvider. Optionally maintains a second level
cache of data that is reusable between transactions at a process or cluster level.
Session (org.hibernate.Session)
A single-threaded, short-lived object representing a conversation between the
application and the persistent store. Wraps a JDBC java.sql.Connection. Factory
for org.hibernate.Transaction. Maintains a first level cache of persistent the
application's persistent objects and collections; this cache is used when navigating the object
graph or looking up objects by identifier.
Transaction (org.hibernate.Transaction)
(Optional) A single-threaded, short-lived object used by the application to specify atomic
units of work. It abstracts the application from the underlying JDBC, JTA or CORBA
transaction. A org.hibernate.Session might span several org.hibernate.Transactions
in some cases. However, transaction demarcation, either using the underlying API or
org.hibernate.Transaction, is never optional.
ConnectionProvider (org.hibernate.connection.ConnectionProvider)
(Optional) A factory for, and pool of, JDBC connections. It abstracts the application from
underlying javax.sql.DataSource or java.sql.DriverManager. It is not exposed to
application, but it can be extended and/or implemented by the developer.
TransactionFactory (org.hibernate.TransactionFactory)
(Optional) A factory for org.hibernate.Transaction instances. It is not exposed to the
application, but it can be extended and/or implemented by the developer.
27
Chapter 2. Architecture
Extension Interfaces
Hibernate offers a range of optional extension interfaces you can implement to customize the
behavior of your persistence layer. See the API documentation for details.
Another feature available as a JMX service is runtime Hibernate statistics. See Section 3.4.6,
“Hibernate statistics” for more information.
28
Contextual sessions
The first two implementations provide a "one session - one database transaction" programming
model. This is also known and used as session-per-request. The beginning and end of a Hibernate
session is defined by the duration of a database transaction. If you use programmatic transaction
demarcation in plain JSE without JTA, you are advised to use the Hibernate Transaction API
to hide the underlying transaction system from your code. If you use JTA, you can utilize the
JTA interfaces to demarcate transactions. If you execute in an EJB container that supports CMT,
transaction boundaries are defined declaratively and you do not need any transaction or session
demarcation operations in your code. Refer to Chapter 13, Transactions and Concurrency for
more information and code examples.
29
30
Chapter 3.
Configuration
Hibernate is designed to operate in many different environments and, as such, there is a broad
range of configuration parameters. Fortunately, most have sensible default values and Hibernate
is distributed with an example hibernate.properties file in etc/ that displays the various
options. Simply put the example file in your classpath and customize it to suit your needs.
An alternative way is to specify the mapped class and allow Hibernate to find the mapping
document for you:
31
Chapter 3. Configuration
This is not the only way to pass configuration properties to Hibernate. Some alternative options
include:
Once you start a task that requires access to the database, a JDBC connection will be obtained
from the pool.
Before you can do this, you first need to pass some JDBC connection properties
to Hibernate. All Hibernate property names and semantics are defined on the class
org.hibernate.cfg.Environment. The most important settings for JDBC connection
configuration are outlined below.
Hibernate will obtain and pool connections using java.sql.DriverManager if you set the
following properties:
32
JDBC connections
Hibernate's own connection pooling algorithm is, however, quite rudimentary. It is intended to
help you get started and is not intended for use in a production system, or even for performance
testing. You should use a third party pool for best performance and stability. Just replace the
hibernate.connection.pool_size property with connection pool specific settings. This will turn off
Hibernate's internal pool. For example, you might like to use c3p0.
C3P0 is an open source JDBC connection pool distributed along with Hibernate in the lib
directory. Hibernate will use its org.hibernate.connection.C3P0ConnectionProvider for
connection pooling if you set hibernate.c3p0.* properties. If you would like to use Proxool, refer to
the packaged hibernate.properties and the Hibernate web site for more information.
hibernate.connection.driver_class = org.postgresql.Driver
hibernate.connection.url = jdbc:postgresql://localhost/mydatabase
hibernate.connection.username = myuser
hibernate.connection.password = secret
hibernate.c3p0.min_size=5
hibernate.c3p0.max_size=20
hibernate.c3p0.timeout=1800
hibernate.c3p0.max_statements=50
hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
For use inside an application server, you should almost always configure Hibernate to obtain
connections from an application server javax.sql.Datasource registered in JNDI. You will need
to set at least one of the following properties:
33
Chapter 3. Configuration
hibernate.connection.datasource = java:/comp/env/jdbc/test
hibernate.transaction.factory_class = \
org.hibernate.transaction.JTATransactionFactory
hibernate.transaction.manager_lookup_class = \
org.hibernate.transaction.JBossTransactionManagerLookup
hibernate.dialect = org.hibernate.dialect.PostgreSQLDialect
JDBC connections obtained from a JNDI datasource will automatically participate in the container-
managed transactions of the application server.
You can define your own plugin strategy for obtaining JDBC connections by implementing
the interface org.hibernate.connection.ConnectionProvider, and specifying your custom
implementation via the hibernate.connection.provider_class property.
Warning
e.g. full.classname.of.Dialect
34
Optional configuration properties
e.g. SCHEMA_NAME
hibernate.default_catalog Qualifies unqualified table names with the
given catalog in generated SQL.
e.g. CATALOG_NAME
hibernate.session_factory_name The org.hibernate.SessionFactory will be
automatically bound to this name in JNDI after
it has been created.
e.g. jndi/composite/name
hibernate.max_fetch_depth Sets a maximum "depth" for the outer join fetch
tree for single-ended associations (one-to-one,
many-to-one). A 0 disables default outer join
fetching.
35
Chapter 3. Configuration
Note
36
Optional configuration properties
e.g. classname.of.BatcherFactory
hibernate.jdbc.use_scrollable_resultset Enables use of JDBC2 scrollable resultsets
by Hibernate. This property is only
necessary when using user-supplied JDBC
connections. Hibernate uses connection
metadata otherwise.
e.g. true|false
hibernate.connection.provider_class The classname of a custom
org.hibernate.connection.ConnectionProvider
37
Chapter 3. Configuration
e.g. classname.of.ConnectionProvider
hibernate.connection.isolation Sets the JDBC transaction isolation level.
Check java.sql.Connection for meaningful
values, but note that most databases do not
support all isolation levels and some define
additional, non-standard isolations.
e.g. 1, 2, 4, 8
hibernate.connection.autocommit Enables autocommit for JDBC pooled
connections (it is not recommended).
38
Optional configuration properties
e.g. classname.of.CacheProvider
hibernate.cache.use_minimal_puts Optimizes second-level cache operation to
minimize writes, at the cost of more frequent
reads. This setting is most useful for clustered
caches and, in Hibernate3, is enabled by
default for clustered cache implementations.
e.g. true|false
hibernate.cache.use_query_cache Enables the query cache. Individual queries
still have to be set cachable.
e.g. true|false
hibernate.cache.use_second_level_cache Can be used to completely disable the second
level cache, which is enabled by default for
classes which specify a <cache> mapping.
e.g. true|false
hibernate.cache.query_cache_factory The classname of a custom QueryCache
interface, defaults to the built-in
StandardQueryCache.
e.g. classname.of.QueryCache
hibernate.cache.region_prefix A prefix to use for second-level cache region
names.
e.g. prefix
hibernate.cache.use_structured_entries Forces Hibernate to store data in the second-
level cache in a more human-friendly format.
e.g. true|false
Setting used to give the name of the default
hibernate.cache.default_cache_concurrency_strategy
org.hibernate.annotations.CacheConcurrencyStrategy
to use when either @Cacheable or @Cache
is used. @Cache(strategy="..") is used to
override this default.
39
Chapter 3. Configuration
e.g. classname.of.TransactionFactory
jta.UserTransaction A JNDI name used by
JTATransactionFactory to obtain the JTA
UserTransaction from the application server.
e.g. jndi/composite/name
The
hibernate.transaction.manager_lookup_class classname of a
TransactionManagerLookup. It is required
when JVM-level caching is enabled or when
using hilo generator in a JTA environment.
e.g.
classname.of.TransactionManagerLookup
40
Optional configuration properties
e.g. hqlLiteral=SQL_LITERAL,
hqlFunction=SQLFUNC
e.g. /humans.sql,/dogs.sql
Enables the use of bytecode manipulation
hibernate.bytecode.use_reflection_optimizer
instead of runtime reflection. This is
a System-level property and cannot be
set in hibernate.cfg.xml. Reflection can
sometimes be useful when troubleshooting.
Hibernate always requires either CGLIB or
javassist even if you turn off the optimizer.
41
Chapter 3. Configuration
RDBMS Dialect
DB2 org.hibernate.dialect.DB2Dialect
PostgreSQL org.hibernate.dialect.PostgreSQLDialect
MySQL org.hibernate.dialect.MySQLDialect
Oracle 9i org.hibernate.dialect.Oracle9iDialect
Sybase org.hibernate.dialect.SybaseDialect
SAP DB org.hibernate.dialect.SAPDBDialect
Informix org.hibernate.dialect.InformixDialect
HypersonicSQL org.hibernate.dialect.HSQLDialect
Ingres org.hibernate.dialect.IngresDialect
Progress org.hibernate.dialect.ProgressDialect
Interbase org.hibernate.dialect.InterbaseDialect
Pointbase org.hibernate.dialect.PointbaseDialect
FrontBase org.hibernate.dialect.FrontbaseDialect
Firebird org.hibernate.dialect.FirebirdDialect
42
Outer Join Fetching
Outer join fetching can be disabled globally by setting the property hibernate.max_fetch_depth
to 0. A setting of 1 or higher enables outer join fetching for one-to-one and many-to-one
associations that have been mapped with fetch="join".
This would cause the tokens true and false to be translated to integer literals in the generated
SQL.
hibernate.query.substitutions toLowercase=LOWER
43
Chapter 3. Configuration
even be configured to expose these statistics via JMX. Read the Javadoc of the interfaces in
org.hibernate.stats for more information.
3.5. Logging
Hibernate utilizes Simple Logging Facade for Java [http://www.slf4j.org/] (SLF4J) in order to log
various system events. SLF4J can direct your logging output to several logging frameworks (NOP,
Simple, log4j version 1.2, JDK 1.4 logging, JCL or logback) depending on your chosen binding. In
order to setup logging you will need slf4j-api.jar in your classpath together with the jar file for
your preferred binding - slf4j-log4j12.jar in the case of Log4J. See the SLF4J documentation
[http://www.slf4j.org/manual.html] for more detail. To use Log4j you will also need to place a
log4j.properties file in your classpath. An example properties file is distributed with Hibernate
in the src/ directory.
It is recommended that you familiarize yourself with Hibernate's log messages. A lot of work has
been put into making the Hibernate log as detailed as possible, without making it unreadable. It
is an essential troubleshooting device. The most interesting log categories are the following:
Category Function
org.hibernate.SQL Log all SQL DML statements as they are executed
org.hibernate.type Log all JDBC parameters
Log all SQL DDL statements as they are executed
org.hibernate.tool.hbm2ddl
org.hibernate.pretty Log the state of all entities (max 20 entities) associated with the
session at flush time
org.hibernate.cache Log all second-level cache activity
Log transaction related activity
org.hibernate.transaction
When developing applications with Hibernate, you should almost always work with debug enabled
for the category org.hibernate.SQL, or, alternatively, the property hibernate.show_sql
enabled.
44
XML configuration file
You can provide rules for automatically generating database identifiers from Java identifiers or
for processing "logical" column and table names given in the mapping file into "physical" table
and column names. This feature helps reduce the verbosity of the mapping document, eliminating
repetitive noise (TBL_ prefixes, for example). The default strategy used by Hibernate is quite
minimal.
The XML configuration file is by default expected to be in the root of your CLASSPATH. Here is
an example:
<hibernate-configuration>
45
Chapter 3. Configuration
</session-factory>
</hibernate-configuration>
The advantage of this approach is the externalization of the mapping file names to configuration.
The hibernate.cfg.xml is also more convenient once you have to tune the Hibernate cache. It
is your choice to use either hibernate.properties or hibernate.cfg.xml. Both are equivalent,
except for the above mentioned benefits of using the XML syntax.
• Automatic JNDI binding: Hibernate can bind its SessionFactory to JNDI after startup.
• JTA Session binding: the Hibernate Session can be automatically bound to the scope of JTA
transactions. Simply lookup the SessionFactory from JNDI and get the current Session. Let
Hibernate manage flushing and closing the Session when your JTA transaction completes.
Transaction demarcation is either declarative (CMT) or programmatic (BMT/UserTransaction).
• JMX deployment: if you have a JMX capable application server (e.g. JBoss AS), you can choose
to deploy Hibernate as a managed MBean. This saves you the one line startup code to build your
46
Transaction strategy configuration
Depending on your environment, you might have to set the configuration option
hibernate.connection.aggressive_release to true if your application server shows
"connection containment" exceptions.
To keep your code portable between these two (and other) environments we recommend the
optional Hibernate Transaction API, which wraps and hides the underlying system. You have to
specify a factory class for Transaction instances by setting the Hibernate configuration property
hibernate.transaction.factory_class.
org.hibernate.transaction.JDBCTransactionFactory
delegates to database (JDBC) transactions (default)
org.hibernate.transaction.JTATransactionFactory
delegates to container-managed transactions if an existing transaction is underway in this
context (for example, EJB session bean method). Otherwise, a new transaction is started and
bean-managed transactions are used.
org.hibernate.transaction.CMTTransactionFactory
delegates to container-managed JTA transactions
You can also define your own transaction strategies (for a CORBA transaction service, for
example).
Some features in Hibernate (i.e., the second level cache, Contextual Sessions with JTA, etc.)
require access to the JTA TransactionManager in a managed environment. In an application
server, since J2EE does not standardize a single mechanism, you have to specify how Hibernate
should obtain a reference to the TransactionManager:
47
Chapter 3. Configuration
org.hibernate.transaction.OrionTransactionManagerLookup Orion
org.hibernate.transaction.ResinTransactionManagerLookup Resin
org.hibernate.transaction.JOTMTransactionManagerLookup JOTM
org.hibernate.transaction.JOnASTransactionManagerLookup JOnAS
org.hibernate.transaction.JRun4TransactionManagerLookup JRun4
org.hibernate.transaction.BESTransactionManagerLookup Borland ES
JBoss TS used
org.hibernate.transaction.JBossTSStandaloneTransactionManagerLookup
standalone (ie. outside
JBoss AS and a JNDI
environment generally).
Known to work for
org.jboss.jbossts:jbossjta:4.11.0.Final
If you wish to have the SessionFactory bound to a JNDI namespace, specify a name (e.g.
java:hibernate/SessionFactory) using the property hibernate.session_factory_name. If
this property is omitted, the SessionFactory will not be bound to JNDI. This is especially useful
in environments with a read-only JNDI default implementation (in Tomcat, for example).
When binding the SessionFactory to JNDI, Hibernate will use the values of
hibernate.jndi.url, hibernate.jndi.class to instantiate an initial context. If they are not
specified, the default InitialContext will be used.
Hibernate will automatically place the SessionFactory in JNDI after you call
cfg.buildSessionFactory(). This means you will have this call in some startup code, or utility
class in your application, unless you use JMX deployment with the HibernateService (this is
discussed later in greater detail).
If you use a JNDI SessionFactory, an EJB or any other class, you can obtain the
SessionFactory using a JNDI lookup.
It is recommended that you bind the SessionFactory to JNDI in a managed environment and
use a static singleton otherwise. To shield your application code from these details, we also
recommend to hide the actual lookup code for a SessionFactory in a helper class, such as
HibernateUtil.getSessionFactory(). Note that such a class is also a convenient way to
startup Hibernate—see chapter 1.
48
Current Session context management with JTA
<?xml version="1.0"?>
<server>
<mbean code="org.hibernate.jmx.HibernateService"
name="jboss.jca:service=HibernateFactory,name=HibernateFactory">
49
Chapter 3. Configuration
<attribute name="MaximumFetchDepth">5</attribute>
</mbean>
</server>
This file is deployed in a directory called META-INF and packaged in a JAR file with the extension
.sar (service archive). You also need to package Hibernate, its required third-party libraries, your
compiled persistent classes, as well as your mapping files in the same archive. Your enterprise
beans (usually session beans) can be kept in their own JAR file, but you can include this EJB
JAR file in the main service archive to get a single (hot-)deployable unit. Consult the JBoss AS
documentation for more information about JMX service and EJB deployment.
50
Chapter 4.
Persistent Classes
Persistent classes are classes in an application that implement the entities of the business problem
(e.g. Customer and Order in an E-commerce application). The term "persistent" here means that
the classes are able to be persisted, not that they are in the persistent state (see Section 11.1,
“Hibernate object states” for discussion).
Hibernate works best if these classes follow some simple rules, also known as the Plain Old
Java Object (POJO) programming model. However, none of these rules are hard requirements.
Indeed, Hibernate assumes very little about the nature of your persistent objects. You can express
a domain model in other ways (using trees of java.util.Map instances, for example).
package eg;
import java.util.Set;
import java.util.Date;
51
Chapter 4. Persistent Classes
The four main rules of persistent classes are explored in more detail in the following sections.
Cat has a no-argument constructor. All persistent classes must have a default
constructor (which can be non-public) so that Hibernate can instantiate them using
java.lang.reflect.Constructor.newInstance(). It is recommended that this constructor be
defined with at least package visibility in order for runtime proxy generation to work properly.
52
Provide an identifier property
Note
Historically this was considered option. While still not (yet) enforced, this should
be considered a deprecated feature as it will be completely required to provide a
identifier property in an upcoming release.
Cat has a property named id. This property maps to the primary key column(s) of the underlying
database table. The type of the identifier property can be any "basic" type (see ???). See
Section 9.4, “Components as composite identifiers” for information on mapping composite (multi-
column) identifiers.
Note
A central feature of Hibernate, proxies (lazy loading), depends upon the persistent class being
either non-final, or the implementation of an interface that declares all public methods. You can
persist final classes that do not implement an interface with Hibernate; you will not, however,
be able to use proxies for lazy association fetching which will ultimately limit your options for
performance tuning. To persist a final class which does not implement a "full" interface you must
disable proxy generation. See Example 4.2, “Disabling proxies in hbm.xml” and Example 4.3,
“Disabling proxies in annotations”.
53
Chapter 4. Persistent Classes
If the final class does implement a proper interface, you could alternatively tell Hibernate to use
the interface instead when generating the proxies. See Example 4.4, “Proxying an interface in
hbm.xml” and Example 4.5, “Proxying an interface in annotations”.
You should also avoid declaring public final methods as this will again limit the ability to
generate proxies from this class. If you want to use a class with public final methods, you
must explicitly disable proxying. Again, see Example 4.2, “Disabling proxies in hbm.xml” and
Example 4.3, “Disabling proxies in annotations”.
Properties need not be declared public. Hibernate can persist a property declared with package,
protected or private visibility as well.
package eg;
54
Implementing equals() and hashCode()
• intend to put instances of persistent classes in a Set (the recommended way to represent many-
valued associations); and
• intend to use reattachment of detached instances
Hibernate guarantees equivalence of persistent identity (database row) and Java identity only
inside a particular session scope. When you mix instances retrieved in different sessions, you
must implement equals() and hashCode() if you wish to have meaningful semantics for Sets.
The most obvious way is to implement equals()/hashCode() by comparing the identifier value
of both objects. If the value is the same, both must be the same database row, because they are
equal. If both are added to a Set, you will only have one element in the Set). Unfortunately, you
cannot use that approach with generated identifiers. Hibernate will only assign identifier values to
objects that are persistent; a newly created instance will not have any identifier value. Furthermore,
if an instance is unsaved and currently in a Set, saving it will assign an identifier value to the object.
If equals() and hashCode() are based on the identifier value, the hash code would change,
breaking the contract of the Set. See the Hibernate website for a full discussion of this problem.
This is not a Hibernate issue, but normal Java semantics of object identity and equality.
It is recommended that you implement equals() and hashCode() using Business key equality.
Business key equality means that the equals() method compares only the properties that form
the business key. It is a key that would identify our instance in the real world (a natural candidate
key):
...
public boolean equals(Object other) {
if (this == other) return true;
if ( !(other instanceof Cat) ) return false;
return true;
}
55
Chapter 4. Persistent Classes
A business key does not have to be as solid as a database primary key candidate (see
Section 13.1.3, “Considering object identity”). Immutable or unique properties are usually good
candidates for a business key.
Note
The following features are currently considered experimental and may change in
the near future.
By default, Hibernate works in normal POJO mode. You can set a default entity representation
mode for a particular SessionFactory using the default_entity_mode configuration option (see
Table 3.3, “Hibernate Configuration Properties”).
The following examples demonstrate the representation using Maps. First, in the mapping file an
entity-name has to be declared instead of, or in addition to, a class name:
<hibernate-mapping>
<class entity-name="Customer">
<id name="id"
type="long"
column="ID">
<generator class="sequence"/>
</id>
<property name="name"
column="NAME"
type="string"/>
<property name="address"
column="ADDRESS"
type="string"/>
<many-to-one name="organization"
column="ORGANIZATION_ID"
class="Organization"/>
56
Dynamic models
<bag name="orders"
inverse="true"
lazy="false"
cascade="all">
<key column="CUSTOMER_ID"/>
<one-to-many class="Order"/>
</bag>
</class>
</hibernate-mapping>
Even though associations are declared using target class names, the target type of associations
can also be a dynamic entity instead of a POJO.
After setting the default entity mode to dynamic-map for the SessionFactory, you can, at runtime,
work with Maps of Maps:
Session s = openSession();
Transaction tx = s.beginTransaction();
// Create a customer
Map david = new HashMap();
david.put("name", "David");
// Create an organization
Map foobar = new HashMap();
foobar.put("name", "Foobar Inc.");
// Link both
david.put("organization", foobar);
// Save both
s.save("Customer", david);
s.save("Organization", foobar);
tx.commit();
s.close();
One of the main advantages of dynamic mapping is quick turnaround time for prototyping, without
the need for entity class implementation. However, you lose compile-time type checking and
will likely deal with many exceptions at runtime. As a result of the Hibernate mapping, the
database schema can easily be normalized and sound, allowing to add a proper domain model
implementation on top later on.
// Create a customer
Map david = new HashMap();
david.put("name", "David");
57
Chapter 4. Persistent Classes
dynamicSession.save("Customer", david);
...
dynamicSession.flush();
dynamicSession.close()
...
// Continue on pojoSession
Please note that the call to getSession() using an EntityMode is on the Session API, not
the SessionFactory. That way, the new Session shares the underlying JDBC connection,
transaction, and other context information. This means you do not have to call flush() and
close() on the secondary Session, and also leave the transaction and connection handling to
the primary unit of work.
More information about the XML representation capabilities can be found in Chapter 20, XML
Mapping.
4.5. Tuplizers
org.hibernate.tuple.Tuplizer and its sub-interfaces are responsible for managing
a particular representation of a piece of data given that representation's
org.hibernate.EntityMode. If a given piece of data is thought of as a data structure, then a
tuplizer is the thing that knows how to create such a data structure, how to extract values from such
a data structure and how to inject values into such a data structure. For example, for the POJO
entity mode, the corresponding tuplizer knows how create the POJO through its constructor. It
also knows how to access the POJO properties using the defined property accessors.
Users can also plug in their own tuplizers. Perhaps you require that java.util.Map
implementation other than java.util.HashMap be used while in the dynamic-map entity-mode.
Or perhaps you need to define a different proxy generation strategy than the one used by default.
Both would be achieved by defining a custom tuplizer implementation. Tuplizer definitions are
attached to the entity or component mapping they are meant to manage. Going back to the
example of our Customer entity, Example 4.6, “Specify custom tuplizers in annotations” shows
how to specify a custom org.hibernate.tuple.entity.EntityTuplizer using annotations
while Example 4.7, “Specify custom tuplizers in hbm.xml” shows how to do the same in hbm.xml
@Entity
58
EntityNameResolvers
@Tuplizer(impl = DynamicEntityTuplizer.class)
public interface Cuisine {
@Id
@GeneratedValue
public Long getId();
public void setId(Long id);
@Tuplizer(impl = DynamicComponentTuplizer.class)
public Country getCountry();
public void setCountry(Country country);
}
<hibernate-mapping>
<class entity-name="Customer">
<!--
Override the dynamic-map entity-mode
tuplizer for the customer entity
-->
<tuplizer entity-mode="dynamic-map"
class="CustomMapTuplizerImpl"/>
4.6. EntityNameResolvers
org.hibernate.EntityNameResolver is a contract for resolving the entity name of a given
entity instance. The interface defines a single method resolveEntityName which is passed
the entity instance and is expected to return the appropriate entity name (null is allowed and
would indicate that the resolver does not know how to resolve the entity name of the given
entity instance). Generally speaking, an org.hibernate.EntityNameResolver is going to be
most useful in the case of dynamic models. One example might be using proxied interfaces as
your domain model. The hibernate test suite has an example of this exact style of usage under
the org.hibernate.test.dynamicentity.tuplizer2. Here is some of the code from that package for
illustration.
/**
* A very trivial JDK Proxy InvocationHandler implementation where we proxy an
* interface as the domain model and simply store persistent state in an internal
59
Chapter 4. Persistent Classes
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
String methodName = method.getName();
if ( methodName.startsWith( "set" ) ) {
String propertyName = methodName.substring( 3 );
data.put( propertyName, args[0] );
}
else if ( methodName.startsWith( "get" ) ) {
String propertyName = methodName.substring( 3 );
return data.get( propertyName );
}
else if ( "toString".equals( methodName ) ) {
return entityName + "#" + data.get( "Id" );
}
else if ( "hashCode".equals( methodName ) ) {
return new Integer( this.hashCode() );
}
return null;
}
/**
60
EntityNameResolvers
...
1. Implement a custom
tuplizer (see Section 4.5, “Tuplizers”), implementing the
getEntityNameResolvers method
61
62
Chapter 5.
Annotations are split in two categories, the logical mapping annotations (describing the object
model, the association between two entities etc.) and the physical mapping annotations
(describing the physical schema, tables, columns, indexes, etc). We will mix annotations from
both categories in the following code examples.
JPA annotations are in the javax.persistence.* package. Hibernate specific extensions are
in org.hibernate.annotations.*. You favorite IDE can auto-complete annotations and their
attributes for you (even without a specific "JPA" plugin, since JPA annotations are plain Java 5
annotations).
package eg;
@Entity
@Table(name="cats") @Inheritance(strategy=SINGLE_TABLE)
@DiscriminatorValue("C") @DiscriminatorColumn(name="subclass", discriminatorType=CHAR)
public class Cat {
@Id @GeneratedValue
public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@org.hibernate.annotations.Type(type="eg.types.ColorUserType")
@NotNull @Column(updatable=false)
public ColorType getColor() { return color; }
public void setColor(ColorType color) { this.color = color; }
private ColorType color;
63
Chapter 5. Basic O/R Mapping
@NotNull @Column(updatable=false)
public String getSex() { return sex; }
public void setSex(String sex) { this.sex = sex; }
private String sex;
@NotNull @Column(updatable=false)
public Integer getLitterId() { return litterId; }
public void setLitterId(Integer litterId) { this.litterId = litterId; }
private Integer litterId;
@OneToMany(mappedBy="mother") @OrderBy("litterId")
public Set<Cat> getKittens() { return kittens; }
public void setKittens(Set<Cat> kittens) { this.kittens = kittens; }
private Set<Cat> kittens = new HashSet<Cat>();
}
@Entity @DiscriminatorValue("D")
public class DomesticCat extends Cat {
@Entity
public class Dog { ... }
The legacy hbm.xml approach uses an XML schema designed to be readable and hand-editable.
The mapping language is Java-centric, meaning that mappings are constructed around persistent
class declarations and not table declarations.
Please note that even though many Hibernate users choose to write the XML by hand, a number of
tools exist to generate the mapping document. These include XDoclet, Middlegen and AndroMDA.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="eg">
<class name="Cat"
table="cats"
discriminator-value="C">
<id name="id">
<generator class="native"/>
</id>
64
Mapping declaration
<discriminator column="subclass"
type="character"/>
<property name="weight"/>
<property name="birthdate"
type="date"
not-null="true"
update="false"/>
<property name="color"
type="eg.types.ColorUserType"
not-null="true"
update="false"/>
<property name="sex"
not-null="true"
update="false"/>
<property name="litterId"
column="litterId"
update="false"/>
<many-to-one name="mother"
column="mother_id"
update="false"/>
<set name="kittens"
inverse="true"
order-by="litter_id">
<key column="mother_id"/>
<one-to-many class="Cat"/>
</set>
<subclass name="DomesticCat"
discriminator-value="D">
<property name="name"
type="string"/>
</subclass>
</class>
<class name="Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
We will now discuss the concepts of the mapping documents (both annotations and XML). We
will only describe, however, the document elements and attributes that are used by Hibernate at
runtime. The mapping document also contains some extra optional attributes and elements that
affect the database schemas exported by the schema export tool (for example, the not-null
attribute).
65
Chapter 5. Basic O/R Mapping
5.1.1. Entity
An entity is a regular Java object (aka POJO) which will be persisted by Hibernate.
@Entity
public class Flight implements Serializable {
Long id;
@Id
public Long getId() { return id; }
That's pretty much it, the rest is optional. There are however any options to tweak your entity
mapping, let's explore them.
@Table lets you define the table the entity will be persisted into. If undefined, the table name is
the unqualified class name of the entity. You can also optionally define the catalog, the schema
as well as unique constraints on the table.
@Entity
@Table(name="TBL_FLIGHT",
schema="AIR_COMMAND",
uniqueConstraints=
@UniqueConstraint(
name="flight_number",
columnNames={"comp_prefix", "flight_number"} ) )
public class Flight implements Serializable {
@Column(name="comp_prefix")
public String getCompagnyPrefix() { return companyPrefix; }
@Column(name="flight_number")
public String getNumber() { return number; }
}
The constraint name is optional (generated if left undefined). The column names composing the
constraint correspond to the column names as defined before the Hibernate NamingStrategy is
applied.
@Entity.name lets you define the shortcut name of the entity you can used in JP-QL and HQL
queries. It defaults to the unqualified class name of the class.
Hibernate goes beyond the JPA specification and provide additional configurations. Some of them
are hosted on @org.hibernate.annotations.Entity:
• dynamicInsert / dynamicUpdate (defaults to false): specifies that INSERT / UPDATE SQL should
be generated at runtime and contain only the columns whose values are not null. The dynamic-
66
Entity
update and dynamic-insert settings are not inherited by subclasses. Although these settings
can increase performance in some cases, they can actually decrease performance in others.
• selectBeforeUpdate (defaults to false): specifies that Hibernate should never perform an SQL
UPDATE unless it is certain that an object is actually modified. Only when a transient object
has been associated with a new session using update(), will Hibernate perform an extra SQL
SELECT to determine if an UPDATE is actually required. Use of select-before-update will
usually decrease performance. It is useful to prevent a database update trigger being called
unnecessarily if you reattach a graph of detached instances to a Session.
• persister: specifies a custom ClassPersister. The persister attribute lets you customize
the persistence strategy used for the class. You can, for example, specify your own
subclass of org.hibernate.persister.EntityPersister, or you can even provide a
completely new implementation of the interface org.hibernate.persister.ClassPersister
that implements, for example, persistence via stored procedure calls, serialization to flat files
or LDAP. See org.hibernate.test.CustomPersister for a simple example of "persistence"
to a Hashtable.
• optimisticLock (defaults to VERSION): determines the optimistic locking strategy. If you enable
dynamicUpdate, you will have a choice of optimistic locking strategies:
It is strongly recommended that you use version/timestamp columns for optimistic locking with
Hibernate. This strategy optimizes performance and correctly handles modifications made to
detached instances (i.e. when Session.merge() is used).
Tip
Be sure to import @javax.persistence.Entity to mark a class as an entity. It's a
common mistake to import @org.hibernate.annotations.Entity by accident.
67
Chapter 5. Basic O/R Mapping
Some entities are not mutable. They cannot be updated or deleted by the application. This allows
Hibernate to make some minor performance optimizations.. Use the @Immutable annotation.
You can also alter how Hibernate deals with lazy initialization for this class. On @Proxy, use
lazy=false to disable lazy fetching (not recommended). You can also specify an interface to use
for lazy initializing proxies (defaults to the class itself): use proxyClass on @Proxy. Hibernate will
initially return proxies (Javassist or CGLIB) that implement the named interface. The persistent
object will load when a method of the proxy is invoked. See "Initializing collections and proxies"
below.
@BatchSize specifies a "batch size" for fetching instances of this class by identifier. Not yet loaded
instances are loaded batch-size at a time (default 1).
You can specific an arbitrary SQL WHERE condition to be used when retrieving objects of this
class. Use @Where for that.
In the same vein, @Check lets you define an SQL expression used to generate a multi-row check
constraint for automatic schema generation.
There is no difference between a view and a base table for a Hibernate mapping. This is
transparent at the database level, although some DBMS do not support views properly, especially
with updates. Sometimes you want to use a view, but you cannot create one in the database (i.e.
with a legacy schema). In this case, you can map an immutable and read-only entity to a given
SQL subselect expression using @org.hibernate.annotations.Subselect:
@Entity
@Subselect("select item.name, max(bid.amount), count(*) "
+ "from item "
+ "join bid on bid.item_id = item.id "
+ "group by item.name")
@Synchronize( {"item", "bid"} ) //tables impacted
public class Summary {
@Id
public String getId() { return id; }
...
}
Declare the tables to synchronize this entity with, ensuring that auto-flush happens correctly and
that queries against the derived entity do not return stale data. The <subselect> is available both
as an attribute and a nested mapping element.
We will now explore the same options using the hbm.xml structure. You can declare a persistent
class using the class element. For example:
<class
name="ClassName"
table="tableName"
discriminator-value="discriminator_value"
68
Entity
mutable="true|false"
schema="owner"
catalog="catalog"
proxy="ProxyInterface"
dynamic-update="true|false"
dynamic-insert="true|false"
select-before-update="true|false"
polymorphism="implicit|explicit"
persister="PersisterClass"
batch-size="N"
optimistic-lock="none|version|dirty|all"
lazy="true|false" (16)
entity-name="EntityName" (17)
check="arbitrary sql check condition" (18)
rowid="rowid" (19)
subselect="SQL expression" (20)
abstract="true|false" (21)
node="element-name"
/>
name (optional): the fully qualified Java class name of the persistent class or interface. If this
attribute is missing, it is assumed that the mapping is for a non-POJO entity.
table (optional - defaults to the unqualified class name): the name of its database table.
discriminator-value (optional - defaults to the class name): a value that distinguishes
individual subclasses that is used for polymorphic behavior. Acceptable values include null
and not null.
mutable (optional - defaults to true): specifies that instances of the class are (not) mutable.
schema (optional): overrides the schema name specified by the root <hibernate-mapping>
element.
catalog (optional): overrides the catalog name specified by the root <hibernate-mapping>
element.
proxy (optional): specifies an interface to use for lazy initializing proxies. You can specify
the name of the class itself.
dynamic-update (optional - defaults to false): specifies that UPDATE SQL should be
generated at runtime and can contain only those columns whose values have changed.
dynamic-insert (optional - defaults to false): specifies that INSERT SQL should be
generated at runtime and contain only the columns whose values are not null.
select-before-update (optional - defaults to false): specifies that Hibernate should never
perform an SQL UPDATE unless it is certain that an object is actually modified. Only when
a transient object has been associated with a new session using update(), will Hibernate
perform an extra SQL SELECT to determine if an UPDATE is actually required.
polymorphisms (optional - defaults to implicit): determines whether implicit or explicit
query polymorphisms is used.
69
Chapter 5. Basic O/R Mapping
where (optional): specifies an arbitrary SQL WHERE condition to be used when retrieving
objects of this class.
persister (optional): specifies a custom ClassPersister.
batch-size (optional - defaults to 1): specifies a "batch size" for fetching instances of this
class by identifier.
optimistic-lock (optional - defaults to version): determines the optimistic locking strategy.
16 lazy (optional): lazy fetching can be disabled by setting lazy="false".
17 entity-name (optional - defaults to the class name): Hibernate3 allows a class to be
mapped multiple times, potentially to different tables. It also allows entity mappings that
are represented by Maps or XML at the Java level. In these cases, you should provide an
explicit arbitrary name for the entity. See Section 4.4, “Dynamic models” and Chapter 20,
XML Mapping for more information.
18 check (optional): an SQL expression used to generate a multi-row check constraint for
automatic schema generation.
19 rowid (optional): Hibernate can use ROWIDs on databases. On Oracle, for example,
Hibernate can use the rowid extra column for fast updates once this option has been set
to rowid. A ROWID is an implementation detail and represents the physical location of a
stored tuple.
20 subselect (optional): maps an immutable and read-only entity to a database subselect. This
is useful if you want to have a view instead of a base table. See below for more information.
21 abstract (optional): is used to mark abstract superclasses in <union-subclass>
hierarchies.
It is acceptable for the named persistent class to be an interface. You can declare implementing
classes of that interface using the <subclass> element. You can persist any static inner class.
Specify the class name using the standard form i.e. e.g.Foo$Bar.
<class name="Summary">
<subselect>
select item.name, max(bid.amount), count(*)
from item
join bid on bid.item_id = item.id
group by item.name
</subselect>
<synchronize table="item"/>
<synchronize table="bid"/>
<id name="name"/>
...
</class>
70
Identifiers
5.1.2. Identifiers
Mapped classes must declare the primary key column of the database table. Most classes will
also have a JavaBeans-style property holding the unique identifier of an instance.
@Entity
public class Person {
@Id Integer getId() { ... }
...
}
In hbm.xml, use the <id> element which defines the mapping from that property to the primary
key column.
<id
name="propertyName"
type="typename"
column="column_name"
unsaved-value="null|any|none|undefined|id_value"
access="field|property|ClassName">
node="element-name|@attribute-name|element/@attribute|."
<generator class="generatorClass"/>
</id>
If the name attribute is missing, it is assumed that the class has no identifier property.
The unsaved-value attribute is almost never needed in Hibernate3 and indeed has no
corresponding element in annotations.
You can also declare the identifier as a composite identifier. This allows access to legacy data
with composite keys. Its use is strongly discouraged for anything else.
71
Chapter 5. Basic O/R Mapping
• use a component type to represent the identifier and map it as a property in the entity: you then
annotated the property as @EmbeddedId. The component type has to be Serializable.
• map multiple properties as @Id properties: the identifier type is then the entity class itself and
needs to be Serializable. This approach is unfortunately not standard and only supported
by Hibernate.
• map multiple properties as @Id properties and declare an external class to be the identifier
type. This class, which needs to be Serializable, is declared on the entity via the @IdClass
annotation. The identifier type must contain the same properties as the identifier properties of
the entity: each property name must be the same, its type must be the same as well if the entity
property is of a basic type, its type must be the type of the primary key of the associated entity
if the entity property is an association (either a @OneToOne or a @ManyToOne).
As you can see the last case is far from obvious. It has been inherited from the dark ages of EJB
2 for backward compatibilities and we recommend you not to use it (for simplicity sake).
@Entity
class User {
@EmbeddedId
@AttributeOverride(name="firstName", column=@Column(name="fld_firstname")
UserId id;
Integer age;
}
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
}
You can notice that the UserId class is serializable. To override the column mapping, use
@AttributeOverride.
@Entity
72
Identifiers
class Customer {
@EmbeddedId CustomerId id;
boolean preferredCustomer;
@MapsId("userId")
@JoinColumns({
@JoinColumn(name="userfirstname_fk", referencedColumnName="firstName"),
@JoinColumn(name="userlastname_fk", referencedColumnName="lastName")
})
@OneToOne User user;
}
@Embeddable
class CustomerId implements Serializable {
UserId userId;
String customerNumber;
@Entity
class User {
@EmbeddedId UserId id;
Integer age;
}
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
In the embedded id object, the association is represented as the identifier of the associated
entity. But you can link its value to a regular association in the entity via the @MapsId annotation.
The @MapsId value correspond to the property name of the embedded id object containing
the associated entity's identifier. In the database, it means that the Customer.user and the
CustomerId.userId properties share the same underlying column (user_fk in this case).
Tip
The component type used as identifier must implement equals() and hashCode().
In practice, your code only sets the Customer.user property and the user id value is copied by
Hibernate into the CustomerId.userId property.
Warning
The id value can be copied as late as flush time, don't rely on it until after flush time.
73
Chapter 5. Basic O/R Mapping
While not supported in JPA, Hibernate lets you place your association directly in the embedded
id component (instead of having to use the @MapsId annotation).
@Entity
class Customer {
@EmbeddedId CustomerId id;
boolean preferredCustomer;
}
@Embeddable
class CustomerId implements Serializable {
@OneToOne
@JoinColumns({
@JoinColumn(name="userfirstname_fk", referencedColumnName="firstName"),
@JoinColumn(name="userlastname_fk", referencedColumnName="lastName")
})
User user;
String customerNumber;
@Entity
class User {
@EmbeddedId UserId id;
Integer age;
}
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
<composite-id
name="propertyName"
class="ClassName"
mapped="true|false"
access="field|property|ClassName"
node="element-name|.">
74
Identifiers
<class name="User">
<composite-id name="id" class="UserId">
<key-property name="firstName" column="fld_firstname"/>
<key-property name="lastName"/>
</composite-id>
</class>
<class name="Customer">
<composite-id name="id" class="CustomerId">
<key-property name="firstName" column="userfirstname_fk"/>
<key-property name="lastName" column="userfirstname_fk"/>
<key-property name="customerNumber"/>
</composite-id>
<property name="preferredCustomer"/>
<many-to-one name="user">
<column name="userfirstname_fk" updatable="false" insertable="false"/>
<column name="userlastname_fk" updatable="false" insertable="false"/>
</many-to-one>
</class>
<class name="User">
<composite-id name="id" class="UserId">
<key-property name="firstName"/>
<key-property name="lastName"/>
</composite-id>
<property name="age"/>
</class>
• the order of the properties (and column) matters. It must be the same between the association
and the primary key of the associated entity
• the many to one uses the same columns as the primary key and thus must be marked as read
only (insertable and updatable to false).
• unlike with @MapsId, the id value of the associated entity is not transparently copied, check the
foreign id generator for more information.
The last example shows how to map association directly in the embedded id component.
<class name="Customer">
<composite-id name="id" class="CustomerId">
<key-many-to-one name="user">
<column name="userfirstname_fk"/>
<column name="userlastname_fk"/>
75
Chapter 5. Basic O/R Mapping
</key-many-to-one>
<key-property name="customerNumber"/>
</composite-id>
<property name="preferredCustomer"/>
</class>
<class name="User">
<composite-id name="id" class="UserId">
<key-property name="firstName"/>
<key-property name="lastName"/>
</composite-id>
<property name="age"/>
</class>
This is the recommended approach to map composite identifier. The following options should not
be considered unless some constraint are present.
Another, arguably more natural, approach is to place @Id on multiple properties of your entity.
This approach is only supported by Hibernate (not JPA compliant) but does not require an extra
embeddable component.
@Entity
class Customer implements Serializable {
@Id @OneToOne
@JoinColumns({
@JoinColumn(name="userfirstname_fk", referencedColumnName="firstName"),
@JoinColumn(name="userlastname_fk", referencedColumnName="lastName")
})
User user;
boolean preferredCustomer;
@Entity
class User {
@EmbeddedId UserId id;
Integer age;
}
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
76
Identifiers
In this case Customer is its own identifier representation: it must implement Serializable and
must implement equals() and hashCode().
<class name="Customer">
<composite-id>
<key-many-to-one name="user">
<column name="userfirstname_fk"/>
<column name="userlastname_fk"/>
</key-many-to-one>
<key-property name="customerNumber"/>
</composite-id>
<property name="preferredCustomer"/>
</class>
<class name="User">
<composite-id name="id" class="UserId">
<key-property name="firstName"/>
<key-property name="lastName"/>
</composite-id>
<property name="age"/>
</class>
@IdClass on an entity points to the class (component) representing the identifier of the class. The
properties marked @Id on the entity must have their corresponding property on the @IdClass. The
return type of search twin property must be either identical for basic properties or must correspond
to the identifier class of the associated entity for an association.
Warning
This approach is inherited from the EJB 2 days and we recommend against its use.
But, after all it's your application and Hibernate supports it.
@Entity
@IdClass(CustomerId.class)
class Customer implements Serializable {
@Id @OneToOne
@JoinColumns({
@JoinColumn(name="userfirstname_fk", referencedColumnName="firstName"),
@JoinColumn(name="userlastname_fk", referencedColumnName="lastName")
})
User user;
77
Chapter 5. Basic O/R Mapping
boolean preferredCustomer;
}
@Entity
class User {
@EmbeddedId UserId id;
Integer age;
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
Customer and CustomerId do have the same properties customerNumber as well as user.
CustomerId must be Serializable and implement equals() and hashCode().
While not JPA standard, Hibernate let's you declare the vanilla associated property in the
@IdClass.
@Entity
@IdClass(CustomerId.class)
class Customer implements Serializable {
@Id @OneToOne
@JoinColumns({
@JoinColumn(name="userfirstname_fk", referencedColumnName="firstName"),
@JoinColumn(name="userlastname_fk", referencedColumnName="lastName")
})
User user;
boolean preferredCustomer;
}
@Entity
class User {
78
Identifiers
@Embeddable
class UserId implements Serializable {
String firstName;
String lastName;
}
This feature is of limited interest though as you are likely to have chosen the @IdClass approach
to stay JPA compliant or you have a quite twisted mind.
<class name="Customer">
<composite-id class="CustomerId" mapped="true">
<key-many-to-one name="user">
<column name="userfirstname_fk"/>
<column name="userlastname_fk"/>
</key-many-to-one>
<key-property name="customerNumber"/>
</composite-id>
<property name="preferredCustomer"/>
</class>
<class name="User">
<composite-id name="id" class="UserId">
<key-property name="firstName"/>
<key-property name="lastName"/>
</composite-id>
<property name="age"/>
</class>
Hibernate can generate and populate identifier values for you automatically. This is the
recommended approach over "business" or "natural" id (especially composite ids).
Hibernate offers various generation strategies, let's explore the most common ones first that
happens to be standardized by JPA:
• IDENTITY: supports identity columns in DB2, MySQL, MS SQL Server, Sybase and
HypersonicSQL. The returned identifier is of type long, short or int.
79
Chapter 5. Basic O/R Mapping
• AUTO: selects IDENTITY, SEQUENCE or TABLE depending upon the capabilities of the underlying
database.
Important
We recommend all new projects to use the new enhanced identifier generators.
They are deactivated by default for entities using annotations but can be activated
using hibernate.id.new_generator_mappings=true. These new generators
are more efficient and closer to the JPA 2 specification semantic.
However they are not backward compatible with existing Hibernate based
application (if a sequence or a table is used for id generation). See XXXXXXX ???
for more information on how to activate them.
To mark an id property as generated, use the @GeneratedValue annotation. You can specify the
strategy used (default to AUTO) by setting strategy.
@Entity
public class Customer {
@Id @GeneratedValue
Integer getId() { ... };
}
@Entity
public class Invoice {
@Id @GeneratedValue(strategy=GenerationType.IDENTITY)
Integer getId() { ... };
}
• catalog / schema:
• allocationSize: the amount to increment by when allocating id numbers from the generator
80
Identifiers
• uniqueConstraints: any potential column constraint on the table containing the ids
To link a table or sequence generator definition with an actual generated property, use the same
name in both the definition name and the generator value generator as shown below.
@Id
@GeneratedValue(
strategy=GenerationType.SEQUENCE,
generator="SEQ_GEN")
@javax.persistence.SequenceGenerator(
name="SEQ_GEN",
sequenceName="my_sequence",
allocationSize=20
)
public Integer getId() { ... }
The scope of a generator definition can be the application or the class. Class-defined generators
are not visible outside the class and can override application level generators. Application level
generators are defined in JPA's XML deployment descriptors (see XXXXXX ???):
<table-generator name="EMP_GEN"
table="GENERATOR_TABLE"
pk-column-name="key"
value-column-name="hi"
pk-column-value="EMP"
allocation-size="20"/>
@javax.persistence.TableGenerator(
name="EMP_GEN",
table="GENERATOR_TABLE",
pkColumnName = "key",
valueColumnName = "hi"
pkColumnValue="EMP",
allocationSize=20
)
<sequence-generator name="SEQ_GEN"
sequence-name="my_sequence"
allocation-size="20"/>
@javax.persistence.SequenceGenerator(
81
Chapter 5. Basic O/R Mapping
name="SEQ_GEN",
sequenceName="my_sequence",
allocationSize=20
)
If a JPA XML descriptor (like META-INF/orm.xml) is used to define the generators, EMP_GEN and
SEQ_GEN are application level generators.
Note
Package level definition is not supported by the JPA specification. However, you
can use the @GenericGenerator at the package level (see ???).
These are the four standard JPA generators. Hibernate goes beyond that and provide additional
generators or additional options as we will see below. You can also write your own custom identifier
generator by implementing org.hibernate.id.IdentifierGenerator.
To define a custom generator, use the @GenericGenerator annotation (and its plural counter part
@GenericGenerators) that describes the class of the identifier generator or its short cut name
(as described below) and a list of key/value parameters. When using @GenericGenerator and
assigning it via @GeneratedValue.generator, the @GeneratedValue.strategy is ignored: leave
it blank.
@Id @GeneratedValue(generator="system-uuid")
@GenericGenerator(name="system-uuid", strategy = "uuid")
public String getId() {
@Id @GeneratedValue(generator="trigger-generated")
@GenericGenerator(
name="trigger-generated",
strategy = "select",
parameters = @Parameter(name="key", value = "socialSecurityNumber")
)
public String getId() {
The hbm.xml approach uses the optional <generator> child element inside <id>. If any
parameters are required to configure or initialize the generator instance, they are passed using
the <param> element.
82
Identifiers
increment
generates identifiers of type long, short or int that are unique only when no other process
is inserting data into the same table. Do not use in a cluster.
identity
supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The
returned identifier is of type long, short or int.
sequence
uses a sequence in DB2, PostgreSQL, Oracle, SAP DB, McKoi or a generator in Interbase.
The returned identifier is of type long, short or int
hilo
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a table
and column (by default hibernate_unique_key and next_hi respectively) as a source of hi
values. The hi/lo algorithm generates identifiers that are unique only for a particular database.
seqhilo
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a
named database sequence.
uuid
Generates a 128-bit UUID based on a custom algorithm. The value generated is
represented as a string of 32 hexidecimal digits. Users can also configure it to use
a separator (config parameter "separator") which separates the hexidecimal digits into
8{sep}8{sep}4{sep}8{sep}4. Note specifically that this is different than the IETF RFC 4122
representation of 8-4-4-4-12. If you need RFC 4122 compliant UUIDs, consider using "uuid2"
generator discussed below.
uuid2
Generates a IETF RFC 4122 compliant (variant 2) 128-bit UUID. The exact "version" (the
RFC term) generated depends on the pluggable "generation strategy" used (see below).
Capable of generating values as java.util.UUID, java.lang.String or as a byte
array of length 16 (byte[16]). The "generation strategy" is defined by the interface
org.hibernate.id.UUIDGenerationStrategy. The generator defines 2 configuration
parameters for defining which generation strategy to use:
uuid_gen_strategy_class
Names the UUIDGenerationStrategy class to use
uuid_gen_strategy
Names the UUIDGenerationStrategy instance to use
83
Chapter 5. Basic O/R Mapping
guid
uses a database-generated GUID string on MS SQL Server and MySQL.
native
selects identity, sequence or hilo depending upon the capabilities of the underlying
database.
assigned
lets the application assign an identifier to the object before save() is called. This is the default
strategy if no <generator> element is specified.
select
retrieves a primary key, assigned by a database trigger, by selecting the row by some unique
key and retrieving the primary key value.
foreign
uses the identifier of another associated object. It is usually used in conjunction with a <one-
to-one> primary key association.
sequence-identity
a specialized sequence generation strategy that utilizes a database sequence for the actual
value generation, but combines this with JDBC3 getGeneratedKeys to return the generated
identifier value as part of the insert statement execution. This strategy is only supported on
Oracle 10g drivers targeted for JDK 1.4. Comments on these insert statements are disabled
due to a bug in the Oracle drivers.
The hilo and seqhilo generators provide two alternate implementations of the hi/lo algorithm.
The first implementation requires a "special" database table to hold the next available "hi" value.
Where supported, the second uses an Oracle-style sequence.
84
Identifiers
</generator>
</id>
Unfortunately, you cannot use hilo when supplying your own Connection to Hibernate. When
Hibernate uses an application server datasource to obtain connections enlisted with JTA, you
must configure the hibernate.transaction.manager_lookup_class.
The UUID contains: IP address, startup time of the JVM that is accurate to a quarter second,
system time and a counter value that is unique within the JVM. It is not possible to obtain a MAC
address or memory address from Java code, so this is the best option without using JNI.
For databases that support identity columns (DB2, MySQL, Sybase, MS SQL), you can use
identity key generation. For databases that support sequences (DB2, Oracle, PostgreSQL,
Interbase, McKoi, SAP DB) you can use sequence style key generation. Both of these strategies
require two SQL queries to insert a new object. For example:
For cross-platform development, the native strategy will, depending on the capabilities of the
underlying database, choose from the identity, sequence and hilo strategies.
If you want the application to assign identifiers, as opposed to having Hibernate generate them,
you can use the assigned generator. This special generator uses the identifier value already
assigned to the object's identifier property. The generator is used when the primary key is a natural
85
Chapter 5. Basic O/R Mapping
key instead of a surrogate key. This is the default behavior if you do not specify @GeneratedValue
nor <generator> elements.
Hibernate does not generate DDL with triggers. It is for legacy schemas only.
Finally, you can ask Hibernate to copy the identifier from another associated entity. In the
Hibernate jargon, it is known as a foreign generator but the JPA mapping reads better and is
encouraged.
@Entity
class MedicalHistory implements Serializable {
@Id @OneToOne
@JoinColumn(name = "person_id")
Person patient;
}
@Entity
public class Person implements Serializable {
@Id @GeneratedValue Integer id;
}
Or alternatively
@Entity
class MedicalHistory implements Serializable {
@Id Integer id;
@MapsId @OneToOne
@JoinColumn(name = "patient_id")
Person patient;
}
86
Identifiers
@Entity
class Person {
@Id @GeneratedValue Integer id;
}
<class name="MedicalHistory">
<id name="id">
<generator class="foreign">
<param name="property">patient</param>
</generator>
</id>
<one-to-one name="patient" class="Person" constrained="true"/>
</class>
Starting with release 3.2.3, there are 2 new generators which represent a re-thinking of 2 different
aspects of identifier generation. The first aspect is database portability; the second is optimization
Optimization means that you do not have to query the database for every request for a new
identifier value. These two new generators are intended to take the place of some of the named
generators described above, starting in 3.3.x. However, they are included in the current releases
and can be referenced by FQN.
87
Chapter 5. Basic O/R Mapping
• value_column (optional - defaults to next_val): only relevant for table structures, it is the name
of the column on the table which is used to hold the value.
• optimizer (optional - defaults to none): See Section 5.1.2.3.1, “Identifier generator
optimization”
For identifier generators that store values in the database, it is inefficient for them to hit the
database on each and every call to generate a new identifier value. Instead, you can group a bunch
of them in memory and only hit the database when you have exhausted your in-memory value
group. This is the role of the pluggable optimizers. Currently only the two enhanced generators
(Section 5.1.2.3, “Enhanced identifier generators” support this operation.
• none (generally this is the default if no optimizer was specified): this will not perform any
optimizations and hit the database for each and every request.
• hilo: applies a hi/lo algorithm around the database retrieved values. The values from the
database for this optimizer are expected to be sequential. The values retrieved from the
database structure for this optimizer indicates the "group number". The increment_size is
multiplied by that value in memory to define a group "hi value".
• pooled: as with the case of hilo, this optimizer attempts to minimize the number of hits to
the database. Here, however, we simply store the starting value for the "next group" into the
database structure rather than a sequential value in combination with an in-memory grouping
algorithm. Here, increment_size refers to the values coming from the database.
88
Optimistic locking properties (optional)
Hibernate supports the automatic generation of some of the identifier properties. Simply use the
@GeneratedValue annotation on one or several id properties.
Warning
The Hibernate team has always felt such a construct as fundamentally wrong. Try
hard to fix your data model before using this feature.
@Entity
public class CustomerInventory implements Serializable {
@Id
@TableGenerator(name = "inventory",
table = "U_SEQUENCES",
pkColumnName = "S_ID",
valueColumnName = "S_NEXTNUM",
pkColumnValue = "inventory",
allocationSize = 1000)
@GeneratedValue(strategy = GenerationType.TABLE, generator = "inventory")
Integer id;
@Entity
public class Customer implements Serializable {
@Id
private int id;
}
When using long transactions or conversations that span several database transactions, it is useful
to store versioning data to ensure that if the same entity is updated by two conversations, the last
to commit changes will be informed and not override the other conversation's work. It guarantees
some isolation while still allowing for good scalability and works particularly well in read-often
write-sometimes situations.
A version or timestamp property should never be null for a detached instance. Hibernate will detect
any instance with a null version or timestamp as transient, irrespective of what other unsaved-
value strategies are specified. Declaring a nullable version or timestamp property is an easy way
89
Chapter 5. Basic O/R Mapping
to avoid problems with transitive reattachment in Hibernate. It is especially useful for people using
assigned identifiers or composite keys.
@Entity
public class Flight implements Serializable {
...
@Version
@Column(name="OPTLOCK")
public Integer getVersion() { ... }
}
The version property will be mapped to the OPTLOCK column, and the entity manager will use it to
detect conflicting updates (preventing lost updates you might otherwise see with the last-commit-
wins strategy).
The version column may be a numeric. Hibernate supports any kind of type provided that you
define and implement the appropriate UserVersionType.
The application must not alter the version number set up by Hibernate in
any way. To artificially increase the version number, check in Hibernate Entity
Manager's reference documentation LockModeType.OPTIMISTIC_FORCE_INCREMENT or
LockModeType.PESSIMISTIC_FORCE_INCREMENT.
If the version number is generated by the database (via a trigger for example), make sure to use
@org.hibernate.annotations.Generated(GenerationTime.ALWAYS).
<version
column="version_column"
name="propertyName"
type="typename"
access="field|property|ClassName"
unsaved-value="null|negative|undefined"
generated="never|always"
insert="true|false"
node="element-name|@attribute-name|element/@attribute|."
/>
column (optional - defaults to the property name): the name of the column holding the version
number.
name: the name of a property of the persistent class.
90
Optimistic locking properties (optional)
5.1.3.2. Timestamp
Alternatively, you can use a timestamp. Timestamps are a less safe implementation of optimistic
locking. However, sometimes an application might use the timestamps in other ways as well.
@Entity
public class Flight implements Serializable {
...
@Version
public Date getLastUpdate() { ... }
}
When using timestamp versioning you can tell Hibernate where to retrieve
the timestamp value from - database or JVM - by optionally adding the
@org.hibernate.annotations.Source annotation to the property. Possible values for the
value attribute of the annotation are org.hibernate.annotations.SourceType.VM and
org.hibernate.annotations.SourceType.DB. The default is SourceType.DB which is also
used in case there is no @Source annotation at all.
<timestamp
column="timestamp_column"
name="propertyName"
access="field|property|ClassName"
unsaved-value="null|undefined"
91
Chapter 5. Basic O/R Mapping
source="vm|db"
generated="never|always"
node="element-name|@attribute-name|element/@attribute|."
/>
column (optional - defaults to the property name): the name of a column holding the
timestamp.
name: the name of a JavaBeans style property of Java type Date or Timestamp of the
persistent class.
access (optional - defaults to property): the strategy Hibernate uses for accessing the
property value.
unsaved-value (optional - defaults to null): a version property value that indicates that an
instance is newly instantiated (unsaved), distinguishing it from detached instances that were
saved or loaded in a previous session. Undefined specifies that the identifier property value
should be used.
source (optional - defaults to vm): Where should Hibernate retrieve the timestamp value
from? From the database, or from the current JVM? Database-based timestamps incur an
overhead because Hibernate must hit the database in order to determine the "next value". It
is safer to use in clustered environments. Not all Dialects are known to support the retrieval
of the database's current timestamp. Others may also be unsafe for usage in locking due to
lack of precision (Oracle 8, for example).
generated (optional - defaults to never): specifies that this timestamp property value is
actually generated by the database. See the discussion of generated properties for more
information.
Note
5.1.4. Property
You need to decide which property needs to be made persistent in a given entity. This differs
slightly between the annotation driven metadata and the hbm.xml files.
In the annotations world, every non static non transient property (field or method depending on
the access type) of an entity is considered persistent, unless you annotate it as @Transient. Not
having an annotation for your property is equivalent to the appropriate @Basic annotation.
The @Basic annotation allows you to declare the fetching strategy for a property. If set to LAZY,
specifies that this property should be fetched lazily when the instance variable is first accessed. It
requires build-time bytecode instrumentation, if your classes are not instrumented, property level
92
Property
lazy loading is silently ignored. The default is EAGER. You can also mark a property as not optional
thanks to the @Basic.optional attribute. This will ensure that the underlying column are not
nullable (if possible). Note that a better approach is to use the @NotNull annotation of the Bean
Validation specification.
@Transient
String getLengthInMeter() { ... } //transient property
@Basic
int getLength() { ... } // persistent property
@Basic(fetch = FetchType.LAZY)
String getDetailedComment() { ... } // persistent property
@Temporal(TemporalType.TIME)
java.util.Date getDepartureTime() { ... } // persistent property
@Enumerated(EnumType.STRING)
Starred getNote() { ... } //enum persisted as String in database
counter, a transient field, and lengthInMeter, a method annotated as @Transient, and will be
ignored by the Hibernate. name, length, and firstname properties are mapped persistent and
eagerly fetched (the default for simple properties). The detailedComment property value will be
lazily fetched from the database once a lazy property of the entity is accessed for the first time.
Usually you don't need to lazy simple properties (not to be confused with lazy association fetching).
The recommended alternative is to use the projection capability of JP-QL (Java Persistence Query
Language) or Criteria queries.
JPA support property mapping of all basic types supported by Hibernate (all basic Java types ,
their respective wrappers and serializable classes). Hibernate Annotations supports out of the box
enum type mapping either into a ordinal column (saving the enum ordinal) or a string based column
(saving the enum string representation): the persistence representation, defaulted to ordinal, can
be overridden through the @Enumerated annotation as shown in the note property example.
In plain Java APIs, the temporal precision of time is not defined. When dealing with temporal
data you might want to describe the expected precision in database. Temporal data can have
DATE, TIME, or TIMESTAMP precision (ie the actual date, only the time, or both). Use the @Temporal
annotation to fine tune that.
@Lob indicates that the property should be persisted in a Blob or a Clob depending on the property
type: java.sql.Clob, Character[], char[] and java.lang.String will be persisted in a Clob.
java.sql.Blob, Byte[], byte[] and Serializable type will be persisted in a Blob.
93
Chapter 5. Basic O/R Mapping
@Lob
public String getFullText() {
return fullText;
}
@Lob
public byte[] getFullCode() {
return fullCode;
}
If the property type implements java.io.Serializable and is not a basic type, and if the property
is not annotated with @Lob, then the Hibernate serializable type is used.
5.1.4.1.1. Type
You can also manually specify a type using the @org.hibernate.annotations.Type and some
parameters if needed. @Type.type could be:
1. The name of a Hibernate basic type: integer, string, character, date, timestamp,
float, binary, serializable, object, blob etc.
2. The name of a Java class with a default basic type: int, float, char, java.lang.String,
java.util.Date, java.lang.Integer, java.sql.Clob etc.
3. The name of a serializable Java class.
4. The class name of a custom type: com.illflow.type.MyCustomType etc.
If you do not specify a type, Hibernate will use reflection upon the named property and guess
the correct Hibernate type. Hibernate will attempt to interpret the name of the return class of the
property getter using, in order, rules 2, 3, and 4.
Note
Package level annotations are placed in a file named package-info.java in the
appropriate package. Place your annotations before the package declaration.
@TypeDef(
name = "phoneNumber",
defaultForType = PhoneNumber.class,
94
Property
typeClass = PhoneNumberType.class
)
@Entity
public class ContactDetails {
[...]
private PhoneNumber localPhoneNumber;
@Type(type="phoneNumber")
private OverseasPhoneNumber overseasPhoneNumber;
[...]
}
The following example shows the usage of the parameters attribute to customize the TypeDef.
//in org/hibernate/test/annotations/entity/package-info.java
@TypeDefs(
{
@TypeDef(
name="caster",
typeClass = CasterStringType.class,
parameters = {
@Parameter(name="cast", value="lower")
}
)
}
)
package org.hibernate.test.annotations.entity;
//in org/hibernate/test/annotations/entity/Forest.java
public class Forest {
@Type(type="caster")
public String getSmallText() {
...
}
When using composite user type, you will have to express column definitions. The @Columns has
been introduced for that purpose.
@Type(type="org.hibernate.test.annotations.entity.MonetaryAmountUserType")
@Columns(columns = {
@Column(name="r_amount"),
@Column(name="r_currency")
})
public MonetaryAmount getAmount() {
return amount;
}
95
Chapter 5. Basic O/R Mapping
By default the access type of a class hierarchy is defined by the position of the @Id or @EmbeddedId
annotations. If these annotations are on a field, then only fields are considered for persistence
and the state is accessed via the field. If there annotations are on a getter, then only the getters
are considered for persistence and the state is accessed via the getter/setter. That works well in
practice and is the recommended approach.
Note
The best use case is an embeddable class used by several entities that might not use the same
access type. In this case it is better to force the access type at the embeddable class level.
To force the access type on a given class, use the @Access annotation as showed below:
@Entity
public class Order {
@Id private Long id;
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
@Entity
public class User {
private Long id;
@Id public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
96
Property
@Embeddable
@Access(AcessType.PROPERTY)
public class Address {
private String street1;
public String getStreet1() { return street1; }
public void setStreet1() { this.street1 = street1; }
You can also override the access type of a single property while keeping the other properties
standard.
@Entity
public class Order {
@Id private Long id;
public Long getId() { return id; }
public void setId(Long id) { this.id = id; }
@Transient private String userId;
@Transient private String orderId;
@Access(AccessType.PROPERTY)
public String getOrderNumber() { return userId + ":" + orderId; }
public void setOrderNumber() { this.userId = ...; this.orderId = ...; }
}
In this example, the default access type is FIELD except for the orderNumber property. Note that
the corresponding field, if any must be marked as @Transient or transient.
@org.hibernate.annotations.AccessType
It is sometimes useful to avoid increasing the version number even if a given property is
dirty (particularly collections). You can do that by annotating the property (or collection) with
@OptimisticLock(excluded=true).
More formally, specifies that updates to this property do not require acquisition of the optimistic
lock.
97
Chapter 5. Basic O/R Mapping
The column(s) used for a property mapping can be defined using the @Column annotation. Use
it to override default values (see the JPA specification for more information on the defaults). You
can use this annotation at the property level for properties that are:
@Entity
public class Flight implements Serializable {
...
@Column(updatable = false, name = "flight_name", nullable = false, length=50)
public String getName() { ... }
The name property is mapped to the flight_name column, which is not nullable, has a length of
50 and is not updatable (making the property immutable).
This annotation can be applied to regular properties as well as @Id or @Version properties.
@Column(
name="columnName";
98
Property
insertable (optional): whether or not the column will be part of the insert statement (default
true)
updatable (optional): whether or not the column will be part of the update statement (default
true)
columnDefinition (optional): override the sql DDL fragment for this particular column (non
portable)
table (optional): define the targeted table (default primary table)
length (optional): column length (default 255)
precision (optional): column decimal precision (default 0)
scale (optional): column decimal scale if useful (default 0)
5.1.4.1.5. Formula
Sometimes, you want the Database to do some computation for you rather than in the JVM, you
might also create some kind of virtual column. You can use a SQL fragment (aka formula) instead
of mapping a property into a column. This kind of property is read only (its value is calculated by
your formula fragment).
The SQL fragment can be as complex as you want and even include subselects.
The <property> element declares a persistent JavaBean style property of the class.
<property
name="propertyName"
column="column_name"
99
Chapter 5. Basic O/R Mapping
type="typename"
update="true|false"
insert="true|false"
access="field|property|ClassName"
lazy="true|false"
unique="true|false"
not-null="true|false"
optimistic-lock="true|false"
generated="never|insert|always"
node="element-name|@attribute-name|element/@attribute|."
index="index_name"
unique_key="unique_key_id"
length="L"
precision="P"
scale="S"
/>
1. The name of a Hibernate basic type: integer, string, character, date, timestamp,
float, binary, serializable, object, blob etc.
100
Embedded objects (aka components)
2. The name of a Java class with a default basic type: int, float, char, java.lang.String,
java.util.Date, java.lang.Integer, java.sql.Clob etc.
3. The name of a serializable Java class.
4. The class name of a custom type: com.illflow.type.MyCustomType etc.
If you do not specify a type, Hibernate will use reflection upon the named property and guess
the correct Hibernate type. Hibernate will attempt to interpret the name of the return class of the
property getter using, in order, rules 2, 3, and 4. In certain cases you will need the type attribute.
For example, to distinguish between Hibernate.DATE and Hibernate.TIMESTAMP, or to specify
a custom type.
The access attribute allows you to control how Hibernate accesses the property at runtime. By
default, Hibernate will call the property get/set pair. If you specify access="field", Hibernate
will bypass the get/set pair and access the field directly using reflection. You can specify
your own strategy for property access by naming a class that implements the interface
org.hibernate.property.PropertyAccessor.
A powerful feature is derived properties. These properties are by definition read-only. The property
value is computed at load time. You declare the computation as an SQL expression. This then
translates to a SELECT clause subquery in the SQL query that loads an instance:
<property name="totalPrice"
formula="( SELECT SUM (li.quantity*p.price) FROM LineItem li, Product p
WHERE li.productId = p.productId
AND li.customerId = customerId
AND li.orderNumber = orderNumber )"/>
You can reference the entity table by not declaring an alias on a particular column. This would be
customerId in the given example. You can also use the nested <formula> mapping element if
you do not want to use the attribute.
It is possible to declare an embedded component inside an entity and even override its column
mapping. Component classes have to be annotated at the class level with the @Embeddable
annotation. It is possible to override the column mapping of an embedded object for a particular
entity using the @Embedded and @AttributeOverride annotation in the associated property:
@Entity
public class Person implements Serializable {
101
Chapter 5. Basic O/R Mapping
Address homeAddress;
@Embedded
@AttributeOverrides( {
@AttributeOverride(name="iso2", column = @Column(name="bornIso2") ),
@AttributeOverride(name="name", column = @Column(name="bornCountryName") )
} )
Country bornIn;
...
}
@Embeddable
public class Address implements Serializable {
String city;
Country nationality; //no overriding here
}
@Embeddable
public class Country implements Serializable {
private String iso2;
@Column(name="countryName") private String name;
An embeddable object inherits the access type of its owning entity (note that you can override
that using the @Access annotation).
The Person entity has two component properties, homeAddress and bornIn. homeAddress
property has not been annotated, but Hibernate will guess that it is a persistent component by
looking for the @Embeddable annotation in the Address class. We also override the mapping of a
column name (to bornCountryName) with the @Embedded and @AttributeOverride annotations
for each mapped attribute of Country. As you can see, Country is also a nested component
of Address, again using auto-detection by Hibernate and JPA defaults. Overriding columns of
embedded objects of embedded objects is through dotted expressions.
@Embedded
@AttributeOverrides( {
@AttributeOverride(name="city", column = @Column(name="fld_city") ),
@AttributeOverride(name="nationality.iso2", column = @Column(name="nat_Iso2") ),
@AttributeOverride(name="nationality.name", column = @Column(name="nat_CountryName") )
//nationality columns in homeAddress are overridden
} )
102
Embedded objects (aka components)
Address homeAddress;
Hibernate Annotations supports something that is not explicitly supported by the JPA specification.
You can annotate a embedded object with the @MappedSuperclass annotation to make the
superclass properties persistent (see @MappedSuperclass for more informations).
You can also use association annotations in an embeddable object (ie @OneToOne,
@ManyToOne, @OneToMany or @ManyToMany). To override the association columns you can use
@AssociationOverride.
If you want to have the same embeddable object type twice in the same entity, the column name
defaulting will not work as several embedded objects would share the same set of columns. In
plain JPA, you need to override at least one set of columns. Hibernate, however, allows you to
enhance the default naming mechanism through the NamingStrategy interface. You can write a
strategy that prevent name clashing in such a situation. DefaultComponentSafeNamingStrategy
is an example of this.
If a property of the embedded object points back to the owning entity, annotate it with the @Parent
annotation. Hibernate will make sure this property is properly loaded with the entity reference.
<component
name="propertyName"
class="className"
insert="true|false"
update="true|false"
access="field|property|ClassName"
lazy="true|false"
optimistic-lock="true|false"
unique="true|false"
node="element-name|."
>
<property ...../>
<many-to-one .... />
........
</component>
103
Chapter 5. Basic O/R Mapping
access (optional - defaults to property): the strategy Hibernate uses for accessing the
property value.
lazy (optional - defaults to false): specifies that this component should be fetched lazily
when the instance variable is first accessed. It requires build-time bytecode instrumentation.
optimistic-lock (optional - defaults to true): specifies that updates to this component
either do or do not require acquisition of the optimistic lock. It determines if a version
increment should occur when this property is dirty.
unique (optional - defaults to false): specifies that a unique constraint exists upon all
mapped columns of the component.
The child <property> tags map properties of the child class to table columns.
The <component> element allows a <parent> subelement that maps a property of the component
class as a reference back to the containing entity.
Java is a language supporting polymorphism: a class can inherit from another. Several strategies
are possible to persist a class hierarchy:
• Single table per class hierarchy strategy: a single table hosts all the instances of a class
hierarchy
• Joined subclass strategy: one table per class and subclass is present and each table persist the
properties specific to a given subclass. The state of the entity is then stored in its corresponding
class table and all its superclasses
• Table per class strategy: one table per concrete class and subclass is present and each table
persist the properties of the class and its superclasses. The state of the entity is then stored
entirely in the dedicated table for its class.
With this approach the properties of all the subclasses in a given mapped class hierarchy are
stored in a single table.
Each subclass declares its own persistent properties and subclasses. Version and id properties
are assumed to be inherited from the root class. Each subclass in a hierarchy must define a unique
discriminator value. If this is not specified, the fully qualified Java class name is used.
@Entity
104
Inheritance strategy
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(
name="planetype",
discriminatorType=DiscriminatorType.STRING
)
@DiscriminatorValue("Plane")
public class Plane { ... }
@Entity
@DiscriminatorValue("A320")
public class A320 extends Plane { ... }
<subclass
name="ClassName"
discriminator-value="discriminator_value"
proxy="ProxyInterface"
lazy="true|false"
dynamic-update="true|false"
dynamic-insert="true|false"
entity-name="EntityName"
node="element-name"
extends="SuperclassName">
For information about inheritance mappings see Chapter 10, Inheritance mapping.
5.1.6.1.1. Discriminator
Use the @DiscriminatorColumn to define the discriminator column as well as the discriminator
type.
105
Chapter 5. Basic O/R Mapping
Note
The enum DiscriminatorTypeused in
javax.persitence.DiscriminatorColumn only contains the values STRING,
CHAR and INTEGER which means that not all Hibernate supported types are
available via the @DiscriminatorColumn annotation.
You can also use @DiscriminatorFormula to express in SQL a virtual discriminator column. This
is particularly useful when the discriminator value can be extracted from one or more columns of
the table. Both @DiscriminatorColumn and @DiscriminatorFormula are to be set on the root
entity (once per persisted hierarchy).
Tip
There is also a @org.hibernate.annotations.ForceDiscriminator annotation
which is deprecated since version 3.6. Use @DiscriminatorOptions instead.
Finally, use @DiscriminatorValue on each class of the hierarchy to specify the value stored in
the discriminator column for a given entity. If you do not set @DiscriminatorValue on a class,
the fully qualified class name is used.
@Entity
@Inheritance(strategy=InheritanceType.SINGLE_TABLE)
@DiscriminatorColumn(
name="planetype",
discriminatorType=DiscriminatorType.STRING
)
@DiscriminatorValue("Plane")
public class Plane { ... }
@Entity
@DiscriminatorValue("A320")
public class A320 extends Plane { ... }
In hbm.xml, the <discriminator> element is used to define the discriminator column or formula:
106
Inheritance strategy
<discriminator
column="discriminator_column"
type="discriminator_type"
force="true|false"
insert="true|false"
Actual values of the discriminator column are specified by the discriminator-value attribute of
the <class> and <subclass> elements.
The formula attribute allows you to declare an arbitrary SQL expression that will be used to
evaluate the type of a row. For example:
<discriminator
formula="case when CLASS_TYPE in ('a', 'b', 'c') then 0 else 1 end"
type="integer"/>
Each subclass can also be mapped to its own table. This is called the table-per-subclass mapping
strategy. An inherited state is retrieved by joining with the table of the superclass. A discriminator
column is not required for this mapping strategy. Each subclass must, however, declare a table
column holding the object identifier. The primary key of this table is also a foreign key to the
superclass table and described by the @PrimaryKeyJoinColumns or the <key> element.
@Entity @Table(name="CATS")
@Inheritance(strategy=InheritanceType.JOINED)
public class Cat implements Serializable {
@Id @GeneratedValue(generator="cat-uuid")
@GenericGenerator(name="cat-uuid", strategy="uuid")
String getId() { return id; }
...
}
107
Chapter 5. Basic O/R Mapping
@Entity @Table(name="DOMESTIC_CATS")
@PrimaryKeyJoinColumn(name="CAT")
public class DomesticCat extends Cat {
public String getName() { return name; }
}
Note
The table name still defaults to the non qualified class name. Also if
@PrimaryKeyJoinColumn is not set, the primary key / foreign key columns are
assumed to have the same names as the primary key columns of the primary table
of the superclass.
<joined-subclass
name="ClassName"
table="tablename"
proxy="ProxyInterface"
lazy="true|false"
dynamic-update="true|false"
dynamic-insert="true|false"
schema="schema"
catalog="catalog"
extends="SuperclassName"
persister="ClassName"
subselect="SQL expression"
entity-name="EntityName"
node="element-name">
Use the <key> element to declare the primary key / foreign key column. The mapping at the start
of the chapter would then be re-written as:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
108
Inheritance strategy
<hibernate-mapping package="eg">
<class name="eg.Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
For information about inheritance mappings see Chapter 10, Inheritance mapping.
A third option is to map only the concrete classes of an inheritance hierarchy to tables. This
is called the table-per-concrete-class strategy. Each table defines all persistent states of the
class, including the inherited state. In Hibernate, it is not necessary to explicitly map such
inheritance hierarchies. You can map each class as a separate entity root. However, if you wish
use polymorphic associations (e.g. an association to the superclass of your hierarchy), you need
to use the union subclass mapping.
@Entity
@Inheritance(strategy = InheritanceType.TABLE_PER_CLASS)
public class Flight implements Serializable { ... }
Or in hbm.xml:
<union-subclass
name="ClassName"
table="tablename"
109
Chapter 5. Basic O/R Mapping
proxy="ProxyInterface"
lazy="true|false"
dynamic-update="true|false"
dynamic-insert="true|false"
schema="schema"
catalog="catalog"
extends="SuperclassName"
abstract="true|false"
persister="ClassName"
subselect="SQL expression"
entity-name="EntityName"
node="element-name">
For information about inheritance mappings see Chapter 10, Inheritance mapping.
This is sometimes useful to share common properties through a technical or a business superclass
without including it as a regular mapped entity (ie no specific table for this entity). For that purpose
you can map them as @MappedSuperclass.
@MappedSuperclass
public class BaseEntity {
@Basic
@Temporal(TemporalType.TIMESTAMP)
public Date getLastUpdate() { ... }
public String getLastUpdater() { ... }
...
}
In database, this hierarchy will be represented as an Order table having the id, lastUpdate and
lastUpdater columns. The embedded superclass property mappings are copied into their entity
subclasses. Remember that the embeddable superclass is not the root of the hierarchy though.
110
Inheritance strategy
Note
Properties from superclasses not mapped as @MappedSuperclass are ignored.
Note
The default access type (field or methods) is used, unless you use the @Access
annotation.
Note
The same notion can be applied to @Embeddable objects to persist properties from
their superclasses. You also need to use @MappedSuperclass to do that (this
should not be considered as a standard EJB3 feature though)
Note
It is allowed to mark a class as @MappedSuperclass in the middle of the mapped
inheritance hierarchy.
Note
Any class in the hierarchy non annotated with @MappedSuperclass nor @Entity
will be ignored.
You can override columns defined in entity superclasses at the root entity level using the
@AttributeOverride annotation.
@MappedSuperclass
public class FlyingObject implements Serializable {
@Transient
public int getMetricAltitude() {
return metricAltitude;
}
@ManyToOne
public PropulsionType getPropulsion() {
111
Chapter 5. Basic O/R Mapping
return metricAltitude;
}
...
}
@Entity
@AttributeOverride( name="altitude", column = @Column(name="fld_altitude") )
@AssociationOverride(
name="propulsion",
joinColumns = @JoinColumn(name="fld_propulsion_fk")
)
public class Plane extends FlyingObject {
...
}
The altitude property will be persisted in an fld_altitude column of table Plane and the
propulsion association will be materialized in a fld_propulsion_fk foreign key column.
In hbm.xml, simply map the properties of the superclass in the <class> element of the entity that
needs to inherit them.
While not recommended for a fresh schema, some legacy databases force your to map a single
entity on several tables.
@Entity
@Table(name="MainCat")
@SecondaryTables({
@SecondaryTable(name="Cat1", pkJoinColumns={
@PrimaryKeyJoinColumn(name="cat_id", referencedColumnName="id")
),
@SecondaryTable(name="Cat2", uniqueConstraints={@UniqueConstraint(columnNames={"storyPart2"})})
})
public class Cat implements Serializable {
@Id @GeneratedValue
public Integer getId() {
return id;
}
112
Inheritance strategy
@Column(table="Cat1")
public String getStoryPart1() {
return storyPart1;
}
@Column(table="Cat2")
public String getStoryPart2() {
return storyPart2;
}
}
In this example, name will be in MainCat. storyPart1 will be in Cat1 and storyPart2 will be in
Cat2. Cat1 will be joined to MainCat using the cat_id as a foreign key, and Cat2 using id (ie
the same column name, the MainCat id column has). Plus a unique constraint on storyPart2
has been set.
• fetch: If set to JOIN, the default, Hibernate will use an inner join to retrieve a secondary table
defined by a class or its superclasses and an outer join for a secondary table defined by a
subclass. If set to SELECT then Hibernate will use a sequential select for a secondary table
defined on a subclass, which will be issued only if a row turns out to represent an instance of
the subclass. Inner joins will still be used to retrieve a secondary defined by the class and its
superclasses.
• inverse: If true, Hibernate will not try to insert or update the properties defined by this join.
Default to false.
• optional: If enabled (the default), Hibernate will insert a row only if the properties defined by
this join are non-null and will always use an outer join to retrieve the properties.
• foreignKey: defines the Foreign Key name of a secondary table pointing back to the primary
table.
Make sure to use the secondary table name in the appliesto property
@Entity
@Table(name="MainCat")
@SecondaryTable(name="Cat1")
@org.hibernate.annotations.Table(
appliesTo="Cat1",
fetch=FetchMode.SELECT,
optional=true)
public class Cat implements Serializable {
113
Chapter 5. Basic O/R Mapping
@Id @GeneratedValue
public Integer getId() {
return id;
}
@Column(table="Cat1")
public String getStoryPart1() {
return storyPart1;
}
@Column(table="Cat2")
public String getStoryPart2() {
return storyPart2;
}
}
<join
table="tablename"
schema="owner"
catalog="catalog"
fetch="join|select"
inverse="true|false"
optional="true|false">
114
Mapping one to one and one to many associations
inverse (optional - defaults to false): if enabled, Hibernate will not insert or update the
properties defined by this join.
optional (optional - defaults to false): if enabled, Hibernate will insert a row only if the
properties defined by this join are non-null. It will always use an outer join to retrieve the
properties.
For example, address information for a person can be mapped to a separate table while preserving
value type semantics for all properties:
<class name="Person"
table="PERSON">
<join table="ADDRESS">
<key column="ADDRESS_ID"/>
<property name="address"/>
<property name="zip"/>
<property name="country"/>
</join>
...
This feature is often only useful for legacy data models. We recommend fewer tables than classes
and a fine-grained domain model. However, it is useful for switching between inheritance mapping
strategies in a single hierarchy, as explained later.
To link one entity to an other, you need to map the association property as a to one association.
In the relational model, you can either use a foreign key or an association table, or (a bit less
common) share the same primary key value between the two entities.
@ManyToOne and @OneToOne have a parameter named targetEntity which describes the target
entity name. You usually don't need this parameter since the default value (the type of the property
that stores the association) is good in almost all cases. However this is useful when you want to
use interfaces as the return type instead of the regular entity.
Setting a value of the cascade attribute to any meaningful value other than nothing will propagate
certain operations to the associated object. The meaningful values are divided into three
categories.
115
Chapter 5. Basic O/R Mapping
By default, single point associations are eagerly fetched in JPA 2. You can mark it as lazily
fetched by using @ManyToOne(fetch=FetchType.LAZY) in which case Hibernate will proxy the
association and load it when the state of the associated entity is reached. You can force Hibernate
not to use a proxy by using @LazyToOne(NO_PROXY). In this case, the property is fetched lazily
when the instance variable is first accessed. This requires build-time bytecode instrumentation.
lazy="false" specifies that the association will always be eagerly fetched.
With the default JPA options, single-ended associations are loaded with a subsequent select if
set to LAZY, or a SQL JOIN is used for EAGER associations. You can however adjust the fetching
strategy, ie how data is fetched by using @Fetch. FetchMode can be SELECT (a select is triggered
when the association needs to be loaded) or JOIN (use a SQL JOIN to load the association while
loading the owner entity). JOIN overrides any lazy attribute (an association loaded through a JOIN
strategy cannot be lazy).
• @OneToOne if only a single entity can point to the the target entity
and a foreign key in one table is referencing the primary key column(s) of the target table.
@Entity
public class Flight implements Serializable {
@ManyToOne( cascade = {CascadeType.PERSIST, CascadeType.MERGE} )
@JoinColumn(name="COMP_ID")
public Company getCompany() {
return company;
}
...
}
The @JoinColumn attribute is optional, the default value(s) is the concatenation of the name of
the relationship in the owner side, _ (underscore), and the name of the primary key column in the
owned side. In this example company_id because the property name is company and the column
id of Company is id.
@Entity
public class Flight implements Serializable {
@ManyToOne( cascade = {CascadeType.PERSIST, CascadeType.MERGE}, targetEntity=CompanyImpl.class )
@JoinColumn(name="COMP_ID")
public Company getCompany() {
return company;
116
Mapping one to one and one to many associations
}
...
}
You can also map a to one association through an association table. This association table
described by the @JoinTable annotation will contains a foreign key referencing back the entity
table (through @JoinTable.joinColumns) and a a foreign key referencing the target entity table
(through @JoinTable.inverseJoinColumns).
@Entity
public class Flight implements Serializable {
@ManyToOne( cascade = {CascadeType.PERSIST, CascadeType.MERGE} )
@JoinTable(name="Flight_Company",
joinColumns = @JoinColumn(name="FLIGHT_ID"),
inverseJoinColumns = @JoinColumn(name="COMP_ID")
)
public Company getCompany() {
return company;
}
...
}
Note
You can use a SQL fragment to simulate a physical join column using the
@JoinColumnOrFormula / @JoinColumnOrformulas annotations (just like you can
use a SQL fragment to simulate a property column via the @Formula annotation).
@Entity
public class Ticket implements Serializable {
@ManyToOne
@JoinColumnOrFormula(formula="(firstname + ' ' + lastname)")
public Person getOwner() {
return person;
}
...
}
117
Chapter 5. Basic O/R Mapping
When Hibernate cannot resolve the association because the expected associated element is not in
database (wrong id on the association column), an exception is raised. This might be inconvenient
for legacy and badly maintained schemas. You can ask Hibernate to ignore such elements instead
of raising an exception using the @NotFound annotation.
@Entity
public class Child {
...
@ManyToOne
@NotFound(action=NotFoundAction.IGNORE)
public Parent getParent() { ... }
...
}
Sometimes you want to delegate to your database the deletion of cascade when a given entity is
deleted. In this case Hibernate generates a cascade delete constraint at the database level.
@Entity
public class Child {
...
@ManyToOne
@OnDelete(action=OnDeleteAction.CASCADE)
public Parent getParent() { ... }
...
}
Foreign key constraints, while generated by Hibernate, have a fairly unreadable name. You can
override the constraint name using @ForeignKey.
@Entity
public class Child {
...
@ManyToOne
@ForeignKey(name="FK_PARENT")
public Parent getParent() { ... }
...
}
alter table Child add constraint FK_PARENT foreign key (parent_id) references Parent
118
Mapping one to one and one to many associations
Sometimes, you want to link one entity to an other not by the target entity primary key but
by a different unique key. You can achieve that by referencing the unique key column(s) in
@JoinColumn.referenceColumnName.
@Entity
class Person {
@Id Integer personNumber;
String firstName;
@Column(name="I")
String initial;
String lastName;
}
@Entity
class Home {
@ManyToOne
@JoinColumns({
@JoinColumn(name="first_name", referencedColumnName="firstName"),
@JoinColumn(name="init", referencedColumnName="I"),
@JoinColumn(name="last_name", referencedColumnName="lastName"),
})
Person owner
}
In hbm.xml, mapping an association is similar. The main difference is that a @OneToOne is mapped
as <many-to-one unique="true"/>, let's dive into the subject.
<many-to-one
name="propertyName"
column="column_name"
class="ClassName"
cascade="cascade_style"
fetch="join|select"
update="true|false"
insert="true|false"
property-ref="propertyNameFromAssociatedClass"
access="field|property|ClassName"
unique="true|false"
not-null="true|false"
optimistic-lock="true|false"
lazy="proxy|no-proxy|false"
not-found="ignore|exception"
entity-name="EntityName"
119
Chapter 5. Basic O/R Mapping
node="element-name|@attribute-name|element/@attribute|."
embed-xml="true|false"
index="index_name"
unique_key="unique_key_id"
foreign-key="foreign_key_name"
/>
Setting a value of the cascade attribute to any meaningful value other than none will propagate
certain operations to the associated object. The meaningful values are divided into three
categories. First, basic operations, which include: persist, merge, delete, save-update,
evict, replicate, lock and refresh; second, special values: delete-orphan; and third,all
120
Mapping one to one and one to many associations
The property-ref attribute should only be used for mapping legacy data where a foreign key
refers to a unique key of the associated table other than the primary key. This is a complicated
and confusing relational model. For example, if the Product class had a unique serial number
that is not the primary key. The unique attribute controls Hibernate's DDL generation with the
SchemaExport tool.
If the referenced unique key comprises multiple properties of the associated entity, you should
map the referenced properties inside a named <properties> element.
If the referenced unique key is the property of a component, you can specify a property path:
The second approach is to ensure an entity and its associated entity share the same primary key.
In this case the primary key column is also a foreign key and there is no extra column. These
associations are always one to one.
@Entity
public class Body {
@Id
public Long getId() { return id; }
121
Chapter 5. Basic O/R Mapping
@OneToOne(cascade = CascadeType.ALL)
@MapsId
public Heart getHeart() {
return heart;
}
...
}
@Entity
public class Heart {
@Id
public Long getId() { ...}
}
Note
Many people got confused by these primary key based one to one associations.
They can only be lazily loaded if Hibernate knows that the other side of the
association is always present. To indicate to Hibernate that it is the case, use
@OneToOne(optional=false).
<one-to-one
name="propertyName"
class="ClassName"
cascade="cascade_style"
constrained="true|false"
fetch="join|select"
property-ref="propertyNameFromAssociatedClass"
access="field|property|ClassName"
lazy="proxy|no-proxy|false"
entity-name="EntityName"
node="element-name|@attribute-name|element/@attribute|."
embed-xml="true|false"
foreign-key="foreign_key_name"
/>
122
Mapping one to one and one to many associations
constrained (optional): specifies that a foreign key constraint on the primary key of the
mapped table and references the table of the associated class. This option affects the order
in which save() and delete() are cascaded, and determines whether the association can
be proxied. It is also used by the schema export tool.
fetch (optional - defaults to select): chooses between outer-join fetching or sequential
select fetching.
property-ref (optional): the name of a property of the associated class that is joined to the
primary key of this class. If not specified, the primary key of the associated class is used.
access (optional - defaults to property): the strategy Hibernate uses for accessing the
property value.
formula (optional): almost all one-to-one associations map to the primary key of the owning
entity. If this is not the case, you can specify another column, columns or expression to join
on using an SQL formula. See org.hibernate.test.onetooneformula for an example.
lazy (optional - defaults to proxy): by default, single point associations are proxied.
lazy="no-proxy" specifies that the property should be fetched lazily when the
instance variable is first accessed. It requires build-time bytecode instrumentation.
lazy="false" specifies that the association will always be eagerly fetched. Note that
if constrained="false", proxying is impossible and Hibernate will eagerly fetch the
association.
entity-name (optional): the entity name of the associated class.
Primary key associations do not need an extra table column. If two rows are related by the
association, then the two table rows share the same primary key value. To relate two objects by
a primary key association, ensure that they are assigned the same identifier value.
For a primary key association, add the following mappings to Employee and Person respectively:
Ensure that the primary keys of the related rows in the PERSON and EMPLOYEE tables are
equal. You use a special Hibernate identifier generation strategy called foreign:
123
Chapter 5. Basic O/R Mapping
</class>
A newly saved instance of Person is assigned the same primary key value as the Employee
instance referred with the employee property of that Person.
5.1.8. Natural-id
Although we recommend the use of surrogate keys as primary keys, you should try to identify
natural keys for all entities. A natural key is a property or combination of properties that is unique
and non-null. It is also immutable. Map the properties of the natural key as @NaturalId or map
them inside the <natural-id> element. Hibernate will generate the necessary unique key and
nullability constraints and, as a result, your mapping will be more self-documenting.
@Entity
public class Citizen {
@Id
@GeneratedValue
private Integer id;
private String firstname;
private String lastname;
@NaturalId
@ManyToOne
private State state;
@NaturalId
private String ssn;
...
}
Or in XML,
<natural-id mutable="true|false"/>
<property ... />
<many-to-one ... />
......
</natural-id>
It is recommended that you implement equals() and hashCode() to compare the natural key
properties of the entity.
This mapping is not intended for use with entities that have natural primary keys.
124
Any
• mutable (optional - defaults to false): by default, natural identifier properties are assumed to
be immutable (constant).
5.1.9. Any
There is one more type of property mapping. The @Any mapping defines a polymorphic association
to classes from multiple tables. This type of mapping requires more than one column. The first
column contains the type of the associated entity. The remaining columns contain the identifier. It
is impossible to specify a foreign key constraint for this kind of association. This is not the usual
way of mapping polymorphic associations and you should use this only in special cases. For
example, for audit logs, user session data, etc.
The @Any annotation describes the column holding the metadata information. To link the value of
the metadata information and an actual entity type, The @AnyDef and @AnyDefs annotations are
used. The metaType attribute allows the application to specify a custom type that maps database
column values to persistent classes that have identifier properties of the type specified by idType.
You must specify the mapping from values of the metaType to class names.
Note that @AnyDef can be mutualized and reused. It is recommended to place it as a package
metadata in this case.
//on a package
@AnyMetaDef( name="property"
idType = "integer",
metaType = "string",
metaValues = {
@MetaValue( value = "S", targetEntity = StringProperty.class ),
@MetaValue( value = "I", targetEntity = IntegerProperty.class )
} )
package org.hibernate.test.annotations.any;
//in a class
@Any( metaDef="property", metaColumn = @Column( name = "property_type" ), fetch=FetchType.EAGER )
@JoinColumn( name = "property_id" )
public Property getMainProperty() {
return mainProperty;
125
Chapter 5. Basic O/R Mapping
Note
<any
name="propertyName"
id-type="idtypename"
meta-type="metatypename"
cascade="cascade_style"
access="field|property|ClassName"
optimistic-lock="true|false"
>
<meta-value ... />
<meta-value ... />
.....
<column .... />
<column .... />
.....
</any>
126
Properties
5.1.10. Properties
The <properties> element allows the definition of a named, logical grouping of the properties
of a class. The most important use of the construct is that it allows a combination of properties
to be the target of a property-ref. It is also a convenient way to define a multi-column unique
constraint. For example:
<properties
name="logicalName"
insert="true|false"
update="true|false"
optimistic-lock="true|false"
unique="true|false"
>
<property ...../>
<many-to-one .... />
........
</properties>
name: the logical name of the grouping. It is not an actual property name.
insert: do the mapped columns appear in SQL INSERTs?
update: do the mapped columns appear in SQL UPDATEs?
optimistic-lock (optional - defaults to true): specifies that updates to these properties
either do or do not require acquisition of the optimistic lock. It determines if a version
increment should occur when these properties are dirty.
unique (optional - defaults to false): specifies that a unique constraint exists upon all
mapped columns of the component.
<class name="Person">
<id name="personNumber"/>
...
<properties name="name"
unique="true" update="false">
<property name="firstName"/>
<property name="initial"/>
<property name="lastName"/>
</properties>
</class>
You might have some legacy data association that refers to this unique key of the Person table,
instead of to the primary key:
127
Chapter 5. Basic O/R Mapping
<many-to-one name="owner"
class="Person" property-ref="name">
<column name="firstName"/>
<column name="initial"/>
<column name="lastName"/>
</many-to-one>
Note
@Entity
class Person {
@Id Integer personNumber;
String firstName;
@Column(name="I")
String initial;
String lastName;
}
@Entity
class Home {
@ManyToOne
@JoinColumns({
@JoinColumn(name="first_name", referencedColumnName="firstName"),
@JoinColumn(name="init", referencedColumnName="I"),
@JoinColumn(name="last_name", referencedColumnName="lastName"),
})
Person owner
}
The use of this outside the context of mapping legacy data is not recommended.
The hbm.xml structure has some specificities naturally not present when using annotations, let's
describe them briefly.
5.1.11.1. Doctype
All XML mappings should declare the doctype shown. The actual DTD can be found at the
URL above, in the directory hibernate-x.x.x/src/org/hibernate , or in hibernate3.jar.
Hibernate will always look for the DTD in its classpath first. If you experience lookups of the DTD
using an Internet connection, check the DTD declaration against the contents of your classpath.
128
Some hbm.xml specificities
5.1.11.1.1. EntityResolver
Hibernate will first attempt to resolve DTDs in its classpath. It does this is by registering a custom
org.xml.sax.EntityResolver implementation with the SAXReader it uses to read in the xml
files. This custom EntityResolver recognizes two different systemId namespaces:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-3.0.dtd" [
<!ENTITY types SYSTEM "classpath://your/domain/types.xml">
]>
<hibernate-mapping package="your.domain">
<class name="MyEntity">
<id name="id" type="my-custom-id-type">
...
</id>
<class>
&types;
</hibernate-mapping>
Where types.xml is a resource in the your.domain package and contains a custom typedef.
5.1.11.2. Hibernate-mapping
This element has several optional attributes. The schema and catalog attributes specify that
tables referred to in this mapping belong to the named schema and/or catalog. If they are
specified, tablenames will be qualified by the given schema and catalog names. If they are
missing, tablenames will be unqualified. The default-cascade attribute specifies what cascade
style should be assumed for properties and collections that do not specify a cascade attribute.
By default, the auto-import attribute allows you to use unqualified class names in the query
language.
<hibernate-mapping
schema="schemaName"
catalog="catalogName"
129
Chapter 5. Basic O/R Mapping
default-cascade="cascade_style"
default-access="field|property|ClassName"
default-lazy="true|false"
auto-import="true|false"
package="package.name"
/>
If you have two persistent classes with the same unqualified name, you should set auto-
import="false". An exception will result if you attempt to assign two classes to the same
"imported" name.
The hibernate-mapping element allows you to nest several persistent <class> mappings, as
shown above. It is, however, good practice (and expected by some tools) to map only a single
persistent class, or a single class hierarchy, in one mapping file and name it after the persistent
superclass. For example, Cat.hbm.xml, Dog.hbm.xml, or if using inheritance, Animal.hbm.xml.
5.1.11.3. Key
The <key> element is featured a few times within this guide. It appears anywhere the parent
mapping element defines a join to a new table that references the primary key of the original table.
It also defines the foreign key in the joined table:
<key
column="columnname"
on-delete="noaction|cascade"
property-ref="propertyName"
not-null="true|false"
update="true|false"
unique="true|false"
/>
130
Some hbm.xml specificities
column (optional): the name of the foreign key column. This can also be specified by nested
<column> element(s).
on-delete (optional - defaults to noaction): specifies whether the foreign key constraint has
database-level cascade delete enabled.
property-ref (optional): specifies that the foreign key refers to columns that are not the
primary key of the original table. It is provided for legacy data.
not-null (optional): specifies that the foreign key columns are not nullable. This is implied
whenever the foreign key is also part of the primary key.
update (optional): specifies that the foreign key should never be updated. This is implied
whenever the foreign key is also part of the primary key.
unique (optional): specifies that the foreign key should have a unique constraint. This is
implied whenever the foreign key is also the primary key.
For systems where delete performance is important, we recommend that all keys should be
defined on-delete="cascade". Hibernate uses a database-level ON CASCADE DELETE constraint,
instead of many individual DELETE statements. Be aware that this feature bypasses Hibernate's
usual optimistic locking strategy for versioned data.
The not-null and update attributes are useful when mapping a unidirectional one-to-many
association. If you map a unidirectional one-to-many association to a non-nullable foreign key,
you must declare the key column using <key not-null="true">.
5.1.11.4. Import
If your application has two persistent classes with the same name, and you do not want to specify
the fully qualified package name in Hibernate queries, classes can be "imported" explicitly, rather
than relying upon auto-import="true". You can also import classes and interfaces that are not
explicitly mapped:
<import
class="ClassName"
rename="ShortName"
/>
131
Chapter 5. Basic O/R Mapping
Note
This feature is unique to hbm.xml and is not supported in annotations.
<column
name="column_name"
length="N"
precision="N"
scale="N"
not-null="true|false"
unique="true|false"
unique-key="multicolumn_unique_key_name"
index="index_name"
sql-type="sql_type_name"
check="SQL expression"
default="SQL expression"
read="SQL expression"
write="SQL expression"/>
<formula>SQL expression</formula>
Most of the attributes on column provide a means of tailoring the DDL during automatic schema
generation. The read and write attributes allow you to specify custom SQL that Hibernate will
use to access the column's value. For more on this, see the discussion of column read and write
expressions.
The column and formula elements can even be combined within the same property or association
mapping to express, for example, exotic join conditions.
132
Basic value types
An entity exists independently of any other objects holding references to the entity. Contrast this
with the usual Java model, where an unreferenced object is garbage collected. Entities must be
explicitly saved and deleted. Saves and deletions, however, can be cascaded from a parent entity
to its children. This is different from the ODMG model of object persistence by reachability and
corresponds more closely to how application objects are usually used in large systems. Entities
support circular and shared references. They can also be versioned.
An entity's persistent state consists of references to other entities and instances of value types.
Values are primitives: collections (not what is inside a collection), components and certain
immutable objects. Unlike entities, values in particular collections and components, are persisted
and deleted by reachability. Since value objects and primitives are persisted and deleted along
with their containing entity, they cannot be independently versioned. Values have no independent
identity, so they cannot be shared by two entities or collections.
Until now, we have been using the term "persistent class" to refer to entities. We will continue to
do that. Not all user-defined classes with a persistent state, however, are entities. A component is
a user-defined class with value semantics. A Java property of type java.lang.String also has
value semantics. Given this definition, all types (classes) provided by the JDK have value type
semantics in Java, while user-defined types can be mapped with entity or value type semantics.
This decision is up to the application developer. An entity class in a domain model will normally
have shared references to a single instance of that class, while composition or aggregation usually
translates to a value type.
The challenge is to map the Java type system, and the developers' definition of entities and
value types, to the SQL/database type system. The bridge between both systems is provided
by Hibernate. For entities, <class>, <subclass> and so on are used. For value types we use
<property>, <component>etc., that usually have a type attribute. The value of this attribute is
the name of a Hibernate mapping type. Hibernate provides a range of mappings for standard
JDK value types out of the box. You can write your own mapping types and implement your own
custom conversion strategies.
With the exception of collections, all built-in Hibernate types support null semantics.
integer, long, short, float, double, character, byte, boolean, yes_no, true_false
Type mappings from Java primitives or wrapper classes to appropriate (vendor-specific) SQL
column types. boolean, yes_no and true_false are all alternative encodings for a Java
boolean or java.lang.Boolean.
string
A type mapping from java.lang.String to VARCHAR (or Oracle VARCHAR2).
133
Chapter 5. Basic O/R Mapping
calendar, calendar_date
Type mappings from java.util.Calendar to SQL types TIMESTAMP and DATE (or equivalent).
big_decimal, big_integer
Type mappings from java.math.BigDecimal and java.math.BigInteger to NUMERIC (or
Oracle NUMBER).
class
A type mapping from java.lang.Class to VARCHAR (or Oracle VARCHAR2). A Class is mapped
to its fully qualified name.
binary
Maps byte arrays to an appropriate SQL binary type.
text
Maps long Java strings to a SQL CLOB or TEXT type.
serializable
Maps serializable Java types to an appropriate SQL binary type. You can also indicate the
Hibernate type serializable with the name of a serializable Java class or interface that does
not default to a basic type.
clob, blob
Type mappings for the JDBC classes java.sql.Clob and java.sql.Blob. These types can
be inconvenient for some applications, since the blob or clob object cannot be reused outside
of a transaction. Driver support is patchy and inconsistent.
Unique identifiers of entities and collections can be of any basic type except binary, blob and
clob. Composite identifiers are also allowed. See below for more information.
134
Custom value types
It is relatively easy for developers to create their own value types. For example, you might want
to persist properties of type java.lang.BigInteger to VARCHAR columns. Hibernate does not
provide a built-in type for this. Custom types are not limited to mapping a property, or collection
element, to a single table column. So, for example, you might have a Java property getName()/
setName() of type java.lang.String that is persisted to the columns FIRST_NAME, INITIAL,
SURNAME.
You can even supply parameters to a UserType in the mapping file. To do this, your UserType must
implement the org.hibernate.usertype.ParameterizedType interface. To supply parameters
to your custom type, you can use the <type> element in your mapping files.
<property name="priority">
<type name="com.mycompany.usertypes.DefaultValueIntegerType">
<param name="default">0</param>
</type>
</property>
The UserType can now retrieve the value for the parameter named default from the Properties
object passed to it.
If you regularly use a certain UserType, it is useful to define a shorter name for it. You can do this
using the <typedef> element. Typedefs assign a name to a custom type, and can also contain a
list of default parameter values if the type is parameterized.
135
Chapter 5. Basic O/R Mapping
Even though Hibernate's rich range of built-in types and support for components means you will
rarely need to use a custom type, it is considered good practice to use custom types for non-
entity classes that occur frequently in your application. For example, a MonetaryAmount class is a
good candidate for a CompositeUserType, even though it could be mapped as a component. One
reason for this is abstraction. With a custom type, your mapping documents would be protected
against changes to the way monetary values are represented.
Note
136
SQL quoted identifiers
never (the default): the given property value is not generated within the database.
insert: the given property value is generated on insert, but is not regenerated on subsequent
updates. Properties like created-date fall into this category. Even though version and timestamp
properties can be marked as generated, this option is not available.
@Entity
137
Chapter 5. Basic O/R Mapping
class CreditCard {
@Column(name="credit_card_num")
@ColumnTransformer(
read="decrypt(credit_card_num)",
write="encrypt(?)")
public String getCreditCardNumber() { return creditCardNumber; }
public void setCreditCardNumber(String number) { this.creditCardNumber = number; }
private String creditCardNumber;
}
or in XML
<property name="creditCardNumber">
<column
name="credit_card_num"
read="decrypt(credit_card_num)"
write="encrypt(?)"/>
</property>
Note
You can use the plural form @ColumnTransformers if more than one columns need
to define either of these rules.
If a property uses more that one column, you must use the forColumn attribute to specify which
column, the expressions are targeting.
@Entity
class User {
@Type(type="com.acme.type.CreditCardType")
@Columns( {
@Column(name="credit_card_num"),
@Column(name="exp_date") } )
@ColumnTransformer(
forColumn="credit_card_num",
read="decrypt(credit_card_num)",
write="encrypt(?)")
public CreditCard getCreditCard() { return creditCard; }
public void setCreditCard(CreditCard card) { this.creditCard = card; }
private CreditCard creditCard;
}
Hibernate applies the custom expressions automatically whenever the property is referenced in a
query. This functionality is similar to a derived-property formula with two differences:
• The property is backed by one or more columns that are exported as part of automatic schema
generation.
138
Auxiliary database objects
The write expression, if specified, must contain exactly one '?' placeholder for the value.
The first mode is to explicitly list the CREATE and DROP commands in the mapping file:
<hibernate-mapping>
...
<database-object>
<create>CREATE TRIGGER my_trigger ...</create>
<drop>DROP TRIGGER my_trigger</drop>
</database-object>
</hibernate-mapping>
The second mode is to supply a custom class that constructs the CREATE and DROP commands.
This custom class must implement the org.hibernate.mapping.AuxiliaryDatabaseObject
interface.
<hibernate-mapping>
...
<database-object>
<definition class="MyTriggerDefinition"/>
</database-object>
</hibernate-mapping>
Additionally, these database objects can be optionally scoped so that they only apply when certain
dialects are used.
<hibernate-mapping>
...
<database-object>
<definition class="MyTriggerDefinition"/>
<dialect-scope name="org.hibernate.dialect.Oracle9iDialect"/>
<dialect-scope name="org.hibernate.dialect.Oracle10gDialect"/>
</database-object>
</hibernate-mapping>
139
Chapter 5. Basic O/R Mapping
Note
140
Chapter 6.
Types
As an Object/Relational Mapping solution, Hibernate deals with both the Java and JDBC
representations of application data. An online catalog application, for example, most likely has
Product object with a number of attributes such as a sku, name, etc. For these individual
attributes, Hibernate must be able to read the values out of the database and write them
back. This 'marshalling' is the function of a Hibernate type, which is an implementation of the
org.hibernate.type.Type interface. In addition, a Hibernate type describes various aspects of
behavior of the Java type such as "how is equality checked?" or "how are values cloned?".
Important
A Hibernate type is neither a Java type nor a SQL datatype; it provides a information
about both.
When you encounter the term type in regards to Hibernate be aware that usage
might refer to the Java type, the SQL/JDBC type or the Hibernate type.
Hibernate categorizes types into two high-level groups: value types (see Section 6.1, “Value
types”) and entity types (see Section 6.2, “Entity types”).
6.1.1.1. java.lang.String
org.hibernate.type.StringType
Maps a string to the JDBC VARCHAR type. This is the standard mapping for a string if no
Hibernate type is specified.
Registered under string and java.lang.String in the type registry (see Section 6.5, “Type
registry”).
141
Chapter 6. Types
org.hibernate.type.MaterializedClob
Maps a string to a JDBC CLOB type
Registered under materialized_clob in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.TextType
Maps a string to a JDBC LONGVARCHAR type
Registered under text in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.CharacterType
Maps a char or java.lang.Character to a JDBC CHAR
Registered under char and java.lang.Character in the type registry (see Section 6.5, “Type
registry”).
org.hibernate.type.BooleanType
Maps a boolean to a JDBC BIT type
Registered under boolean and java.lang.Boolean in the type registry (see Section 6.5,
“Type registry”).
org.hibernate.type.NumericBooleanType
Maps a boolean to a JDBC INTEGER type as 0 = false, 1 = true
Registered under numeric_boolean in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.YesNoType
Maps a boolean to a JDBC CHAR type as ('N' | 'n') = false, ( 'Y' | 'y' ) = true
Registered under yes_no in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.TrueFalseType
Maps a boolean to a JDBC CHAR type as ('F' | 'f') = false, ( 'T' | 't' ) = true
Registered under true_false in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.ByteType
Maps a byte or java.lang.Byte to a JDBC TINYINT
Registered under byte and java.lang.Byte in the type registry (see Section 6.5, “Type
registry”).
142
Basic value types
org.hibernate.type.ShortType
Maps a short or java.lang.Short to a JDBC SMALLINT
Registered under short and java.lang.Short in the type registry (see Section 6.5, “Type
registry”).
org.hibernate.type.IntegerTypes
Maps an int or java.lang.Integer to a JDBC INTEGER
Registered under int and java.lang.Integerin the type registry (see Section 6.5, “Type
registry”).
org.hibernate.type.LongType
Maps a long or java.lang.Long to a JDBC BIGINT
Registered under long and java.lang.Long in the type registry (see Section 6.5, “Type
registry”).
org.hibernate.type.FloatType
Maps a float or java.lang.Float to a JDBC FLOAT
Registered under float and java.lang.Float in the type registry (see Section 6.5, “Type
registry”).
org.hibernate.type.DoubleType
Maps a double or java.lang.Double to a JDBC DOUBLE
Registered under double and java.lang.Double in the type registry (see Section 6.5, “Type
registry”).
6.1.1.10. java.math.BigInteger
org.hibernate.type.BigIntegerType
Maps a java.math.BigInteger to a JDBC NUMERIC
143
Chapter 6. Types
6.1.1.11. java.math.BigDecimal
org.hibernate.type.BigDecimalType
Maps a java.math.BigDecimal to a JDBC NUMERIC
org.hibernate.type.TimestampType
Maps a java.sql.Timestamp to a JDBC TIMESTAMP
6.1.1.13. java.sql.Time
org.hibernate.type.TimeType
Maps a java.sql.Time to a JDBC TIME
Registered under time and java.sql.Time in the type registry (see Section 6.5, “Type
registry”).
6.1.1.14. java.sql.Date
org.hibernate.type.DateType
Maps a java.sql.Date to a JDBC DATE
Registered under date and java.sql.Date in the type registry (see Section 6.5, “Type
registry”).
6.1.1.15. java.util.Calendar
org.hibernate.type.CalendarType
Maps a java.util.Calendar to a JDBC TIMESTAMP
org.hibernate.type.CalendarDateType
Maps a java.util.Calendar to a JDBC DATE
Registered under calendar_date in the type registry (see Section 6.5, “Type registry”).
6.1.1.16. java.util.Currency
org.hibernate.type.CurrencyType
Maps a java.util.Currency to a JDBC VARCHAR (using the Currency code)
144
Basic value types
Registered under currency and java.util.Currency in the type registry (see Section 6.5,
“Type registry”).
6.1.1.17. java.util.Locale
org.hibernate.type.LocaleType
Maps a java.util.Locale to a JDBC VARCHAR (using the Locale code)
Registered under locale and java.util.Locale in the type registry (see Section 6.5, “Type
registry”).
6.1.1.18. java.util.TimeZone
org.hibernate.type.TimeZoneType
Maps a java.util.TimeZone to a JDBC VARCHAR (using the TimeZone ID)
Registered under timezone and java.util.TimeZone in the type registry (see Section 6.5,
“Type registry”).
6.1.1.19. java.net.URL
org.hibernate.type.UrlType
Maps a java.net.URL to a JDBC VARCHAR (using the external form)
Registered under url and java.net.URL in the type registry (see Section 6.5, “Type registry”).
6.1.1.20. java.lang.Class
org.hibernate.type.ClassType
Maps a java.lang.Class to a JDBC VARCHAR (using the Class name)
Registered under class and java.lang.Class in the type registry (see Section 6.5, “Type
registry”).
6.1.1.21. java.sql.Blob
org.hibernate.type.BlobType
Maps a java.sql.Blob to a JDBC BLOB
Registered under blob and java.sql.Blob in the type registry (see Section 6.5, “Type
registry”).
6.1.1.22. java.sql.Clob
org.hibernate.type.ClobType
Maps a java.sql.Clob to a JDBC CLOB
Registered under clob and java.sql.Clob in the type registry (see Section 6.5, “Type
registry”).
145
Chapter 6. Types
6.1.1.23. byte[]
org.hibernate.type.BinaryType
Maps a primitive byte[] to a JDBC VARBINARY
Registered under binary and byte[] in the type registry (see Section 6.5, “Type registry”).
org.hibernate.type.MaterializedBlobType
Maps a primitive byte[] to a JDBC BLOB
Registered under materialized_blob in the type registry (see Section 6.5, “Type registry”).
6.1.1.24. byte[]
org.hibernate.type.BinaryType
Maps a java.lang.Byte[] to a JDBC VARBINARY
Registered under wrapper-binary, Byte[] and java.lang.Byte[] in the type registry (see
Section 6.5, “Type registry”).
6.1.1.25. char[]
org.hibernate.type.CharArrayType
Maps a char[] to a JDBC VARCHAR
Registered under characters and char[] in the type registry (see Section 6.5, “Type
registry”).
6.1.1.26. char[]
org.hibernate.type.CharacterArrayType
Maps a java.lang.Character[] to a JDBC VARCHAR
6.1.1.27. java.util.UUID
org.hibernate.type.UUIDBinaryType
Maps a java.util.UUID to a JDBC BINARY
Registered under uuid-binary and java.util.UUID in the type registry (see Section 6.5,
“Type registry”).
org.hibernate.type.UUIDCharType
Maps a java.util.UUID to a JDBC CHAR (though VARCHAR is fine too for existing schemas)
Registered under uuid-char in the type registry (see Section 6.5, “Type registry”).
146
Composite types
org.hibernate.type.PostgresUUIDType
Maps a java.util.UUID to the PostgreSQL UUID data type (through Types#OTHER which is how
the PostgreSQL JDBC driver defines it).
Registered under pg-uuid in the type registry (see Section 6.5, “Type registry”).
6.1.1.28. java.io.Serializable
org.hibernate.type.SerializableType
Maps implementors of java.lang.Serializable to a JDBC VARBINARY
Unlike the other value types, there are multiple instances of this type. It gets registered
once under java.io.Serializable. Additionally it gets registered under the specific
java.io.Serializable implementation class names.
Note
The Java Persistence API calls these embedded types, while Hibernate
traditionally called them components. Just be aware that both terms are used and
mean the same thing in the scope of discussing Hibernate.
Components represent aggregations of values into a single Java type. For example, you might
have an Address class that aggregates street, city, state, etc information or a Name class that
aggregates the parts of a person's Name. In many ways a component looks exactly like an entity.
They are both (generally speaking) classes written specifically for the application. They both might
have references to other application-specific classes, as well as to collections and simple JDK
types. As discussed before, the only distinguishing factory is the fact that a component does not
own its own lifecycle nor does it define an identifier.
Important
It is critical understand that we mean the collection itself, not its contents. The
contents of the collection can in turn be basic, component or entity types (though
not collections), but the collection itself is owned.
147
Chapter 6. Types
correlate to rows in a table. Specifically they correlate to the row by means of a unique identifier.
Because of this unique identifier, entities exist independently and define their own lifecycle. As an
example, when we delete a Membership, both the User and Group entities remain.
Note
The main categorization was between entity types and value types. To review we said that entities,
by nature of their unique identifier, exist independently of other objects whereas values do not. An
application cannot "delete" a Product sku; instead, the sku is removed when the Product itself is
deleted (obviously you can update the sku of that Product to null to make it "go away", but even
there the access is done through the Product).
Nor can you define an association to that Product sku. You can define an association to Product
based on its sku, assuming sku is unique, but that is totally different.
TBC...
148
Custom types using org.hibernate.type.Type
for the exposed property type. In our example, the property type would be Money, which is the key
we would use to register our type in the registry:
public Object nullSafeGet(ResultSet rs, String[] names, SessionImplementor session, Object owner) throws SQLEx
assert names.length == 2;
BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check
Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check
return amount == null && currency == null
? null
: new Money( amount, currency );
}
public void nullSafeSet(PreparedStatement st, Object value, int index, boolean[] settable, SessionImplementor
throws SQLException {
if ( value == null ) {
BigDecimalType.INSTANCE.set( st, null, index );
CurrencyType.INSTANCE.set( st, null, index+1 );
}
else {
final Money money = (Money) value;
BigDecimalType.INSTANCE.set( st, money.getAmount(), index );
CurrencyType.INSTANCE.set( st, money.getCurrency(), index+1 );
}
}
...
}
149
Chapter 6. Types
Important
It is important that we registered the type before adding mappings.
Note
Both org.hibernate.usertype.UserType and
org.hibernate.usertype.CompositeUserType were originally added to isolate
user code from internal changes to the org.hibernate.type.Type interfaces.
public Object nullSafeGet(ResultSet rs, String[] names, Object owner) throws SQLException {
assert names.length == 2;
BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check
Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check
return amount == null && currency == null
? null
: new Money( amount, currency );
}
public void nullSafeSet(PreparedStatement st, Object value, int index) throws SQLException {
if ( value == null ) {
BigDecimalType.INSTANCE.set( st, null, index );
CurrencyType.INSTANCE.set( st, null, index+1 );
}
else {
final Money money = (Money) value;
150
Custom types using org.hibernate.usertype.CompositeUserType
...
}
There is not much difference between the org.hibernate.type.Type example and the
org.hibernate.usertype.UserType example, but that is only because of the snippets shown.
If you choose the org.hibernate.type.Type approach there are quite a few more methods you
would need to implement as compared to the org.hibernate.usertype.UserType.
151
Chapter 6. Types
public void setPropertyValue(Object component, int propertyIndex, Object value) throws HibernateException {
if ( component == null ) {
return;
}
public Object nullSafeGet(ResultSet rs, String[] names, SessionImplementor session, Object owner) throws SQLEx
assert names.length == 2;
BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check
Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check
return amount == null && currency == null
? null
: new Money( amount, currency );
}
public void nullSafeSet(PreparedStatement st, Object value, int index, SessionImplementor session) throws SQLE
if ( value == null ) {
BigDecimalType.INSTANCE.set( st, null, index );
CurrencyType.INSTANCE.set( st, null, index+1 );
}
else {
final Money money = (Money) value;
BigDecimalType.INSTANCE.set( st, money.getAmount(), index );
CurrencyType.INSTANCE.set( st, money.getCurrency(), index+1 );
}
}
...
}
152
Type registry
To register a new type or to override an existing type registration, applications would make
use of the registerTypeOverride method of the org.hibernate.cfg.Configuration class
when bootstrapping Hibernate. For example, lets say you want Hibernate to use your custom
SuperDuperStringType; during bootstrap you would call:
/**
* Get the names under which this type should be registered in the type registry.
*
* @return The keys under which to register this type.
*/
public String[] getRegistrationKeys();
153
154
Chapter 7.
Collection mapping
7.1. Persistent collections
Naturally Hibernate also allows to persist collections. These persistent collections can contain
almost any other Hibernate type, including: basic types, custom types, components and
references to other entities. The distinction between value and reference semantics is in this
context very important. An object in a collection might be handled with "value" semantics (its life
cycle fully depends on the collection owner), or it might be a reference to another entity with its
own life cycle. In the latter case, only the "link" between the two objects is considered to be a
state held by the collection.
Notice how in Example 7.2, “Collection mapping using @OneToMany and @JoinColumn” the
instance variable parts was initialized with an instance of HashSet. This is the best way to initialize
collection valued properties of newly instantiated (non-persistent) instances. When you make the
instance persistent, by calling persist(), Hibernate will actually replace the HashSet with an
instance of Hibernate's own implementation of Set. Be aware of the following error:
The persistent collections injected by Hibernate behave like HashMap, HashSet, TreeMap, TreeSet
or ArrayList, depending on the interface type.
Collections instances have the usual behavior of value types. They are automatically persisted
when referenced by a persistent object and are automatically deleted when unreferenced. If a
collection is passed from one persistent object to another, its elements might be moved from one
table to another. Two entities cannot share a reference to the same collection instance. Due to
the underlying relational model, collection-valued properties do not support null value semantics.
Hibernate does not distinguish between a null collection reference and an empty collection.
155
Chapter 7. Collection mapping
Note
Use persistent collections the same way you use ordinary Java collections.
However, ensure you understand the semantics of bidirectional associations (see
Section 7.3.2, “Bidirectional associations”).
@Entity
public class Product {
@Id
public String getSerialNumber() { return serialNumber; }
void setSerialNumber(String sn) { serialNumber = sn; }
@OneToMany
@JoinColumn(name="PART_ID")
public Set<Part> getParts() { return parts; }
void setParts(Set parts) { this.parts = parts; }
}
@Entity
public class Part {
...
}
Product describes a unidirectional relationship with Part using the join column PART_ID. In this
unidirectional one to many scenario you can also use a join table as seen in Example 7.3,
“Collection mapping using @OneToMany and @JoinTable”.
@Entity
public class Product {
156
How to map collections
@Id
public String getSerialNumber() { return serialNumber; }
void setSerialNumber(String sn) { serialNumber = sn; }
@OneToMany
@JoinTable(
name="PRODUCT_PARTS",
joinColumns = @JoinColumn( name="PRODUCT_ID"),
inverseJoinColumns = @JoinColumn( name="PART_ID")
)
public Set<Part> getParts() { return parts; }
void setParts(Set parts) { this.parts = parts; }
}
@Entity
public class Part {
...
}
Without describing any physical mapping (no @JoinColumn or @JoinTable), a unidirectional one
to many with join table is used. The table name is the concatenation of the owner table name,
_, and the other side table name. The foreign key name(s) referencing the owner table is the
concatenation of the owner table, _, and the owner primary key column(s) name. The foreign key
name(s) referencing the other side is the concatenation of the owner property name, _, and the
other side primary key column(s) name. A unique constraint is added to the foreign key referencing
the other side table to reflect the one to many.
Lets have a look now how collections are mapped using Hibernate mapping files. In this case the
first step is to chose the right mapping element. It depends on the type of interface. For example,
a <set> element is used for mapping properties of type Set.
<class name="Product">
<id name="serialNumber" column="productSerialNumber"/>
<set name="parts">
<key column="productSerialNumber" not-null="true"/>
<one-to-many class="Part"/>
</set>
</class>
In Example 7.4, “Mapping a Set using <set>” a one-to-many association links the Product and
Part entities. This association requires the existence of a foreign key column and possibly an
index column to the Part table. This mapping loses certain semantics of normal Java collections:
• An instance of the contained entity class cannot belong to more than one instance of the
collection.
• An instance of the contained entity class cannot appear at more than one value of the collection
index.
157
Chapter 7. Collection mapping
Looking closer at the used <one-to-many> tag we see that it has the following options.
<one-to-many
class="ClassName"
not-found="ignore|exception"
entity-name="EntityName"
node="element-name"
embed-xml="true|false"
/>
The <one-to-many> element does not need to declare any columns. Nor is it necessary to specify
the table name anywhere.
Warning
Apart from the <set> tag as shown in Example 7.4, “Mapping a Set using <set>”, there is also
<list>, <map>, <bag>, <array> and <primitive-array> mapping elements. The <map> element
is representative:
<map
name="propertyName"
table="table_name"
schema="schema_name"
lazy="true|extra|false"
inverse="true|false"
cascade="all|none|save-update|delete|all-delete-orphan|delete-orphan"
sort="unsorted|natural|comparatorClass"
order-by="column_name asc|desc"
158
How to map collections
fetch="join|select|subselect"
batch-size="N"
access="field|property|ClassName"
optimistic-lock="true|false"
mutable="true|false"
node="element-name|."
embed-xml="true|false"
>
159
Chapter 7. Collection mapping
After exploring the basic mapping of collections in the preceding paragraphs we will now focus
details like physical mapping considerations, indexed collections and collections of value types.
On the database level collection instances are distinguished by the foreign key of the entity that
owns the collection. This foreign key is referred to as the collection key column, or columns, of the
collection table. The collection key column is mapped by the @JoinColumn annotation respectively
the <key> XML element.
There can be a nullability constraint on the foreign key column. For most collections, this is implied.
For unidirectional one-to-many associations, the foreign key column is nullable by default, so you
may need to specify
@JoinColumn(nullable=false)
or
The foreign key constraint can use ON DELETE CASCADE. In XML this can be expressed via:
@OnDelete(action=OnDeleteAction.CASCADE)
See Section 5.1.11.3, “Key” for more information about the <key> element.
In the following paragraphs we have a closer at the indexed collections List and Map how the
their index can be mapped in Hibernate.
7.2.2.1. Lists
160
Indexed collections
@Entity
public class Customer {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@OneToMany(mappedBy="customer")
@OrderBy("number")
public List<Order> getOrders() { return orders; }
public void setOrders(List<Order> orders) { this.orders = orders; }
private List<Order> orders;
}
@Entity
public class Order {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@ManyToOne
public Customer getCustomer() { return customer; }
public void setCustomer(Customer customer) { this.customer = customer; }
private Customer number;
}
-- Table schema
|-------------| |----------|
| Order | | Customer |
|-------------| |----------|
| id | | id |
| number | |----------|
| customer_id |
|-------------|
161
Chapter 7. Collection mapping
@Entity
public class Customer {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@OneToMany(mappedBy="customer")
@OrderColumn(name="orders_index")
public List<Order> getOrders() { return orders; }
public void setOrders(List<Order> orders) { this.orders = orders; }
private List<Order> orders;
}
@Entity
public class Order {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@ManyToOne
public Customer getCustomer() { return customer; }
public void setCustomer(Customer customer) { this.customer = customer; }
private Customer number;
}
-- Table schema
|--------------| |----------|
| Order | | Customer |
|--------------| |----------|
| id | | id |
| number | |----------|
| customer_id |
| orders_order |
|--------------|
Note
162
Indexed collections
Looking again at the Hibernate mapping file equivalent, the index of an array or list is always of
type integer and is mapped using the <list-index> element. The mapped column contains
sequential integers that are numbered from zero by default.
<list-index
column="column_name"
base="0|1|..."/>
column_name (required): the name of the column holding the collection index values.
base (optional - defaults to 0): the value of the index column that corresponds to the first
element of the list or array.
If your table does not have an index column, and you still wish to use List as the property type,
you can map the property as a Hibernate <bag>. A bag does not retain its order when it is retrieved
from the database, but it can be optionally sorted or ordered.
7.2.2.2. Maps
The question with Maps is where the key value is stored. There are everal options. Maps can
borrow their keys from one of the associated entity properties or have dedicated columns to store
an explicit key.
To use one of the target entity property as a key of the map, use @MapKey(name="myProperty"),
where myProperty is a property name in the target entity. When using @MapKey without the name
attribuate, the target entity primary key is used. The map key uses the same column as the property
pointed out. There is no additional column defined to hold the map key, because the map key
represent a target property. Be aware that once loaded, the key is no longer kept in sync with the
property. In other words, if you change the property value, the key will not change automatically
in your Java model.
Example 7.10. Use of target entity property as map key via @MapKey
@Entity
public class Customer {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@OneToMany(mappedBy="customer")
@MapKey(name="number")
public Map<String,Order> getOrders() { return orders; }
public void setOrders(Map<String,Order> order) { this.orders = orders; }
private Map<String,Order> orders;
}
@Entity
163
Chapter 7. Collection mapping
@ManyToOne
public Customer getCustomer() { return customer; }
public void setCustomer(Customer customer) { this.customer = customer; }
private Customer number;
}
-- Table schema
|-------------| |----------|
| Order | | Customer |
|-------------| |----------|
| id | | id |
| number | |----------|
| customer_id |
|-------------|
Alternatively the map key is mapped to a dedicated column or columns. In order to customize the
mapping use one of the following annotations:
• @MapKeyColumn if the map key is a basic type. If you don't specify the column name, the name
of the property followed by underscore followed by KEY is used (for example orders_KEY).
You can also use @MapKeyClass to define the type of the key if you don't use generics.
@Entity
public class Customer {
@Id @GeneratedValue public Integer getId() { return id; }
public void setId(Integer id) { this.id = id; }
private Integer id;
@OneToMany @JoinTable(name="Cust_Order")
@MapKeyColumn(name="orders_number")
public Map<String,Order> getOrders() { return orders; }
public void setOrders(Map<String,Order> orders) { this.orders = orders; }
private Map<String,Order> orders;
}
@Entity
164
Indexed collections
@ManyToOne
public Customer getCustomer() { return customer; }
public void setCustomer(Customer customer) { this.customer = customer; }
private Customer number;
}
-- Table schema
|-------------| |----------| |---------------|
| Order | | Customer | | Cust_Order |
|-------------| |----------| |---------------|
| id | | id | | customer_id |
| number | |----------| | order_id |
| customer_id | | orders_number |
|-------------| |---------------|
Note
Using Hibernate mapping files there exists equivalent concepts to the descibed annotations. You
have to use <map-key>, <map-key-many-to-many> and <composite-map-key>. <map-key> is
used for any basic type, <map-key-many-to-many> for an entity reference and <composite-map-
key> for a composite type.
<map-key
column="column_name"
type="type_name"
node="@attribute-name"
length="N"/>
column (optional): the name of the column holding the collection index values.
formula (optional): a SQL formula used to evaluate the key of the map.
type (required): the type of the map keys.
165
Chapter 7. Collection mapping
<map-key-many-to-many
column="column_name"
column (optional): the name of the foreign key column for the collection index values.
formula (optional): a SQ formula used to evaluate the foreign key of the map key.
class (required): the entity class used as the map key.
@Entity
public class User {
[...]
public String getLastname() { ...}
@ElementCollection
@CollectionTable(name="Nicknames", joinColumns=@JoinColumn(name="user_id"))
@Column(name="nickname")
public Set<String> getNicknames() { ... }
}
The collection table holding the collection data is set using the @CollectionTable annotation.
If omitted the collection table name defaults to the concatenation of the name of the containing
entity and the name of the collection attribute, separated by an underscore. In our example, it
would be User_nicknames.
The column holding the basic type is set using the @Column annotation. If omitted, the column
name defaults to the property name: in our example, it would be nicknames.
But you are not limited to basic types, the collection type can be any embeddable
object. To override the columns of the embeddable object in the collection table, use the
@AttributeOverride annotation.
@Entity
public class User {
166
Collections of basic types and embeddable objects
[...]
public String getLastname() { ...}
@ElementCollection
@CollectionTable(name="Addresses", joinColumns=@JoinColumn(name="user_id"))
@AttributeOverrides({
@AttributeOverride(name="street1", column=@Column(name="fld_street"))
})
public Set<Address> getAddresses() { ... }
}
@Embeddable
public class Address {
public String getStreet1() {...}
[...]
}
Note
@Entity
public class User {
@ElementCollection
@AttributeOverrides({
@AttributeOverride(name="key.street1", column=@Column(name="fld_street")),
@AttributeOverride(name="value.stars", column=@Column(name="fld_note"))
})
public Map<Address,Rating> getFavHomes() { ... }
Note
Using the mapping file approach a collection of values is mapped using the <element> tag. For
example:
Example 7.16. <element> tag for collection values using mapping files
<element
167
Chapter 7. Collection mapping
column="column_name"
type="typename"
length="L"
precision="P"
scale="S"
not-null="true|false"
unique="true|false"
node="element-name"
/>
column (optional): the name of the column holding the collection element values.
formula (optional): an SQL formula used to evaluate the element.
type (required): the type of the collection element.
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
@JoinColumn(name="CUST_ID")
@Sort(type = SortType.COMPARATOR, comparator = TicketComparator.class)
public SortedSet<Ticket> getTickets() {
return tickets;
}
Using Hibernate mapping files you specify a comparator in the mapping file with <sort>:
<set name="aliases"
table="person_aliases"
sort="natural">
<key column="person"/>
<element column="name" type="string"/>
</set>
168
Bidirectional associations
Allowed values of the sort attribute are unsorted, natural and the name of a class implementing
java.util.Comparator.
Tip
If you want the database itself to order the collection elements, use the order-by attribute of set,
bag or map mappings. This solution is implemented using LinkedHashSet or LinkedHashMap and
performs the ordering in the SQL query and not in the memory.
Note
The value of the order-by attribute is an SQL ordering, not an HQL ordering.
Associations can even be sorted by arbitrary criteria at runtime using a collection filter():
169
Chapter 7. Collection mapping
one-to-many
set or bag valued at one end and single-valued at the other
many-to-many
set or bag valued at both ends
Often there exists a many to one association which is the owner side of a bidirectional
relationship. The corresponding one to many association is in this case annotated by
@OneToMany(mappedBy=...)
@Entity
public class Troop {
@OneToMany(mappedBy="troop")
public Set<Soldier> getSoldiers() {
...
}
@Entity
public class Soldier {
@ManyToOne
@JoinColumn(name="troop_fk")
public Troop getTroop() {
...
}
Troop has a bidirectional one to many relationship with Soldier through the troop property. You
don't have to (must not) define any physical mapping in the mappedBy side.
To map a bidirectional one to many, with the one-to-many side as the owning side, you have to
remove the mappedBy element and set the many to one @JoinColumn as insertable and updatable
to false. This solution is not optimized and will produce additional UPDATE statements.
@Entity
public class Troop {
@OneToMany
@JoinColumn(name="troop_fk") //we need to duplicate the physical information
public Set<Soldier> getSoldiers() {
...
}
@Entity
public class Soldier {
@ManyToOne
@JoinColumn(name="troop_fk", insertable=false, updatable=false)
public Troop getTroop() {
...
170
Bidirectional associations
How does the mappping of a bidirectional mapping look like in Hibernate mapping xml? There
you define a bidirectional one-to-many association by mapping a one-to-many association to
the same table column(s) as a many-to-one association and declaring the many-valued end
inverse="true".
<class name="Parent">
<id name="id" column="parent_id"/>
....
<set name="children" inverse="true">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
</class>
<class name="Child">
<id name="id" column="child_id"/>
....
<many-to-one name="parent"
class="Parent"
column="parent_id"
not-null="true"/>
</class>
Mapping one end of an association with inverse="true" does not affect the operation of
cascades as these are orthogonal concepts.
A many-to-many association is defined logically using the @ManyToMany annotation. You also have
to describe the association table and the join conditions using the @JoinTable annotation. If the
association is bidirectional, one side has to be the owner and one side has to be the inverse end
(ie. it will be ignored when updating the relationship values in the association table):
@Entity
public class Employer implements Serializable {
@ManyToMany(
targetEntity=org.hibernate.test.metadata.manytomany.Employee.class,
cascade={CascadeType.PERSIST, CascadeType.MERGE}
)
@JoinTable(
name="EMPLOYER_EMPLOYEE",
joinColumns=@JoinColumn(name="EMPER_ID"),
inverseJoinColumns=@JoinColumn(name="EMPEE_ID")
)
public Collection getEmployees() {
return employees;
171
Chapter 7. Collection mapping
}
...
}
@Entity
public class Employee implements Serializable {
@ManyToMany(
cascade = {CascadeType.PERSIST, CascadeType.MERGE},
mappedBy = "employees",
targetEntity = Employer.class
)
public Collection getEmployers() {
return employers;
}
}
In this example @JoinTable defines a name, an array of join columns, and an array of inverse join
columns. The latter ones are the columns of the association table which refer to the Employee
primary key (the "other side"). As seen previously, the other side don't have to (must not) describe
the physical mapping: a simple mappedBy argument containing the owner side property name bind
the two.
As any other annotations, most values are guessed in a many to many relationship. Without
describing any physical mapping in a unidirectional many to many the following rules applied. The
table name is the concatenation of the owner table name, _ and the other side table name. The
foreign key name(s) referencing the owner table is the concatenation of the owner table name, _
and the owner primary key column(s). The foreign key name(s) referencing the other side is the
concatenation of the owner property name, _, and the other side primary key column(s). These
are the same rules used for a unidirectional one to many relationship.
@Entity
public class Store {
@ManyToMany(cascade = CascadeType.PERSIST)
public Set<City> getImplantedIn() {
...
}
}
@Entity
public class City {
... //no bidirectional relationship
}
A Store_City is used as the join table. The Store_id column is a foreign key to the Store table.
The implantedIn_id column is a foreign key to the City table.
172
Bidirectional associations
Without describing any physical mapping in a bidirectional many to many the following rules
applied. The table name is the concatenation of the owner table name, _ and the other side table
name. The foreign key name(s) referencing the owner table is the concatenation of the other side
property name, _, and the owner primary key column(s). The foreign key name(s) referencing the
other side is the concatenation of the owner property name, _, and the other side primary key
column(s). These are the same rules used for a unidirectional one to many relationship.
@Entity
public class Store {
@ManyToMany(cascade = {CascadeType.PERSIST, CascadeType.MERGE})
public Set<Customer> getCustomers() {
...
}
}
@Entity
public class Customer {
@ManyToMany(mappedBy="customers")
public Set<Store> getStores() {
...
}
}
A Store_Customer is used as the join table. The stores_id column is a foreign key to the Store
table. The customers_id column is a foreign key to the Customer table.
Using Hibernate mapping files you can map a bidirectional many-to-many association by mapping
two many-to-many associations to the same database table and declaring one end as inverse.
Note
Example 7.27, “Many to many association using Hibernate mapping files” shows a bidirectional
many-to-many association that illustrates how each category can have many items and each item
can be in many categories:
<class name="Category">
<id name="id" column="CATEGORY_ID"/>
...
<bag name="items" table="CATEGORY_ITEM">
<key column="CATEGORY_ID"/>
<many-to-many class="Item" column="ITEM_ID"/>
173
Chapter 7. Collection mapping
</bag>
</class>
<class name="Item">
<id name="id" column="ITEM_ID"/>
...
Changes made only to the inverse end of the association are not persisted. This means that
Hibernate has two representations in memory for every bidirectional association: one link from A
to B and another link from B to A. This is easier to understand if you think about the Java object
model and how a many-to-many relationship in Javais created:
The non-inverse side is used to save the in-memory representation to the database.
<class name="Parent">
<id name="id" column="parent_id"/>
....
<map name="children" inverse="true">
<key column="parent_id"/>
<map-key column="name"
type="string"/>
<one-to-many class="Child"/>
</map>
</class>
174
Ternary associations
<class name="Child">
<id name="id" column="child_id"/>
....
<property name="name"
not-null="true"/>
<many-to-one name="parent"
class="Parent"
column="parent_id"
not-null="true"/>
</class>
If there is no such property on the child class, the association cannot be considered truly
bidirectional. That is, there is information available at one end of the association that is not
available at the other end. In this case, you cannot map the collection inverse="true". Instead,
you could use the following mapping:
<class name="Parent">
<id name="id" column="parent_id"/>
....
<map name="children">
<key column="parent_id"
not-null="true"/>
<map-key column="name"
type="string"/>
<one-to-many class="Child"/>
</map>
</class>
<class name="Child">
<id name="id" column="child_id"/>
....
<many-to-one name="parent"
class="Parent"
column="parent_id"
insert="false"
update="false"
not-null="true"/>
</class>
Note that in this mapping, the collection-valued end of the association is responsible for updates
to the foreign key.
There are three possible approaches to mapping a ternary association. One approach is to use
a Map with an association as its index:
175
Chapter 7. Collection mapping
@Entity
public class Company {
@Id
int id;
...
@OneToMany // unidirectional
@MapKeyJoinColumn(name="employee_id")
Map<Employee, Contract> contracts;
}
// or
<map name="contracts">
<key column="employer_id" not-null="true"/>
<map-key-many-to-many column="employee_id" class="Employee"/>
<one-to-many class="Contract"/>
</map>
A second approach is to remodel the association as an entity class. This is the most common
approach. A final alternative is to use composite elements, which will be discussed later.
The majority of the many-to-many associations and collections of values shown previously all
map to tables with composite keys, even though it has been suggested that entities should have
synthetic identifiers (surrogate keys). A pure association table does not seem to benefit much
from a surrogate key, although a collection of composite values might. For this reason Hibernate
provides a feature that allows you to map many-to-many associations and collections of values
to a table with a surrogate key.
The <idbag> element lets you map a List (or Collection) with bag semantics. For example:
An <idbag> has a synthetic id generator, just like an entity class. A different surrogate key
is assigned to each collection row. Hibernate does not, however, provide any mechanism for
discovering the surrogate key value of a particular row.
The update performance of an <idbag> supersedes a regular <bag>. Hibernate can locate
individual rows efficiently and update or delete them individually, similar to a list, map or set.
176
Collection examples
In the current implementation, the native identifier generation strategy is not supported for
<idbag> collection identifiers.
// getter/setter
...
}
// getter/setter
...
}
If each child has, at most, one parent, the most natural mapping is a one-to-many association:
@OneToMany
private Set<Child> children;
// getter/setter
...
}
177
Chapter 7. Collection mapping
// getter/setter
...
}
<hibernate-mapping>
<class name="Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
</class>
<class name="Child">
<id name="id">
<generator class="sequence"/>
</id>
<property name="name"/>
</class>
</hibernate-mapping>
@OneToMany(mappedBy="parent")
178
Collection examples
// getter/setter
...
}
@ManyToOne
private Parent parent;
// getter/setter
...
}
<hibernate-mapping>
<class name="Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children" inverse="true">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
</class>
<class name="Child">
<id name="id">
<generator class="sequence"/>
</id>
<property name="name"/>
<many-to-one name="parent" class="Parent" column="parent_id" not-null="true"/>
</class>
</hibernate-mapping>
179
Chapter 7. Collection mapping
Alternatively, if this association must be unidirectional you can enforce the NOT NULL constraint.
@OneToMany(optional=false)
private Set<Child> children;
// getter/setter
...
}
// getter/setter
...
}
<hibernate-mapping>
<class name="Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children">
<key column="parent_id" not-null="true"/>
<one-to-many class="Child"/>
</set>
</class>
<class name="Child">
<id name="id">
180
Collection examples
<generator class="sequence"/>
</id>
<property name="name"/>
</class>
</hibernate-mapping>
On the other hand, if a child has multiple parents, a many-to-many association is appropriate.
@ManyToMany
private Set<Child> children;
// getter/setter
...
}
// getter/setter
...
}
<hibernate-mapping>
<class name="Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children" table="childset">
<key column="parent_id"/>
<many-to-many class="Child" column="child_id"/>
</set>
</class>
<class name="Child">
<id name="id">
<generator class="sequence"/>
181
Chapter 7. Collection mapping
</id>
<property name="name"/>
</class>
</hibernate-mapping>
Table definitions:
For more examples and a complete explanation of a parent/child relationship mapping, see
Chapter 24, Example: Parent/Child for more information. Even more complex association
mappings are covered in the next chapter.
182
Chapter 8.
Association Mappings
8.1. Introduction
Association mappings are often the most difficult thing to implement correctly. In this section
we examine some canonical cases one by one, starting with unidirectional mappings and then
bidirectional cases. We will use Person and Address in all the examples.
Associations will be classified by multiplicity and whether or not they map to an intervening join
table.
Nullable foreign keys are not considered to be good practice in traditional data modelling, so
our examples do not use nullable foreign keys. This is not a requirement of Hibernate, and the
mappings will work if you drop the nullability constraints.
8.2.1. Many-to-one
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<many-to-one name="address"
column="addressId"
not-null="true"/>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
create table Person ( personId bigint not null primary key, addressId bigint not null )
create table Address ( addressId bigint not null primary key )
8.2.2. One-to-one
A unidirectional one-to-one association on a foreign key is almost identical. The only difference
is the column unique constraint.
183
Chapter 8. Association Mappings
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<many-to-one name="address"
column="addressId"
unique="true"
not-null="true"/>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
create table Person ( personId bigint not null primary key, addressId bigint not null unique )
create table Address ( addressId bigint not null primary key )
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
</class>
<class name="Address">
<id name="id" column="personId">
<generator class="foreign">
<param name="property">person</param>
</generator>
</id>
<one-to-one name="person" constrained="true"/>
</class>
8.2.3. One-to-many
184
Unidirectional associations with join tables
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<set name="addresses">
<key column="personId"
not-null="true"/>
<one-to-many class="Address"/>
</set>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
You should instead use a join table for this kind of association.
8.3.1. One-to-many
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<set name="addresses" table="PersonAddress">
<key column="personId"/>
<many-to-many column="addressId"
unique="true"
class="Address"/>
</set>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
185
Chapter 8. Association Mappings
8.3.2. Many-to-one
A unidirectional many-to-one association on a join table is common when the association is
optional. For example:
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<join table="PersonAddress"
optional="true">
<key column="personId" unique="true"/>
<many-to-one name="address"
column="addressId"
not-null="true"/>
</join>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
8.3.3. One-to-one
A unidirectional one-to-one association on a join table is possible, but extremely unusual.
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<join table="PersonAddress"
optional="true">
<key column="personId"
unique="true"/>
<many-to-one name="address"
186
Many-to-many
column="addressId"
not-null="true"
unique="true"/>
</join>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
8.3.4. Many-to-many
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<set name="addresses" table="PersonAddress">
<key column="personId"/>
<many-to-many column="addressId"
class="Address"/>
</set>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
</class>
187
Chapter 8. Association Mappings
A bidirectional many-to-one association is the most common kind of association. The following
example illustrates the standard parent/child relationship.
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<many-to-one name="address"
column="addressId"
not-null="true"/>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
<set name="people" inverse="true">
<key column="addressId"/>
<one-to-many class="Person"/>
</set>
</class>
create table Person ( personId bigint not null primary key, addressId bigint not null )
create table Address ( addressId bigint not null primary key )
If you use a List, or other indexed collection, set the key column of the foreign key to not null.
Hibernate will manage the association from the collections side to maintain the index of each
element, making the other side virtually inverse by setting update="false" and insert="false":
<class name="Person">
<id name="id"/>
...
<many-to-one name="address"
column="addressId"
not-null="true"
insert="false"
update="false"/>
</class>
<class name="Address">
<id name="id"/>
...
<list name="people">
<key column="addressId" not-null="true"/>
188
One-to-one
<list-index column="peopleIdx"/>
<one-to-many class="Person"/>
</list>
</class>
If the underlying foreign key column is NOT NULL, it is important that you define not-null="true"
on the <key> element of the collection mapping. Do not only declare not-null="true" on a
possible nested <column> element, but on the <key> element.
8.4.2. One-to-one
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<many-to-one name="address"
column="addressId"
unique="true"
not-null="true"/>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
<one-to-one name="person"
property-ref="address"/>
</class>
create table Person ( personId bigint not null primary key, addressId bigint not null unique )
create table Address ( addressId bigint not null primary key )
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<one-to-one name="address"/>
</class>
<class name="Address">
<id name="id" column="personId">
<generator class="foreign">
<param name="property">person</param>
</generator>
189
Chapter 8. Association Mappings
</id>
<one-to-one name="person"
constrained="true"/>
</class>
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<set name="addresses"
table="PersonAddress">
<key column="personId"/>
<many-to-many column="addressId"
unique="true"
class="Address"/>
</set>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
<join table="PersonAddress"
inverse="true"
optional="true">
<key column="addressId"/>
<many-to-one name="person"
column="personId"
not-null="true"/>
</join>
</class>
190
one to one
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<join table="PersonAddress"
optional="true">
<key column="personId"
unique="true"/>
<many-to-one name="address"
column="addressId"
not-null="true"
unique="true"/>
</join>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
<join table="PersonAddress"
optional="true"
inverse="true">
<key column="addressId"
unique="true"/>
<many-to-one name="person"
column="personId"
not-null="true"
unique="true"/>
</join>
</class>
8.5.3. Many-to-many
<class name="Person">
<id name="id" column="personId">
<generator class="native"/>
</id>
<set name="addresses" table="PersonAddress">
191
Chapter 8. Association Mappings
<key column="personId"/>
<many-to-many column="addressId"
class="Address"/>
</set>
</class>
<class name="Address">
<id name="id" column="addressId">
<generator class="native"/>
</id>
<set name="people" inverse="true" table="PersonAddress">
<key column="addressId"/>
<many-to-many column="personId"
class="Person"/>
</set>
</class>
<properties name="currentAccountKey">
<property name="accountNumber" type="string" not-null="true"/>
<property name="currentAccount" type="boolean">
<formula>case when effectiveEndDate is null then 1 else 0 end</formula>
</property>
</properties>
<property name="effectiveEndDate" type="date"/>
<property name="effectiveStateDate" type="date" not-null="true"/>
You can then map an association to the current instance, the one with null effectiveEndDate,
by using:
<many-to-one name="currentAccountInfo"
property-ref="currentAccountKey"
class="AccountInfo">
<column name="accountNumber"/>
<formula>'1'</formula>
192
More complex association mappings
</many-to-one>
In a more complex example, imagine that the association between Employee and Organization
is maintained in an Employment table full of historical employment data. An association to the
employee's most recent employer, the one with the most recent startDate, could be mapped in
the following way:
<join>
<key column="employeeId"/>
<subselect>
select employeeId, orgId
from Employments
group by orgId
having startDate = max(startDate)
</subselect>
<many-to-one name="mostRecentEmployer"
class="Organization"
column="orgId"/>
</join>
This functionality allows a degree of creativity and flexibility, but it is more practical to handle these
kinds of cases using HQL or a criteria query.
193
194
Chapter 9.
Component Mapping
The notion of a component is re-used in several different contexts and purposes throughout
Hibernate.
195
Chapter 9. Component Mapping
this.last = last;
}
public char getInitial() {
return initial;
}
void setInitial(char initial) {
this.initial = initial;
}
}
Now Name can be persisted as a component of Person. Name defines getter and setter methods
for its persistent properties, but it does not need to declare any interfaces or identifier properties.
The person table would have the columns pid, birthday, initial, first and last.
Like value types, components do not support shared references. In other words, two persons
could have the same name, but the two person objects would contain two independent name
objects that were only "the same" by value. The null value semantics of a component are ad hoc.
When reloading the containing object, Hibernate will assume that if all component columns are
null, then the entire component is null. This is suitable for most purposes.
The <component> element allows a <parent> subelement that maps a property of the component
class as a reference back to the containing entity.
196
Collections of dependent objects
<property name="last"/>
</component>
</class>
Important
Composite elements can contain components but not collections. If your composite element
contains components, use the <nested-composite-element> tag. This case is a collection of
components which themselves have components. You may want to consider if a one-to-many
association is more appropriate. Remodel the composite element as an entity, but be aware that
even though the Java model is the same, the relational model and persistence semantics are still
slightly different.
A composite element mapping does not support null-able properties if you are using a <set>.
There is no separate primary key column in the composite element table. Hibernate uses each
column's value to identify a record when deleting objects, which is not possible with null values.
You have to either use only not-null properties in a composite-element or choose a <list>, <map>,
<bag> or <idbag>.
197
Chapter 9. Component Mapping
<composite-element class="eg.Purchase">
<property name="purchaseDate"/>
<property name="price"/>
<property name="quantity"/>
<many-to-one name="item" class="eg.Item"/> <!-- class attribute is optional -->
</composite-element>
</set>
</class>
There cannot be a reference to the purchase on the other side for bidirectional association
navigation. Components are value types and do not allow shared references. A single Purchase
can be in the set of an Order, but it cannot be referenced by the Item at the same time.
Composite elements can appear in queries using the same syntax as associations to other entities.
Note
198
Components as composite identifiers
You cannot use an IdentifierGenerator to generate composite keys. Instead the application
must assign its own identifiers.
Use the <composite-id> tag, with nested <key-property> elements, in place of the usual
<id> declaration. For example, the OrderLine class has a primary key that depends upon the
(composite) primary key of Order.
<class name="OrderLine">
<property name="name"/>
</class>
Any foreign keys referencing the OrderLine table are now composite. Declare this in your
mappings for other classes. An association to OrderLine is mapped like this:
Tip
<set name="undeliveredOrderLines">
<key column name="warehouseId"/>
<many-to-many class="OrderLine">
199
Chapter 9. Component Mapping
<column name="lineId"/>
<column name="orderId"/>
<column name="customerId"/>
</many-to-many>
</set>
<class name="OrderLine">
....
....
<list name="deliveryAttempts">
<key> <!-- a collection inherits the composite key type -->
<column name="lineId"/>
<column name="orderId"/>
<column name="customerId"/>
</key>
<list-index column="attemptId" base="1"/>
<composite-element class="DeliveryAttempt">
...
</composite-element>
</set>
</class>
<dynamic-component name="userAttributes">
<property name="foo" column="FOO" type="string"/>
<property name="bar" column="BAR" type="integer"/>
<many-to-one name="baz" class="Baz" column="BAZ_ID"/>
</dynamic-component>
200
Dynamic components
time just by editing the mapping document. Runtime manipulation of the mapping document is
also possible, using a DOM parser. You can also access, and change, Hibernate's configuration-
time metamodel via the Configuration object.
201
202
Chapter 10.
Inheritance mapping
10.1. The three strategies
Hibernate supports the three basic inheritance mapping strategies:
• implicit polymorphism
It is possible to use different mapping strategies for different branches of the same inheritance
hierarchy. You can then make use of implicit polymorphism to achieve polymorphism across the
whole hierarchy. However, Hibernate does not support mixing <subclass>, <joined-subclass>
and <union-subclass> mappings under the same root <class> element. It is possible to mix
together the table per hierarchy and table per subclass strategies under the the same <class>
element, by combining the <subclass> and <join> elements (see below for an example).
<hibernate-mapping>
<subclass name="DomesticCat" extends="Cat" discriminator-value="D">
<property name="name" type="string"/>
</subclass>
</hibernate-mapping>
203
Chapter 10. Inheritance mapping
</id>
<discriminator column="PAYMENT_TYPE" type="string"/>
<property name="amount" column="AMOUNT"/>
...
<subclass name="CreditCardPayment" discriminator-value="CREDIT">
<property name="creditCardType" column="CCTYPE"/>
...
</subclass>
<subclass name="CashPayment" discriminator-value="CASH">
...
</subclass>
<subclass name="ChequePayment" discriminator-value="CHEQUE">
...
</subclass>
</class>
Exactly one table is required. There is a limitation of this mapping strategy: columns declared by
the subclasses, such as CCTYPE, cannot have NOT NULL constraints.
Four tables are required. The three subclass tables have primary key associations to the
superclass table so the relational model is actually a one-to-one association.
204
Mixing table per class hierarchy with table per subclass
difficult to implement, but arguably more correct from a relational point of view. If you want to use a
discriminator column with the table per subclass strategy, you can combine the use of <subclass>
and <join>, as follows:
The optional fetch="select" declaration tells Hibernate not to fetch the ChequePayment
subclass data using an outer join when querying the superclass.
10.1.4. Mixing table per class hierarchy with table per subclass
You can even mix the table per hierarchy and table per subclass strategies using the following
approach:
205
Chapter 10. Inheritance mapping
For any of these mapping strategies, a polymorphic association to the root Payment class is
mapped using <many-to-one>.
There are two ways we can map the table per concrete class strategy. First, you can use <union-
subclass>.
<class name="Payment">
<id name="id" type="long" column="PAYMENT_ID">
<generator class="sequence"/>
</id>
<property name="amount" column="AMOUNT"/>
...
<union-subclass name="CreditCardPayment" table="CREDIT_PAYMENT">
<property name="creditCardType" column="CCTYPE"/>
...
</union-subclass>
<union-subclass name="CashPayment" table="CASH_PAYMENT">
...
</union-subclass>
<union-subclass name="ChequePayment" table="CHEQUE_PAYMENT">
...
</union-subclass>
</class>
Three tables are involved for the subclasses. Each table defines columns for all properties of the
class, including inherited properties.
The limitation of this approach is that if a property is mapped on the superclass, the column name
must be the same on all subclass tables. The identity generator strategy is not allowed in union
subclass inheritance. The primary key seed has to be shared across all unioned subclasses of
a hierarchy.
If your superclass is abstract, map it with abstract="true". If it is not abstract, an additional table
(it defaults to PAYMENT in the example above), is needed to hold instances of the superclass.
206
Table per concrete class using implicit polymorphism
Notice that the Payment interface is not mentioned explicitly. Also notice that properties of Payment
are mapped in each of the subclasses. If you want to avoid duplication, consider using XML entities
(for example, [ <!ENTITY allproperties SYSTEM "allproperties.xml"> ] in the DOCTYPE
declaration and &allproperties; in the mapping).
The disadvantage of this approach is that Hibernate does not generate SQL UNIONs when
performing polymorphic queries.
For this mapping strategy, a polymorphic association to Payment is usually mapped using <any>.
207
Chapter 10. Inheritance mapping
Since the subclasses are each mapped in their own <class> element, and since Payment is just
an interface), each of the subclasses could easily be part of another inheritance hierarchy. You
can still use polymorphic queries against the Payment interface.
Once again, Payment is not mentioned explicitly. If we execute a query against the
Payment interface, for example from Payment, Hibernate automatically returns instances of
CreditCardPayment (and its subclasses, since they also implement Payment), CashPayment and
ChequePayment, but not instances of NonelectronicTransaction.
10.2. Limitations
There are limitations to the "implicit polymorphism" approach to the table per concrete-
class mapping strategy. There are somewhat less restrictive limitations to <union-subclass>
mappings.
The following table shows the limitations of table per concrete-class mappings, and of implicit
polymorphism, in Hibernate.
208
Limitations
Inheritance
Polymorphic
Polymorphic
Polymorphic
Polymorphic
Polymorphic
Polymorphic
Polymorphic
Outer
strategy many- one-to- one-to- many- load()/ queries joins join
to-one one many to-many get() fetching
table per <many- <one- <one- <many- s.get(Payment.class,
from from supported
class- to-one> to-one> to- to- id) Payment Order
hierarchy many> many> p o join
o.payment
p
209
210
Chapter 11.
In other words, Hibernate application developers should always think about the state of their
objects, and not necessarily about the execution of SQL statements. This part is taken care of
by Hibernate and is only relevant for the application developer when tuning the performance of
the system.
• Transient - an object is transient if it has just been instantiated using the new operator, and it
is not associated with a Hibernate Session. It has no persistent representation in the database
and no identifier value has been assigned. Transient instances will be destroyed by the garbage
collector if the application does not hold a reference anymore. Use the Hibernate Session to
make an object persistent (and let Hibernate take care of the SQL statements that need to be
executed for this transition).
• Persistent - a persistent instance has a representation in the database and an identifier value.
It might just have been saved or loaded, however, it is by definition in the scope of a Session.
Hibernate will detect any changes made to an object in persistent state and synchronize the
state with the database when the unit of work completes. Developers do not execute manual
UPDATE statements, or DELETE statements when an object should be made transient.
• Detached - a detached instance is an object that has been persistent, but its Session has been
closed. The reference to the object is still valid, of course, and the detached instance might
even be modified in this state. A detached instance can be reattached to a new Session at a
later point in time, making it (and all the modifications) persistent again. This feature enables
a programming model for long running units of work that require user think-time. We call them
application transactions, i.e., a unit of work from the point of view of the user.
We will now discuss the states and state transitions (and the Hibernate methods that trigger a
transition) in more detail.
211
Chapter 11. Working with objects
fritz.setColor(Color.GINGER);
fritz.setSex('M');
fritz.setName("Fritz");
Long generatedId = (Long) sess.save(fritz);
If Cat has a generated identifier, the identifier is generated and assigned to the cat when save()
is called. If Cat has an assigned identifier, or a composite key, the identifier should be assigned
to the cat instance before calling save(). You can also use persist() instead of save(), with
the semantics defined in the EJB3 early draft.
• persist() makes a transient instance persistent. However, it does not guarantee that the
identifier value will be assigned to the persistent instance immediately, the assignment might
happen at flush time. persist() also guarantees that it will not execute an INSERT statement
if it is called outside of transaction boundaries. This is useful in long-running conversations with
an extended Session/persistence context.
• save() does guarantee to return an identifier. If an INSERT has to be executed to get the
identifier ( e.g. "identity" generator, not "sequence"), this INSERT happens immediately, no
matter if you are inside or outside of a transaction. This is problematic in a long-running
conversation with an extended Session/persistence context.
Alternatively, you can assign the identifier using an overloaded version of save().
If the object you make persistent has associated objects (e.g. the kittens collection in the
previous example), these objects can be made persistent in any order you like unless you have
a NOT NULL constraint upon a foreign key column. There is never a risk of violating foreign key
constraints. However, you might violate a NOT NULL constraint if you save() the objects in the
wrong order.
Usually you do not bother with this detail, as you will normally use Hibernate's transitive
persistence feature to save the associated objects automatically. Then, even NOT NULL constraint
violations do not occur - Hibernate will take care of everything. Transitive persistence is discussed
later in this chapter.
212
Loading an object
Be aware that load() will throw an unrecoverable exception if there is no matching database
row. If the class is mapped with a proxy, load() just returns an uninitialized proxy and does not
actually hit the database until you invoke a method of the proxy. This is useful if you wish to create
an association to an object without actually loading it from the database. It also allows multiple
instances to be loaded as a batch if batch-size is defined for the class mapping.
If you are not certain that a matching row exists, you should use the get() method which hits the
database immediately and returns null if there is no matching row.
You can even load an object using an SQL SELECT ... FOR UPDATE, using a LockMode. See
the API documentation for more information.
Any associated instances or contained collections will not be selected FOR UPDATE, unless you
decide to specify lock or all as a cascade style for the association.
It is possible to re-load an object and all its collections at any time, using the refresh() method.
This is useful when database triggers are used to initialize some of the properties of the object.
sess.save(cat);
sess.flush(); //force the SQL INSERT
213
Chapter 11. Working with objects
How much does Hibernate load from the database and how many SQL SELECTs will it use? This
depends on the fetching strategy. This is explained in Section 21.1, “Fetching strategies”.
11.4. Querying
If you do not know the identifiers of the objects you are looking for, you need a query. Hibernate
supports an easy-to-use but powerful object oriented query language (HQL). For programmatic
query creation, Hibernate supports a sophisticated Criteria and Example query feature (QBC and
QBE). You can also express your query in the native SQL of your database, with optional support
from Hibernate for result set conversion into objects.
HQL and native SQL queries are represented with an instance of org.hibernate.Query. This
interface offers methods for parameter binding, result set handling, and for the execution of the
actual query. You always obtain a Query using the current Session:
A query is usually executed by invoking list(). The result of the query will be loaded completely
into a collection in memory. Entity instances retrieved by a query are in a persistent state. The
uniqueResult() method offers a shortcut if you know your query will only return a single object.
Queries that make use of eager fetching of collections usually return duplicates of the root objects,
but with their collections initialized. You can filter these duplicates through a Set.
214
Executing queries
Occasionally, you might be able to achieve better performance by executing the query using the
iterate() method. This will usually be the case if you expect that the actual entity instances
returned by the query will already be in the session or second-level cache. If they are not already
cached, iterate() will be slower than list() and might require many database hits for a simple
query, usually 1 for the initial select which only returns identifiers, and n additional selects to
initialize the actual instances.
// fetch ids
Iterator iter = sess.createQuery("from eg.Qux q order by q.likeliness").iterate();
while ( iter.hasNext() ) {
Qux qux = (Qux) iter.next(); // fetch the object
// something we couldnt express in the query
if ( qux.calculateComplicatedAlgorithm() ) {
// delete the current instance
iter.remove();
// dont need to process the rest
break;
}
}
Hibernate queries sometimes return tuples of objects. Each tuple is returned as an array:
while ( kittensAndMothers.hasNext() ) {
Object[] tuple = (Object[]) kittensAndMothers.next();
Cat kitten = (Cat) tuple[0];
Cat mother = (Cat) tuple[1];
....
}
Queries can specify a property of a class in the select clause. They can even call SQL aggregate
functions. Properties or aggregates are considered "scalar" results and not entities in persistent
state.
215
Chapter 11. Working with objects
.iterator();
while ( results.hasNext() ) {
Object[] row = (Object[]) results.next();
Color type = (Color) row[0];
Date oldest = (Date) row[1];
Integer count = (Integer) row[2];
.....
}
• named parameters are insensitive to the order they occur in the query string
• they can occur multiple times in the same query
• they are self-documenting
//positional parameter
Query q = sess.createQuery("from DomesticCat cat where cat.name = ?");
q.setString(0, "Izi");
Iterator cats = q.iterate();
11.4.1.5. Pagination
If you need to specify bounds upon your result set, that is, the maximum number of rows you want
to retrieve and/or the first row you want to retrieve, you can use methods of the Query interface:
216
Executing queries
q.setMaxResults(10);
List cats = q.list();
Hibernate knows how to translate this limit query into the native SQL of your DBMS.
If your JDBC driver supports scrollable ResultSets, the Query interface can be used to obtain a
ScrollableResults object that allows flexible navigation of the query results.
// find the first name on each page of an alphabetical list of cats by name
firstNamesOfPages = new ArrayList();
do {
String name = cats.getString(0);
firstNamesOfPages.add(name);
}
while ( cats.scroll(PAGE_SIZE) );
}
cats.close()
Note that an open database connection and cursor is required for this functionality. Use
setMaxResult()/setFirstResult() if you need offline pagination functionality.
Queries can also be configured as so called named queries using annotations or Hibernate
mapping documents. @NamedQuery and @NamedQueries can be defined at the class level as seen
in Example 11.1, “Defining a named query using @NamedQuery” . However their definitions are
global to the session factory/entity manager factory scope. A named query is defined by its name
and the actual query string.
@Entity
@NamedQuery(name="night.moreRecentThan", query="select n from Night n where n.date >= :date")
public class Night {
...
}
217
Chapter 11. Working with objects
Using a mapping document can be configured using the <query> node. Remember to use a CDATA
section if your query contains characters that could be interpreted as markup.
<query name="ByNameAndMaximumWeight"><![CDATA[
from eg.DomesticCat as cat
where cat.name = ?
and cat.weight > ?
] ]></query>
Parameter binding and executing is done programatically as seen in Example 11.3, “Parameter
binding of a named query”.
Query q = sess.getNamedQuery("ByNameAndMaximumWeight");
q.setString(0, name);
q.setInt(1, minWeight);
List cats = q.list();
The actual program code is independent of the query language that is used. You can also define
native SQL queries in metadata, or migrate existing queries to Hibernate by placing them in
mapping files.
Also note that a query declaration inside a <hibernate-mapping> element requires a global
unique name for the query, while a query declaration inside a <class> element is made
unique automatically by prepending the fully qualified name of the class. For example
eg.Cat.ByNameAndMaximumWeight.
218
Criteria queries
pk.getKittens(),
"where this.color = ?")
.setParameter( Color.BLACK, Hibernate.custom(ColorUserType.class) )
.list()
);
The returned collection is considered a bag that is a copy of the given collection. The original
collection is not modified. This is contrary to the implication of the name "filter", but consistent
with expected behavior.
Observe that filters do not require a from clause, although they can have one if required. Filters
are not limited to returning the collection elements themselves.
Even an empty filter query is useful, e.g. to load a subset of elements in a large collection:
The Criteria and the associated Example API are discussed in more detail in Chapter 17, Criteria
Queries.
219
Chapter 11. Working with objects
SQL queries can contain named and positional parameters, just like Hibernate queries. More
information about native SQL queries in Hibernate can be found in Chapter 18, Native SQL.
Sometimes this programming model is inefficient, as it requires in the same session both an SQL
SELECT to load an object and an SQL UPDATE to persist its updated state. Hibernate offers an
alternate approach by using detached instances.
Hibernate supports this model by providing for reattachment of detached instances using the
Session.update() or Session.merge() methods:
220
Automatic state detection
firstSession.save(potentialMate);
If the Cat with identifier catId had already been loaded by secondSession when the application
tried to reattach it, an exception would have been thrown.
Use update() if you are certain that the session does not contain an already persistent instance
with the same identifier. Use merge() if you want to merge your modifications at any time without
consideration of the state of the session. In other words, update() is usually the first method you
would call in a fresh session, ensuring that the reattachment of your detached instances is the
first operation that is executed.
The application should individually update() detached instances that are reachable from the given
detached instance only if it wants their state to be updated. This can be automated using transitive
persistence. See Section 11.11, “Transitive persistence” for more information.
The lock() method also allows an application to reassociate an object with a new session.
However, the detached instance has to be unmodified.
//just reassociate:
sess.lock(fritz, LockMode.NONE);
//do a version check, then reassociate:
sess.lock(izi, LockMode.READ);
//do a version check, using SELECT ... FOR UPDATE, then reassociate:
sess.lock(pk, LockMode.UPGRADE);
Note that lock() can be used with various LockModes. See the API documentation and the
chapter on transaction handling for more information. Reattachment is not the only usecase for
lock().
Other models for long units of work are discussed in Section 13.3, “Optimistic concurrency control”.
221
Chapter 11. Working with objects
The usage and semantics of saveOrUpdate() seems to be confusing for new users. Firstly, so
long as you are not trying to use instances from one session in another new session, you should
not need to use update(), saveOrUpdate(), or merge(). Some whole applications will never use
either of these methods.
• if there is a persistent instance with the same identifier currently associated with the session,
copy the state of the given object onto the persistent instance
• if there is no persistent instance currently associated with the session, try to load it from the
database, or create a new persistent instance
• the persistent instance is returned
• the given instance does not become associated with the session, it remains detached
sess.delete(cat);
222
Replicating object between two different datastores
You can delete objects in any order, without risk of foreign key constraint violations. It is still
possible to violate a NOT NULL constraint on a foreign key column by deleting objects in the wrong
order, e.g. if you delete the parent, but forget to delete the children.
The ReplicationMode determines how replicate() will deal with conflicts with existing rows in
the database:
• ReplicationMode.IGNORE: ignores the object when there is an existing database row with the
same identifier
• ReplicationMode.OVERWRITE: overwrites any existing database row with the same identifier
• ReplicationMode.EXCEPTION: throws an exception if there is an existing database row with
the same identifier
• ReplicationMode.LATEST_VERSION: overwrites the row if its version number is earlier than the
version number of the object, or ignore the object otherwise
Usecases for this feature include reconciling data entered into different database instances,
upgrading system configuration information during product upgrades, rolling back changes made
during non-ACID transactions and more.
223
Chapter 11. Working with objects
• from Session.flush()
1. all entity insertions in the same order the corresponding objects were saved using
Session.save()
2. all entity updates
3. all collection deletions
4. all collection element deletions, updates and insertions
5. all collection insertions
6. all entity deletions in the same order the corresponding objects were deleted using
Session.delete()
An exception is that objects using native ID generation are inserted when they are saved.
Except when you explicitly flush(), there are absolutely no guarantees about when the Session
executes the JDBC calls, only the order in which they are executed. However, Hibernate does
guarantee that the Query.list(..) will never return stale or incorrect data.
It is possible to change the default behavior so that flush occurs less frequently. The FlushMode
class defines three different modes: only flush at commit time when the Hibernate Transaction
API is used, flush automatically using the explained routine, or never flush unless flush() is called
explicitly. The last mode is useful for long running units of work, where a Session is kept open and
disconnected for a long time (see Section 13.3.2, “Extended session and automatic versioning”).
sess = sf.openSession();
Transaction tx = sess.beginTransaction();
sess.setFlushMode(FlushMode.COMMIT); // allow queries to return stale state
During flush, an exception might occur (e.g. if a DML operation violates a constraint). Since
handling exceptions involves some understanding of Hibernate's transactional behavior, we
discuss it in Chapter 13, Transactions and Concurrency.
224
Transitive persistence
If the children in a parent/child relationship would be value typed (e.g. a collection of addresses
or strings), their life cycle would depend on the parent and no further action would be required
for convenient "cascading" of state changes. When the parent is saved, the value-typed child
objects are saved and when the parent is deleted, the children will be deleted, etc. This works for
operations such as the removal of a child from the collection. Since value-typed objects cannot
have shared references, Hibernate will detect this and delete the child from the database.
Now consider the same scenario with parent and child objects being entities, not value-types (e.g.
categories and items, or parent and child cats). Entities have their own life cycle and support
shared references. Removing an entity from the collection does not mean it can be deleted), and
there is by default no cascading of state from one entity to any other associated entities. Hibernate
does not implement persistence by reachability by default.
For each basic operation of the Hibernate session - including persist(), merge(),
saveOrUpdate(), delete(), lock(), refresh(), evict(), replicate() - there is a
corresponding cascade style. Respectively, the cascade styles are named create, merge,
save-update, delete, lock, refresh, evict, replicate. If you want an operation to be
cascaded along an association, you must indicate that in the mapping document. For example:
You can even use cascade="all" to specify that all operations should be cascaded along the
association. The default cascade="none" specifies that no operations are to be cascaded.
In case you are using annotatons you probably have noticed the cascade attribute taking an
array of CascadeType as a value. The cascade concept in JPA is very is similar to the transitive
persistence and cascading of operations as described above, but with slightly different semantics
and cascading types:
225
Chapter 11. Working with objects
Note
A special cascade style, delete-orphan, applies only to one-to-many associations, and indicates
that the delete() operation should be applied to any child object that is removed from the
association. Using annotations there is no CascadeType.DELETE-ORPHAN equivalent. Instead
you can use the attribute orphanRemoval as seen in Example 11.4, “@OneToMany with
orphanRemoval”. If an entity is removed from a @OneToMany collection or an associated entity is
dereferenced from a @OneToOne association, this associated entity can be marked for deletion if
orphanRemoval is set to true.
@Entity
public class Customer {
private Set<Order> orders;
@OneToMany(cascade=CascadeType.ALL, orphanRemoval=true)
public Set<Order> getOrders() { return orders; }
[...]
}
@Entity
public class Order { ... }
Recommendations:
226
Using metadata
Furthermore, a mere reference to a child from a persistent parent will result in save/update of
the child. This metaphor is incomplete, however. A child which becomes unreferenced by its
parent is not automatically deleted, except in the case of a one-to-many association mapped with
cascade="delete-orphan". The precise semantics of cascading operations for a parent/child
relationship are as follows:
Finally, note that cascading of operations can be applied to an object graph at call time or at flush
time. All operations, if enabled, are cascaded to associated entities reachable when the operation
is executed. However, save-update and delete-orphan are transitive for all associated entities
reachable during flush of the Session.
227
Chapter 11. Working with objects
228
Chapter 12.
Read-only entities
Important
Hibernate's treatment of read-only entities may differ from what you may have
encountered elsewhere. Incorrect usage may cause unexpected results.
• Hibernate does not dirty-check the entity's simple properties or single-ended associations;
• Hibernate will not update the version of the read-only entity if only simple properties or single-
ended updatable associations are changed;
In some ways, Hibernate treats read-only entities the same as entities that are not read-only:
• Hibernate updates the version if the entity has a collection with changes that dirties the entity;
Even if an entity is not read-only, its collection association can be affected if it contains a read-
only entity.
For details about the affect of read-only entities on different property and association types, see
Section 12.2, “Read-only affect on property type”.
For details about how to make entities read-only, see Section 12.1, “Making persistent entities
read-only”
• you can map an entity class as immutable; when an entity of an immutable class is
made persistent, Hibernate automatically makes it read-only. see Section 12.1.1, “Entities of
immutable classes” for details
229
Chapter 12. Read-only entities
• you can change a default so that entities loaded into the session by Hibernate are automatically
made read-only; see Section 12.1.2, “Loading persistent entities as read-only” for details
• you can make an HQL query or criteria read-only so that entities loaded when the query or
criteria executes, scrolls, or iterates, are automatically made read-only; see Section 12.1.3,
“Loading read-only entities from an HQL query/criteria” for details
• you can make a persistent entity that is already in the in the session read-only; see
Section 12.1.4, “Making a persistent entity read-only” for details
An entity of an immutable class can created and deleted the same as an entity of a mutable class.
Hibernate treats a persistent entity of an immutable class the same way as a read-only persistent
entity of a mutable class. The only exception is that Hibernate will not allow an entity of an
immutable class to be changed so it is not read-only.
Note
To change the default behavior so Hibernate loads entity instances of mutable classes into the
session and automatically makes them read-only, call:
Session.setDefaultReadOnly( true );
To change the default back so entities loaded by Hibernate are not made read-only, call:
Session.setDefaultReadOnly( false );
Session.isDefaultReadOnly();
230
Loading read-only entities from an HQL query/criteria
• Session.load()
• Session.get()
• Session.merge()
• executing, scrolling, or iterating HQL queries and criteria; to override this setting for a particular
HQL query or criteria see Section 12.1.3, “Loading read-only entities from an HQL query/criteria”
• persistent entities already in the session when the default was changed
• persistent entities that are refreshed via Session.refresh(); a refreshed persistent entity will only
be read-only if it was read-only before refreshing
Note
If Session.isDefaultReadOnly() returns false (the default) when an HQL query or criteria executes,
then entities and proxies of mutable classes loaded by the query will not be read-only.
You can override this behavior so that entities and proxies loaded by an HQL query or criteria are
automatically made read-only.
Query.setReadOnly( true );
Criteria.setReadOnly( true );
231
Chapter 12. Read-only entities
Entities and proxies that exist in the session before being returned by an HQL query or criteria
are not affected.
Uninitialized persistent collections returned by the query are not affected. Later, when
the collection is initialized, entities loaded into the session will be read-only if
Session.isDefaultReadOnly() returns true.
When it is not possible to load and initialize all necessary entities in a single query or criteria,
you can temporarily change the session default to load entities as read-only before the query is
executed. Then you can explicitly initialize proxies and collections before restoring the session
default.
setDefaultReadOnly( true );
Contract contract =
( Contract ) session.createQuery(
"from Contract where customerName = 'Sherman'" )
.uniqueResult();
Hibernate.initialize( contract.getPlan() );
Hibernate.initialize( contract.getVariations() );
Hibernate.initialize( contract.getNotes() );
setDefaultReadOnly( false );
...
tx.commit();
session.close();
If Session.isDefaultReadOnly() returns true, then you can use Query.setReadOnly( false ) and
Criteria.setReadOnly( false ) to override this session setting and load entities that are not read-
only.
Note
Session.setReadOnly(entityOrProxy, true)
232
Read-only affect on property type
Session.setReadOnly(entityOrProxy, false)
Important
When a read-only entity or proxy is changed so it is no longer read-only, Hibernate
assumes that the current state of the read-only entity is consistent with its database
representation. If this is not true, then any non-flushed changes made before or
while the entity was read-only, will be ignored.
To throw away non-flushed changes and make the persistent entity consistent with its database
representation, call:
session.refresh( entity );
To flush changes made before or while the entity was read-only and make the database
representation consistent with the current state of the persistent entity:
233
Chapter 12. Read-only entities
* Behavior is different when the entity having the property/association is read-only, compared to
when it is not read-only.
When a persistent object is read-only, Hibernate does not dirty-check simple properties.
Hibernate will not synchronize simple property state changes to the database. If you have
automatic versioning, Hibernate will not increment the version if any simple properties change.
// contract.getCustomerName() is "Sherman"
contract.setCustomerName( "Yogi" );
tx.commit();
tx = session.beginTransaction();
234
Unidirectional associations
Hibernate treats unidirectional one-to-one and many-to-one associations in the same way when
the owning entity is read-only.
We use the term unidirectional single-ended association when referring to functionality that is
common to unidirectional one-to-one and many-to-one associations.
Hibernate does not dirty-check unidirectional single-ended associations when the owning entity
is read-only.
Note
If automatic versioning is used, Hibernate will not increment the version due to local changes to
unidirectional single-ended associations.
In the following examples, Contract has a unidirectional many-to-one association with Plan.
Contract cascades save and update operations to the association.
The following shows that changing a read-only entity's many-to-one association reference to null
has no effect on the entity's database representation.
235
Chapter 12. Read-only entities
tx.commit();
session.close();
The following shows that, even though an update to a read-only entity's many-to-one association
has no affect on the entity's database representation, flush still cascades the save-update
operation to the locally changed association.
tx.commit();
session.close();
The collection can contain entities that are read-only, as well as entities that are not read-only.
Entities can be added and removed from the collection; changes are flushed to the database.
If automatic versioning is used, Hibernate will update the version due to changes in the collection
if they dirty the owning entity.
236
Bidirectional associations
• updates that change the association reference to null or to refer to a different entity will not be
flushed to the database.
• If automatic versioning is used, Hibernate will not increment the version due to local changes
to the association.
Note
When the owner is not read-only, Hibernate treats an association with a read-only entity the same
as when the association is with an entity that is not read-only.
• the one-to-many side uses a non-inverse collection that contains the read-only entity
• a read-only entity can only be removed from the collection by an orphan delete or by explicitly
deleting the entity.
Hibernate treats bidirectional many-to-many associations owned by a read-only entity the same
as when owned by an entity that is not read-only.
The collection on either side of the association can contain entities that are read-only, as well as
entities that are not read-only.
Entities are added and removed from both sides of the collection; changes are flushed to the
database.
237
Chapter 12. Read-only entities
If automatic versioning is used, Hibernate will update the version due to changes in both sides of
the collection if they dirty the entity owning the respective collections.
238
Chapter 13.
Hibernate does not lock objects in memory. Your application can expect the behavior as defined
by the isolation level of your database transactions. Through Session, which is also a transaction-
scoped cache, Hibernate provides repeatable reads for lookup by identifier and entity queries and
not reporting queries that return scalar values.
In addition to versioning for automatic optimistic concurrency control, Hibernate also offers,
using the SELECT FOR UPDATE syntax, a (minor) API for pessimistic locking of rows. Optimistic
concurrency control and this API are discussed later in this chapter.
The discussion of concurrency control in Hibernate begins with the granularity of Configuration,
SessionFactory, and Session, as well as database transactions and long conversations.
A Session is an inexpensive, non-threadsafe object that should be used once and then discarded
for: a single request, a conversation or a single unit of work. A Session will not obtain a JDBC
Connection, or a Datasource, unless it is needed. It will not consume any resources until used.
In order to reduce lock contention in the database, a database transaction has to be as short
as possible. Long database transactions will prevent your application from scaling to a highly
concurrent load. It is not recommended that you hold a database transaction open during user
think time until the unit of work is complete.
What is the scope of a unit of work? Can a single Hibernate Session span several database
transactions, or is this a one-to-one relationship of scopes? When should you open and close a
Session and how do you demarcate the database transaction boundaries? These questions are
addressed in the following sections.
239
Chapter 13. Transactions and ...
“Long conversations”). So really we are talking about a more abstract notion of a transaction. The
term "business transaction" is also sometimes used in lieu of unit of work.
Do not use the session-per-operation antipattern: do not open and close a Session for every
simple database call in a single thread. The same is true for database transactions. Database calls
in an application are made using a planned sequence; they are grouped into atomic units of work.
This also means that auto-commit after every single SQL statement is useless in an application as
this mode is intended for ad-hoc SQL console work. Hibernate disables, or expects the application
server to disable, auto-commit mode immediately. Database transactions are never optional.
All communication with a database has to occur inside a transaction. Auto-commit behavior for
reading data should be avoided, as many small transactions are unlikely to perform better than
one clearly defined unit of work. The latter is also more maintainable and extensible.
The challenge lies in the implementation. Hibernate provides built-in management of the "current
session" to simplify this pattern. Start a transaction when a server request has to be processed,
and end the transaction before the response is sent to the client. Common solutions are
ServletFilter, AOP interceptor with a pointcut on the service methods, or a proxy/interception
container. An EJB container is a standardized way to implement cross-cutting aspects such as
transaction demarcation on EJB session beans, declaratively with CMT. If you use programmatic
transaction demarcation, for ease of use and code portability use the Hibernate Transaction API
shown later in this chapter.
Your application code can access a "current session" to process the request by calling
sessionFactory.getCurrentSession(). You will always get a Session scoped to the current
database transaction. This has to be configured for either resource-local or JTA environments,
see Section 2.3, “Contextual sessions”.
You can extend the scope of a Session and database transaction until the "view has been
rendered". This is especially useful in servlet applications that utilize a separate rendering phase
after the request has been processed. Extending the database transaction until view rendering,
is achieved by implementing your own interceptor. However, this will be difficult if you rely on
EJBs with container-managed transactions. A transaction will be completed when an EJB method
returns, before rendering of any view can start. See the Hibernate website and forum for tips and
examples relating to this Open Session in View pattern.
240
Considering object identity
accesses. In web and enterprise applications, it is not acceptable for a database transaction to
span a user interaction. Consider the following example:
• The first screen of a dialog opens. The data seen by the user has been loaded in a particular
Session and database transaction. The user is free to modify the objects.
• The user clicks "Save" after 5 minutes and expects their modifications to be made persistent.
The user also expects that they were the only person editing this information and that no
conflicting modification has occurred.
From the point of view of the user, we call this unit of work a long-running conversation or
application transaction. There are many ways to implement this in your application.
A first naive implementation might keep the Session and database transaction open during user
think time, with locks held in the database to prevent concurrent modification and to guarantee
isolation and atomicity. This is an anti-pattern, since lock contention would not allow the application
to scale with the number of concurrent users.
You have to use several database transactions to implement the conversation. In this case,
maintaining isolation of business processes becomes the partial responsibility of the application
tier. A single conversation usually spans several database transactions. It will be atomic if only one
of these database transactions (the last one) stores the updated data. All others simply read data
(for example, in a wizard-style dialog spanning several request/response cycles). This is easier
to implement than it might sound, especially if you utilize some of Hibernate's features:
• Automatic Versioning: Hibernate can perform automatic optimistic concurrency control for you.
It can automatically detect if a concurrent modification occurred during user think time. Check
for this at the end of the conversation.
• Detached Objects: if you decide to use the session-per-request pattern, all loaded instances
will be in the detached state during user think time. Hibernate allows you to reattach the objects
and persist the modifications. The pattern is called session-per-request-with-detached-objects.
Automatic versioning is used to isolate concurrent modifications.
• Extended (or Long) Session: the Hibernate Session can be disconnected from the underlying
JDBC connection after the database transaction has been committed and reconnected when a
new client request occurs. This pattern is known as session-per-conversation and makes even
reattachment unnecessary. Automatic versioning is used to isolate concurrent modifications
and the Session will not be allowed to be flushed automatically, but explicitly.
241
Chapter 13. Transactions and ...
Database Identity
foo.getId().equals( bar.getId() )
JVM Identity
foo==bar
For objects attached to a particular Session (i.e., in the scope of a Session), the two notions
are equivalent and JVM identity for database identity is guaranteed by Hibernate. While the
application might concurrently access the "same" (persistent identity) business object in two
different sessions, the two instances will actually be "different" (JVM identity). Conflicts are
resolved using an optimistic approach and automatic versioning at flush/commit time.
This approach leaves Hibernate and the database to worry about concurrency. It also provides
the best scalability, since guaranteeing identity in single-threaded units of work means that it does
not need expensive locking or other means of synchronization. The application does not need to
synchronize on any business object, as long as it maintains a single thread per Session. Within
a Session the application can safely use == to compare objects.
However, an application that uses == outside of a Session might produce unexpected results. This
might occur even in some unexpected places. For example, if you put two detached instances into
the same Set, both might have the same database identity (i.e., they represent the same row). JVM
identity, however, is by definition not guaranteed for instances in a detached state. The developer
has to override the equals() and hashCode() methods in persistent classes and implement their
own notion of object equality. There is one caveat: never use the database identifier to implement
equality. Use a business key that is a combination of unique, usually immutable, attributes. The
database identifier will change if a transient object is made persistent. If the transient instance
(usually together with detached instances) is held in a Set, changing the hashcode breaks the
contract of the Set. Attributes for business keys do not have to be as stable as database primary
keys; you only have to guarantee stability as long as the objects are in the same Set. See the
Hibernate website for a more thorough discussion of this issue. Please note that this is not a
Hibernate issue, but simply how Java object identity and equality has to be implemented.
• A Session is not thread-safe. Things that work concurrently, like HTTP requests, session beans,
or Swing workers, will cause race conditions if a Session instance is shared. If you keep your
Hibernate Session in your HttpSession (this is discussed later in the chapter), you should
consider synchronizing access to your Http session. Otherwise, a user that clicks reload fast
enough can use the same Session in two concurrently running threads.
• An exception thrown by Hibernate means you have to rollback your database transaction and
close the Session immediately (this is discussed in more detail later in the chapter). If your
242
Database transaction demarcation
Session is bound to the application, you have to stop the application. Rolling back the database
transaction does not put your business objects back into the state they were at the start of the
transaction. This means that the database state and the business objects will be out of sync.
Usually this is not a problem, because exceptions are not recoverable and you will have to start
over after rollback anyway.
• The Session caches every object that is in a persistent state (watched and checked for dirty
state by Hibernate). If you keep it open for a long time or simply load too much data, it will
grow endlessly until you get an OutOfMemoryException. One solution is to call clear() and
evict() to manage the Session cache, but you should consider a Stored Procedure if you need
mass data operations. Some solutions are shown in Chapter 15, Batch processing. Keeping a
Session open for the duration of a user session also means a higher probability of stale data.
A Hibernate application can run in non-managed (i.e., standalone, simple Web- or Swing
applications) and managed J2EE environments. In a non-managed environment, Hibernate
is usually responsible for its own database connection pool. The application developer has
to manually set transaction boundaries (begin, commit, or rollback database transactions)
themselves. A managed environment usually provides container-managed transactions (CMT),
with the transaction assembly defined declaratively (in deployment descriptors of EJB session
beans, for example). Programmatic transaction demarcation is then no longer necessary.
However, it is often desirable to keep your persistence layer portable between non-managed
resource-local environments, and systems that can rely on JTA but use BMT instead of CMT.
In both cases use programmatic transaction demarcation. Hibernate offers a wrapper API called
Transaction that translates into the native transaction system of your deployment environment.
This API is actually optional, but we strongly encourage its use unless you are in a CMT session
bean.
We discussed Flushing the session earlier, so we will now have a closer look at transaction
demarcation and exception handling in both managed and non-managed environments.
243
Chapter 13. Transactions and ...
// do some work
...
tx.commit();
}
catch (RuntimeException e) {
if (tx != null) tx.rollback();
throw e; // or display error message
}
finally {
sess.close();
}
You do not have to flush() the Session explicitly: the call to commit() automatically triggers the
synchronization depending on the FlushMode for the session. A call to close() marks the end of
a session. The main implication of close() is that the JDBC connection will be relinquished by
the session. This Java code is portable and runs in both non-managed and JTA environments.
As outlined earlier, a much more flexible solution is Hibernate's built-in "current session" context
management:
// do some work
...
factory.getCurrentSession().getTransaction().commit();
}
catch (RuntimeException e) {
factory.getCurrentSession().getTransaction().rollback();
throw e; // or display error message
}
You will not see these code snippets in a regular application; fatal (system) exceptions should
always be caught at the "top". In other words, the code that executes Hibernate calls in the
persistence layer, and the code that handles RuntimeException (and usually can only clean up
244
Using JTA
and exit), are in different layers. The current context management by Hibernate can significantly
simplify this design by accessing a SessionFactory. Exception handling is discussed later in this
chapter.
If you use bean-managed transactions (BMT), Hibernate will tell the application server to start and
end a BMT transaction if you use the Transaction API. The transaction management code is
identical to the non-managed environment.
// BMT idiom
Session sess = factory.openSession();
Transaction tx = null;
try {
tx = sess.beginTransaction();
// do some work
...
tx.commit();
}
catch (RuntimeException e) {
if (tx != null) tx.rollback();
throw e; // or display error message
}
finally {
sess.close();
}
If you want to use a transaction-bound Session, that is, the getCurrentSession() functionality
for easy context propagation, use the JTA UserTransaction API directly:
tx.begin();
245
Chapter 13. Transactions and ...
tx.commit();
}
catch (RuntimeException e) {
tx.rollback();
throw e; // or display error message
}
With CMT, transaction demarcation is completed in session bean deployment descriptors, not
programmatically. The code is reduced to:
// CMT idiom
Session sess = factory.getCurrentSession();
// do some work
...
The getCurrentSession() operation has one downside in a JTA environment. There is one
caveat to the use of after_statement connection release mode, which is then used by default.
Due to a limitation of the JTA spec, it is not possible for Hibernate to automatically clean up
any unclosed ScrollableResults or Iterator instances returned by scroll() or iterate().
You must release the underlying database cursor by calling ScrollableResults.close() or
Hibernate.close(Iterator) explicitly from a finally block. Most applications can easily avoid
using scroll() or iterate() from the JTA or CMT code.)
The HibernateException, which wraps most of the errors that can occur in a Hibernate
persistence layer, is an unchecked exception. It was not in older versions of Hibernate. In our
246
Transaction timeout
opinion, we should not force the application developer to catch an unrecoverable exception at a
low layer. In most systems, unchecked and fatal exceptions are handled in one of the first frames
of the method call stack (i.e., in higher layers) and either an error message is presented to the
application user or some other appropriate action is taken. Note that Hibernate might also throw
other unchecked exceptions that are not a HibernateException. These are not recoverable and
appropriate action should be taken.
An important feature provided by a managed environment like EJB, that is never provided for
non-managed code, is transaction timeout. Transaction timeouts ensure that no misbehaving
transaction can indefinitely tie up resources while returning no response to the user. Outside a
managed (JTA) environment, Hibernate cannot fully provide this functionality. However, Hibernate
can at least control data access operations, ensuring that database level deadlocks and queries
with huge result sets are limited by a defined timeout. In a managed environment, Hibernate can
delegate transaction timeout to JTA. This functionality is abstracted by the Hibernate Transaction
object.
// do some work
...
sess.getTransaction().commit()
}
247
Chapter 13. Transactions and ...
catch (RuntimeException e) {
sess.getTransaction().rollback();
throw e; // or display error message
}
finally {
sess.close();
}
setTimeout() cannot be called in a CMT bean, where transaction timeouts must be defined
declaratively.
t.commit();
session.close();
The version property is mapped using <version>, and Hibernate will automatically increment it
during flush if the entity is dirty.
If you are operating in a low-data-concurrency environment, and do not require version checking,
you can use this approach and skip the version check. In this case, last commit wins is the default
strategy for long conversations. Be aware that this might confuse the users of the application,
as they might experience lost updates without error messages or a chance to merge conflicting
changes.
248
Extended session and automatic versioning
Manual version checking is only feasible in trivial circumstances and not practical for most
applications. Often not only single instances, but complete graphs of modified objects, have to
be checked. Hibernate offers automatic version checking with either an extended Session or
detached instances as the design paradigm.
A single Session instance and its persistent instances that are used for the whole conversation are
known as session-per-conversation. Hibernate checks instance versions at flush time, throwing
an exception if concurrent modification is detected. It is up to the developer to catch and handle
this exception. Common options are the opportunity for the user to merge changes or to restart
the business conversation with non-stale data.
The Session is disconnected from any underlying JDBC connection when waiting for user
interaction. This approach is the most efficient in terms of database access. The application does
not version check or reattach detached instances, nor does it have to reload instances in every
database transaction.
foo.setProperty("bar");
The foo object knows which Session it was loaded in. Beginning a new database transaction
on an old session obtains a new connection and resumes the session. Committing a database
transaction disconnects a session from the JDBC connection and returns the connection to
the pool. After reconnection, to force a version check on data you are not updating, you can
call Session.lock() with LockMode.READ on any objects that might have been updated by
another transaction. You do not need to lock any data that you are updating. Usually you would
set FlushMode.MANUAL on an extended Session, so that only the last database transaction
cycle is allowed to actually persist all modifications made in this conversation. Only this last
database transaction will include the flush() operation, and then close() the session to end
the conversation.
This pattern is problematic if the Session is too big to be stored during user think time (for example,
an HttpSession should be kept as small as possible). As the Session is also the first-level cache
and contains all loaded objects, we can probably use this strategy only for a few request/response
cycles. Use a Session only for a single conversation as it will soon have stale data.
249
Chapter 13. Transactions and ...
Note
Earlier versions of Hibernate required explicit disconnection and reconnection of a
Session. These methods are deprecated, as beginning and ending a transaction
has the same effect.
Keep the disconnected Session close to the persistence layer. Use an EJB stateful session bean
to hold the Session in a three-tier environment. Do not transfer it to the web layer, or even serialize
it to a separate tier, to store it in the HttpSession.
Again, Hibernate will check instance versions during flush, throwing an exception if conflicting
updates occurred.
You can also call lock() instead of update(), and use LockMode.READ (performing a version
check and bypassing all caches) if you are sure that the object has not been modified.
Legacy database schemas are often static and cannot be modified. Or, other applications might
access the same database and will not know how to handle version numbers or even timestamps.
In both cases, versioning cannot rely on a particular column in a table. To force a version check
with a comparison of the state of all fields in a row but without a version or timestamp property
mapping, turn on optimistic-lock="all" in the <class> mapping. This conceptually only works
250
Pessimistic locking
if Hibernate can compare the old and the new state (i.e., if you use a single long Session and not
session-per-request-with-detached-objects).
Concurrent modification can be permitted in instances where the changes that have been made
do not overlap. If you set optimistic-lock="dirty" when mapping the <class>, Hibernate will
only compare dirty fields during flush.
In both cases, with dedicated version/timestamp columns or with a full/dirty field comparison,
Hibernate uses a single UPDATE statement, with an appropriate WHERE clause, per entity to execute
the version check and update the information. If you use transitive persistence to cascade
reattachment to associated entities, Hibernate may execute unnecessary updates. This is usually
not a problem, but on update triggers in the database might be executed even when no changes
have been made to detached instances. You can customize this behavior by setting select-
before-update="true" in the <class> mapping, forcing Hibernate to SELECT the instance to
ensure that changes did occur before updating the row.
Hibernate will always use the locking mechanism of the database; it never lock objects in memory.
The LockMode class defines the different lock levels that can be acquired by Hibernate. A lock is
obtained by the following mechanisms:
If Session.load() is called with UPGRADE or UPGRADE_NOWAIT, and the requested object was not
yet loaded by the session, the object is loaded using SELECT ... FOR UPDATE. If load() is called
251
Chapter 13. Transactions and ...
for an object that is already loaded with a less restrictive lock than the one requested, Hibernate
calls lock() for that object.
Session.lock() performs a version number check if the specified lock mode is READ, UPGRADE or
UPGRADE_NOWAIT. In the case of UPGRADE or UPGRADE_NOWAIT, SELECT ... FOR UPDATE is used.
If the requested lock mode is not supported by the database, Hibernate uses an appropriate
alternate mode instead of throwing an exception. This ensures that applications are portable.
• ON_CLOSE: is the legacy behavior described above. The Hibernate session obtains a connection
when it first needs to perform some JDBC access and maintains that connection until the session
is closed.
• AFTER_TRANSACTION: releases connections after a org.hibernate.Transaction has been
completed.
• AFTER_STATEMENT (also referred to as aggressive release): releases connections after every
statement execution. This aggressive releasing is skipped if that statement leaves open
resources associated with the given session. Currently the only situation where this occurs is
through the use of org.hibernate.ScrollableResults.
• auto (the default): this choice delegates to the release mode returned by the
org.hibernate.transaction.TransactionFactory.getDefaultReleaseMode() method.
For JTATransactionFactory, this returns ConnectionReleaseMode.AFTER_STATEMENT; for
JDBCTransactionFactory, this returns ConnectionReleaseMode.AFTER_TRANSACTION. Do
not change this default behavior as failures due to the value of this setting tend to indicate bugs
and/or invalid assumptions in user code.
• on_close: uses ConnectionReleaseMode.ON_CLOSE. This setting is left for backwards
compatibility, but its use is discouraged.
• after_transaction: uses ConnectionReleaseMode.AFTER_TRANSACTION. This setting
should not be used in JTA environments. Also note that with
ConnectionReleaseMode.AFTER_TRANSACTION, if a session is considered to be in auto-
commit mode, connections will be released as if the release mode were AFTER_STATEMENT.
• after_statement: uses ConnectionReleaseMode.AFTER_STATEMENT. Additionally,
the configured ConnectionProvider is consulted to see if it supports this
252
Connection release modes
253
254
Chapter 14.
14.1. Interceptors
The Interceptor interface provides callbacks from the session to the application, allowing the
application to inspect and/or manipulate properties of a persistent object before it is saved,
updated, deleted or loaded. One possible use for this is to track auditing information. For example,
the following Interceptor automatically sets the createTimestamp when an Auditable is
created and updates the lastUpdateTimestamp property when an Auditable is updated.
package org.hibernate.test;
import java.io.Serializable;
import java.util.Date;
import java.util.Iterator;
import org.hibernate.EmptyInterceptor;
import org.hibernate.Transaction;
import org.hibernate.type.Type;
255
Chapter 14. Interceptors and ...
}
}
return false;
}
A Session-scoped interceptor is specified when a session is opened using one of the overloaded
SessionFactory.openSession() methods accepting an Interceptor.
256
Event system
use, the supplied interceptor will be applied to all sessions opened from that SessionFactory.
SessionFactory-scoped interceptors must be thread safe. Ensure that you do not store session-
specific states, since multiple sessions will use this interceptor potentially concurrently.
All the methods of the Session interface correlate to an event. You have a LoadEvent, a
FlushEvent, etc. Consult the XML configuration-file DTD or the org.hibernate.event package
for the full list of defined event types. When a request is made of one of these methods, the
Hibernate Session generates an appropriate event and passes it to the configured event listeners
for that type. Out-of-the-box, these listeners implement the same processing in which those
methods always resulted. However, you are free to implement a customization of one of the
listener interfaces (i.e., the LoadEvent is processed by the registered implementation of the
LoadEventListener interface), in which case their implementation would be responsible for
processing any load() requests made of the Session.
The listeners should be considered singletons. This means they are shared between requests,
and should not save any state as instance variables.
A custom listener implements the appropriate interface for the event it wants to process and/or
extend one of the convenience base classes (or even the default event listeners used by Hibernate
out-of-the-box as these are declared non-final for this purpose). Custom listeners can either be
registered programmatically through the Configuration object, or specified in the Hibernate
configuration XML. Declarative configuration through the properties file is not supported. Here is
an example of a custom load event listener:
You also need a configuration entry telling Hibernate to use the listener in addition to the default
listener:
<hibernate-configuration>
257
Chapter 14. Interceptors and ...
<session-factory>
...
<event type="load">
<listener class="com.eg.MyLoadListener"/>
<listener class="org.hibernate.event.def.DefaultLoadEventListener"/>
</event>
</session-factory>
</hibernate-configuration>
Listeners registered declaratively cannot share instances. If the same class name is used in
multiple <listener/> elements, each reference will result in a separate instance of that class.
If you need to share listener instances between listener types you must use the programmatic
registration approach.
Why implement an interface and define the specific type during configuration? A listener
implementation could implement multiple event listener interfaces. Having the type additionally
defined during registration makes it easier to turn custom listeners on or off during configuration.
First, you must configure the appropriate event listeners, to enable the use of JAAS authorization.
258
Hibernate declarative security
The role names are the roles understood by your JACC provider.
259
260
Chapter 15.
Batch processing
A naive approach to inserting 100,000 rows in the database using Hibernate might look like this:
This would fall over with an OutOfMemoryException somewhere around the 50,000th row. That is
because Hibernate caches all the newly inserted Customer instances in the session-level cache.
In this chapter we will show you how to avoid this problem.
If you are undertaking batch processing you will need to enable the use of JDBC batching. This
is absolutely essential if you want to achieve optimal performance. Set the JDBC batch size to a
reasonable number (10-50, for example):
hibernate.jdbc.batch_size 20
Hibernate disables insert batching at the JDBC level transparently if you use an identity identifier
generator.
You can also do this kind of work in a process where interaction with the second-level cache is
completely disabled:
hibernate.cache.use_second_level_cache false
However, this is not absolutely necessary, since we can explicitly set the CacheMode to disable
interaction with the second-level cache.
261
Chapter 15. Batch processing
tx.commit();
session.close();
tx.commit();
session.close();
262
DML-style operations
tx.commit();
session.close();
In this code example, the Customer instances returned by the query are immediately detached.
They are never associated with any persistence context.
The insert(), update() and delete() operations defined by the StatelessSession interface
are considered to be direct database row-level operations. They result in the immediate execution
of a SQL INSERT, UPDATE or DELETE respectively. They have different semantics to the save(),
saveOrUpdate() and delete() operations defined by the Session interface.
The pseudo-syntax for UPDATE and DELETE statements is: ( UPDATE | DELETE ) FROM?
EntityName (WHERE where_conditions)?.
263
Chapter 15. Batch processing
String hqlUpdate = "update Customer c set c.name = :newName where c.name = :oldName";
// or String hqlUpdate = "update Customer set name = :newName where name = :oldName";
int updatedEntities = s.createQuery( hqlUpdate )
.setString( "newName", newName )
.setString( "oldName", oldName )
.executeUpdate();
tx.commit();
session.close();
In keeping with the EJB3 specification, HQL UPDATE statements, by default, do not effect the
version or the timestamp property values for the affected entities. However, you can force
Hibernate to reset the version or timestamp property values through the use of a versioned
update. This is achieved by adding the VERSIONED keyword after the UPDATE keyword.
The int value returned by the Query.executeUpdate() method indicates the number of entities
effected by the operation. This may or may not correlate to the number of rows effected in the
database. An HQL bulk operation might result in multiple actual SQL statements being executed
(for joined-subclass, for example). The returned number indicates the number of actual entities
affected by the statement. Going back to the example of joined-subclass, a delete against one
264
DML-style operations
of the subclasses may actually result in deletes against not just the table to which that subclass
is mapped, but also the "root" table and potentially joined-subclass tables further down the
inheritance hierarchy.
The pseudo-syntax for INSERT statements is: INSERT INTO EntityName properties_list
select_statement. Some points to note:
• Only the INSERT INTO ... SELECT ... form is supported; not the INSERT INTO ... VALUES ...
form.
The properties_list is analogous to the column specification in the SQL INSERT statement.
For entities involved in mapped inheritance, only properties directly defined on that given
class-level can be used in the properties_list. Superclass properties are not allowed and
subclass properties do not make sense. In other words, INSERT statements are inherently non-
polymorphic.
• select_statement can be any valid HQL select query, with the caveat that the return types must
match the types expected by the insert. Currently, this is checked during query compilation
rather than allowing the check to relegate to the database. This might, however, cause problems
between Hibernate Types which are equivalent as opposed to equal. This might cause issues
with mismatches between a property defined as a org.hibernate.type.DateType and a
property defined as a org.hibernate.type.TimestampType, even though the database might
not make a distinction or might be able to handle the conversion.
• For the id property, the insert statement gives you two options. You can either explicitly specify
the id property in the properties_list, in which case its value is taken from the corresponding
select expression, or omit it from the properties_list, in which case a generated value is used.
This latter option is only available when using id generators that operate in the database;
attempting to use this option with any "in memory" type generators will cause an exception
during parsing. For the purposes of this discussion, in-database generators are considered
to be org.hibernate.id.SequenceGenerator (and its subclasses) and any implementers of
org.hibernate.id.PostInsertIdentifierGenerator. The most notable exception here is
org.hibernate.id.TableHiLoGenerator, which cannot be used because it does not expose
a selectable way to get its values.
• For properties mapped as either version or timestamp, the insert statement gives you two
options. You can either specify the property in the properties_list, in which case its value is
taken from the corresponding select expressions, or omit it from the properties_list, in which
case the seed value defined by the org.hibernate.type.VersionType is used.
String hqlInsert = "insert into DelinquentAccount (id, name) select c.id, c.name from Customer
c where ...";
int createdEntities = s.createQuery( hqlInsert )
.executeUpdate();
tx.commit();
265
Chapter 15. Batch processing
session.close();
266
Chapter 16.
This manual uses lowercase HQL keywords. Some users find queries with uppercase keywords
more readable, but this convention is unsuitable for queries embedded in Java code.
from eg.Cat
This returns all instances of the class eg.Cat. You do not usually need to qualify the class name,
since auto-import is the default. For example:
from Cat
In order to refer to the Cat in other parts of the query, you will need to assign an alias. For example:
This query assigns the alias cat to Cat instances, so you can use that alias later in the query.
The as keyword is optional. You could also write:
267
Chapter 16. HQL: The Hibernat...
It is good practice to name query aliases using an initial lowercase as this is consistent with Java
naming standards for local variables (e.g. domesticCat).
• inner join
• left outer join
• right outer join
• full join (not usually useful)
The inner join, left outer join and right outer join constructs may be abbreviated.
You may supply extra join conditions using the HQL with keyword.
A "fetch" join allows associations or collections of values to be initialized along with their parent
objects using a single select. This is particularly useful in the case of a collection. It effectively
268
Forms of join syntax
overrides the outer join and lazy declarations of the mapping file for associations and collections.
See Section 21.1, “Fetching strategies” for more information.
A fetch join does not usually need to assign an alias, because the associated objects should not
be used in the where clause (or any other clause). The associated objects are also not returned
directly in the query results. Instead, they may be accessed via the parent object. The only reason
you might need an alias is if you are recursively join fetching a further collection:
The fetch construct cannot be used in queries called using iterate() (though scroll() can
be used). Fetch should be used together with setMaxResults() or setFirstResult(), as these
operations are based on the result rows which usually contain duplicates for eager collection
fetching, hence, the number of rows is not what you would expect. Fetch should also not be
used together with impromptu with condition. It is possible to create a cartesian product by join
fetching more than one collection in a query, so take care in this case. Join fetching multiple
collection roles can produce unexpected results for bag mappings, so user discretion is advised
when formulating queries in this case. Finally, note that full join fetch and right join fetch
are not meaningful.
If you are using property-level lazy fetching (with bytecode instrumentation), it is possible to force
Hibernate to fetch the lazy properties in the first query immediately using fetch all properties.
from Document doc fetch all properties where lower(doc.name) like '%cats%'
The queries shown in the previous section all use the explicit form, that is, where the join
keyword is explicitly used in the from clause. This is the recommended form.
269
Chapter 16. HQL: The Hibernat...
The implicit form does not use the join keyword. Instead, the associations are "dereferenced"
using dot-notation. implicit joins can appear in any of the HQL clauses. implicit join result in
inner joins in the resulting SQL statement.
• The special property (lowercase) id may be used to reference the identifier property of an entity
provided that the entity does not define a non-identifier property named id.
• If the entity defines a named identifier property, you can use that property name.
References to composite identifier properties follow the same naming rules. If the entity has a non-
identifier property named id, the composite identifier property can only be referenced by its defined
named. Otherwise, the special id property can be used to reference the identifier property.
Important
Please note that, starting in version 3.2.2, this has changed significantly. In
previous versions, id always referred to the identifier property regardless of its
actual name. A ramification of that decision was that non-identifier properties
named id could never be referenced in Hibernate queries.
select mate
from Cat as cat
inner join cat.mate as mate
The query will select mates of other Cats. You can express this query more compactly as:
Queries can return properties of any value type including properties of component type:
270
The select clause
Queries can return multiple objects and/or properties as an array of type Object[]:
Or as a List:
Or - assuming that the class Family has an appropriate constructor - as an actual typesafe Java
object:
This is most useful when used together with select new map:
271
Chapter 16. HQL: The Hibernat...
You can use arithmetic operators, concatenation, and recognized SQL functions in the select
clause:
The distinct and all keywords can be used and have the same semantics as in SQL.
returns instances not only of Cat, but also of subclasses like DomesticCat. Hibernate queries
can name any Java class or interface in the from clause. The query will return instances of all
persistent classes that extend that class or implement the interface. The following query would
return all persistent objects:
272
The where clause
from java.lang.Object o
These last two queries will require more than one SQL SELECT. This means that the order by
clause does not correctly order the whole result set. It also means you cannot call these queries
using Query.scroll().
select foo
from Foo foo, Bar bar
where foo.startDate = bar.date
returns all instances of Foo with an instance of bar with a date property equal to the startDate
property of the Foo. Compound path expressions make the where clause extremely powerful.
Consider the following:
This query translates to an SQL query with a table (inner) join. For example:
273
Chapter 16. HQL: The Hibernat...
would result in a query that would require four table joins in SQL.
The = operator can be used to compare not only properties, but also instances:
The special property (lowercase) id can be used to reference the unique identifier of an object.
See Section 16.5, “Referring to identifier property” for more information.
The second query is efficient and does not require a table join.
Properties of composite identifiers can also be used. Consider the following example where
Person has composite identifiers consisting of country and medicareNumber:
Once again, the second query does not require a table join.
See Section 16.5, “Referring to identifier property” for more information regarding referencing
identifier properties)
The special property class accesses the discriminator value of an instance in the case of
polymorphic persistence. A Java class name embedded in the where clause will be translated to
its discriminator value.
274
Expressions
You can also use components or composite user types, or properties of said component types.
See Section 16.17, “Components” for more information.
An "any" type has the special properties id and class that allows you to express a join in the
following way (where AuditLog.item is a property mapped with <any>):
The log.item.class and payment.class would refer to the values of completely different
database columns in the above query.
16.10. Expressions
Expressions used in the where clause include the following:
• mathematical operators: +, -, *, /
• binary comparison operators: =, >=, <=, <>, !=, like
• logical operations and, or, not
• Parentheses ( ) that indicates grouping
• in, not in, between, is null, is not null, is empty, is not empty, member of and
not member of
• "Simple" case, case ... when ... then ... else ... end, and "searched" case, case
when ... then ... else ... end
• string concatenation ...||... or concat(...,...)
• current_date(), current_time(), and current_timestamp()
• second(...), minute(...), hour(...), day(...), month(...), and year(...)
• Any function or operator defined by EJB-QL 3.0: substring(), trim(), lower(), upper(),
length(), locate(), abs(), sqrt(), bit_length(), mod()
• coalesce() and nullif()
• str() for converting numeric or temporal values to a readable string
• cast(... as ...), where the second argument is the name of a Hibernate type, and
extract(... from ...) if ANSI cast() and extract() is supported by the underlying
database
• the HQL index() function, that applies to aliases of a joined indexed collection
• HQL functions that take collection-valued path expressions: size(), minelement(),
maxelement(), minindex(), maxindex(), along with the special elements() and indices
functions that can be quantified using some, all, exists, any, in.
• Any database-supported SQL scalar function like sign(), trunc(), rtrim(), and sin()
• JDBC-style positional parameters ?
• named parameters :name, :start_date, and :x1
275
Chapter 16. HQL: The Hibernat...
from DomesticCat cat where cat.name not between 'A' and 'B'
Similarly, is null and is not null can be used to test for null values.
Booleans can be easily used in expressions by declaring HQL query substitutions in Hibernate
configuration:
This will replace the keywords true and false with the literals 1 and 0 in the translated SQL
from this HQL:
You can test the size of a collection with the special property size or the special size() function.
For indexed collections, you can refer to the minimum and maximum indices using minindex
and maxindex functions. Similarly, you can refer to the minimum and maximum elements of a
collection of basic type using the minelement and maxelement functions. For example:
276
Expressions
The SQL functions any, some, all, exists, in are supported when passed the element or
index set of a collection (elements and indices functions) or the result of a subquery (see below):
Note that these constructs - size, elements, indices, minindex, maxindex, minelement,
maxelement - can only be used in the where clause in Hibernate3.
Elements of indexed collections (arrays, lists, and maps) can be referred to by index in a where
clause only:
277
Chapter 16. HQL: The Hibernat...
HQL also provides the built-in index() function for elements of a one-to-many association or
collection of values.
Consider how much longer and less readable the following query would be in SQL:
select cust
from Product prod,
Store store
inner join store.customers cust
where prod.name = 'widget'
and store.location.name in ( 'Melbourne', 'Sydney' )
and prod = all elements(cust.currentOrder.lineItems)
278
The order by clause
SQL functions and aggregate functions are allowed in the having and order by clauses if they
are supported by the underlying database (i.e., not in MySQL).
select cat
279
Chapter 16. HQL: The Hibernat...
Neither the group by clause nor the order by clause can contain arithmetic expressions.
Hibernate also does not currently expand a grouped entity, so you cannot write group by cat if
all properties of cat are non-aggregated. You have to list all non-aggregated properties explicitly.
16.13. Subqueries
For databases that support subselects, Hibernate supports subqueries within queries. A subquery
must be surrounded by parentheses (often by an SQL aggregate function call). Even correlated
subqueries (subqueries that refer to an alias in the outer query) are allowed.
Note that HQL subqueries can occur only in the select or where clauses.
Note that subqueries can also utilize row value constructor syntax. See Section 16.18, “Row
value constructor syntax” for more information.
280
HQL examples
The following query returns the order id, number of items, the given minimum total value and the
total value of the order for all unpaid orders for a particular customer. The results are ordered
by total value. In determining the prices, it uses the current catalog. The resulting SQL query,
against the ORDER, ORDER_LINE, PRODUCT, CATALOG and PRICE tables has four inner joins and an
(uncorrelated) subselect.
What a monster! Actually, in real life, I'm not very keen on subqueries, so my query was really
more like this:
281
Chapter 16. HQL: The Hibernat...
The next query counts the number of payments in each status, excluding all payments in the
AWAITING_APPROVAL status where the most recent status change was made by the current user.
It translates to an SQL query with two inner joins and a correlated subselect against the PAYMENT,
PAYMENT_STATUS and PAYMENT_STATUS_CHANGE tables.
If the statusChanges collection was mapped as a list, instead of a set, the query would have
been much simpler to write.
The next query uses the MS SQL Server isNull() function to return all the accounts and unpaid
payments for the organization to which the current user belongs. It translates to an SQL query with
three inner joins, an outer join and a subselect against the ACCOUNT, PAYMENT, PAYMENT_STATUS,
ACCOUNT_TYPE, ORGANIZATION and ORG_USER tables.
For some databases, we would need to do away with the (correlated) subselect.
282
Bulk update and delete
If your database supports subselects, you can place a condition upon selection size in the where
clause of your query:
If your database does not support subselects, use the following query:
As this solution cannot return a User with zero messages because of the inner join, the following
form is also useful:
283
Chapter 16. HQL: The Hibernat...
16.17. Components
Components can be used similarly to the simple value types that are used in HQL queries. They
can appear in the select clause as follows:
where the Person's name property is a component. Components can also be used in the where
clause:
284
Row value constructor syntax
That is valid syntax although it is a little verbose. You can make this more concise by using row
value constructor syntax:
Using row value constructor syntax can also be beneficial when using subqueries that need
to compare against multiple values:
285
Chapter 16. HQL: The Hibernat...
One thing to consider when deciding if you want to use this syntax, is that the query will be
dependent upon the ordering of the component sub-properties in the metadata.
286
Chapter 17.
Criteria Queries
Hibernate features an intuitive, extensible criteria query API.
287
Chapter 17. Criteria Queries
There are a range of built-in criterion types (Restrictions subclasses). One of the most useful
allows you to specify SQL directly.
The {alias} placeholder with be replaced by the row alias of the queried entity.
You can also obtain a criterion from a Property instance. You can create a Property by calling
Property.forName():
288
Associations
17.4. Associations
By navigating associations using createCriteria() you can specify constraints upon related
entities:
The second createCriteria() returns a new instance of Criteria that refers to the elements
of the kittens collection.
The kittens collections held by the Cat instances returned by the previous two queries are not
pre-filtered by the criteria. If you want to retrieve just the kittens that match the criteria, you must
use a ResultTransformer.
Additionally you may manipulate the result set using a left outer join:
289
Chapter 17. Criteria Queries
.list();
This will return all of the Cats with a mate whose name starts with "good" ordered by their mate's
age, and all cats who do not have a mate. This is useful when there is a need to order or limit
in the database prior to returning complex/large result sets, and removes many instances where
multiple queries would have to be performed and the results unioned by java in memory.
Without this feature, first all of the cats without a mate would need to be loaded in one query.
A second query would need to retreive the cats with mates who's name started with "good" sorted
by the mates age.
This query will fetch both mate and kittens by outer join. See Section 21.1, “Fetching strategies”
for more information.
Version properties, identifiers and associations are ignored. By default, null valued properties are
excluded.
290
Projections, aggregation and grouping
You can even use examples to place criteria upon associated objects.
There is no explicit "group by" necessary in a criteria query. Certain projection types are defined
to be grouping projections, which also appear in the SQL group by clause.
An alias can be assigned to a projection so that the projected value can be referred to in restrictions
or orderings. Here are two different ways to do this:
291
Chapter 17. Criteria Queries
The alias() and as() methods simply wrap a projection instance in another, aliased, instance of
Projection. As a shortcut, you can assign an alias when you add the projection to a projection list:
292
Detached queries and subqueries
293
Chapter 17. Criteria Queries
First, map the natural key of your entity using <natural-id> and enable use of the second-level
cache.
<class name="User">
<cache usage="read-write"/>
<id name="id">
<generator class="increment"/>
</id>
<natural-id>
<property name="name"/>
<property name="org"/>
</natural-id>
<property name="password"/>
</class>
This functionality is not intended for use with entities with mutable natural keys.
Once you have enabled the Hibernate query cache, the Restrictions.naturalId() allows you
to make use of the more efficient cache algorithm.
session.createCriteria(User.class)
.add( Restrictions.naturalId()
.set("name", "gavin")
.set("org", "hb")
).setCacheable(true)
.uniqueResult();
294
Chapter 18.
Native SQL
You can also express queries in the native SQL dialect of your database. This is useful if you want
to utilize database-specific features such as query hints or the CONNECT keyword in Oracle. It also
provides a clean migration path from a direct SQL/JDBC based application to Hibernate.
Hibernate3 allows you to specify handwritten SQL, including stored procedures, for all create,
update, delete, and load operations.
These will return a List of Object arrays (Object[]) with scalar values for each column in the CATS
table. Hibernate will use ResultSetMetadata to deduce the actual order and types of the returned
scalar values.
This will return Object arrays, but now it will not use ResultSetMetadata but will instead explicitly
get the ID, NAME and BIRTHDATE column as respectively a Long, String and a Short from the
underlying resultset. This also means that only these three columns will be returned, even though
the query is using * and could return more than the three listed columns.
295
Chapter 18. Native SQL
It is possible to leave out the type information for all or some of the scalars.
This is essentially the same query as before, but now ResultSetMetaData is used to determine
the type of NAME and BIRTHDATE, where as the type of ID is explicitly specified.
Assuming that Cat is mapped as a class with the columns ID, NAME and BIRTHDATE the above
queries will both return a List where each element is a Cat entity.
If the entity is mapped with a many-to-one to another entity it is required to also return this when
performing the native query, otherwise a database specific "column not found" error will occur.
The additional columns will automatically be returned when using the * notation, but we prefer to
be explicit as in the following example for a many-to-one to a Dog:
296
Returning multiple entities
sess.createSQLQuery("SELECT c.ID, NAME, BIRTHDATE, DOG_ID, D_ID, D_NAME FROM CATS c, DOGS d
WHERE c.DOG_ID = d.D_ID")
.addEntity("cat", Cat.class)
.addJoin("cat.dog");
In this example, the returned Cat's will have their dog property fully initialized without any extra
roundtrip to the database. Notice that you added an alias name ("cat") to be able to specify the
target property path of the join. It is possible to do the same eager joining for collections, e.g. if
the Cat had a one-to-many to Dog instead.
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE, D_ID, D_NAME, CAT_ID FROM CATS c, DOGS d WHERE
c.ID = d.CAT_ID")
.addEntity("cat", Cat.class)
.addJoin("cat.dogs");
At this stage you are reaching the limits of what is possible with native queries, without starting to
enhance the sql queries to make them usable in Hibernate. Problems can arise when returning
multiple entities of the same type or when the default alias/column names are not enough.
Until now, the result set column names are assumed to be the same as the column names
specified in the mapping document. This can be problematic for SQL queries that join multiple
tables, since the same column names can appear in more than one table.
Column alias injection is needed in the following query (which most likely will fail):
The query was intended to return two Cat instances per row: a cat and its mother. The query will,
however, fail because there is a conflict of names; the instances are mapped to the same column
names. Also, on some databases the returned column aliases will most likely be on the form "c.ID",
"c.NAME", etc. which are not equal to the columns specified in the mappings ("ID" and "NAME").
297
Chapter 18. Native SQL
• the SQL query string, with placeholders for Hibernate to inject column aliases
The {cat.*} and {mother.*} notation used above is a shorthand for "all properties". Alternatively,
you can list the columns explicitly, but even in this case Hibernate injects the SQL column aliases
for each property. The placeholder for a column alias is just the property name qualified by the
table alias. In the following example, you retrieve Cats and their mothers from a different table
(cat_log) to the one declared in the mapping metadata. You can even use the property aliases
in the where clause.
In most cases the above alias injection is needed. For queries relating to more complex mappings,
like composite properties, inheritance discriminators, collections etc., you can use specific aliases
that allow Hibernate to inject the proper aliases.
The following table shows the different ways you can use the alias injection. Please note that the
alias names in the result are simply examples; each alias will have a unique and probably different
name when used.
Discriminator of an {[aliasname].class}
DISC as {item.class}
entity
All properties of an {[aliasname].*} {item.*}
entity
A collection key {[aliasname].key} ORGID as {coll.key}
298
Returning non-managed entities
• a result transformer
The above query will return a list of CatDTO which has been instantiated and injected the values
of NAME and BIRTHNAME into its corresponding properties or fields.
18.1.7. Parameters
Native SQL queries support positional as well as named parameters:
299
Chapter 18. Native SQL
Example 18.1. Named sql query using the <sql-query> maping element
<sql-query name="persons">
<return alias="person" class="eg.Person"/>
SELECT person.NAME AS {person.name},
person.AGE AS {person.age},
person.SEX AS {person.sex}
FROM PERSON person
WHERE person.NAME LIKE :namePattern
</sql-query>
The <return-join> element is use to join associations and the <load-collection> element is
used to define queries which initialize collections,
<sql-query name="personsWith">
<return alias="person" class="eg.Person"/>
<return-join alias="address" property="person.mailingAddress"/>
SELECT person.NAME AS {person.name},
person.AGE AS {person.age},
person.SEX AS {person.sex},
address.STREET AS {address.street},
address.CITY AS {address.city},
address.STATE AS {address.state},
address.ZIP AS {address.zip}
FROM PERSON person
JOIN ADDRESS address
ON person.ID = address.PERSON_ID AND address.TYPE='MAILING'
WHERE person.NAME LIKE :namePattern
</sql-query>
A named SQL query may return a scalar value. You must declare the column alias and Hibernate
type using the <return-scalar> element:
300
Named SQL queries
<sql-query name="mySqlQuery">
<return-scalar column="name" type="string"/>
<return-scalar column="age" type="long"/>
SELECT p.NAME AS name,
p.AGE AS age,
FROM PERSON p WHERE p.NAME LIKE 'Hiber%'
</sql-query>
You can externalize the resultset mapping information in a <resultset> element which will allow
you to either reuse them across several named queries or through the setResultSetMapping()
API.
<resultset name="personAddress">
<return alias="person" class="eg.Person"/>
<return-join alias="address" property="person.mailingAddress"/>
</resultset>
You can, alternatively, use the resultset mapping information in your hbm files directly in java code.
So far we have only looked at externalizing SQL queries using Hibernate mapping
files. The same concept is also available with anntations and is called named native
301
Chapter 18. Native SQL
In Example 18.8, “Implicit result set mapping” the result set mapping is implicit. We only describe
the entity class of the result set mapping. The property / column mappings is done using the entity
mapping values. In this case the model property is bound to the model_txt column.
Finally, if the association to a related entity involve a composite primary key, a @FieldResult
element should be used for each foreign key column. The @FieldResult name is composed of
the property name for the relationship, followed by a dot ("."), followed by the name or the field or
property of the primary key. This can be seen in Example 18.9, “Using dot notation in @FieldResult
for specifying associations ”.
302
Named SQL queries
@Entity
@SqlResultSetMapping(name="implicit",
entities=@EntityResult(entityClass=SpaceShip.class))
@NamedNativeQuery(name="implicitSample",
query="select * from SpaceShip",
resultSetMapping="implicit")
public class SpaceShip {
private String name;
private String model;
private double speed;
@Id
public String getName() {
return name;
}
@Column(name="model_txt")
public String getModel() {
return model;
}
@Entity
@SqlResultSetMapping(name="compositekey",
entities=@EntityResult(entityClass=SpaceShip.class,
fields = {
@FieldResult(name="name", column = "name"),
@FieldResult(name="model", column = "model"),
@FieldResult(name="speed", column = "speed"),
@FieldResult(name="captain.firstname", column = "firstn"),
@FieldResult(name="captain.lastname", column = "lastn"),
@FieldResult(name="dimensions.length", column = "length"),
@FieldResult(name="dimensions.width", column = "width")
303
Chapter 18. Native SQL
}),
columns = { @ColumnResult(name = "surface"),
@ColumnResult(name = "volume") } )
@NamedNativeQuery(name="compositekey",
query="select name, model, speed, lname as lastn, fname as firstn, length, width, length
* width as surface from SpaceShip",
resultSetMapping="compositekey")
} )
public class SpaceShip {
private String name;
private String model;
private double speed;
private Captain captain;
private Dimensions dimensions;
@Id
public String getName() {
return name;
}
@ManyToOne(fetch= FetchType.LAZY)
@JoinColumns( {
@JoinColumn(name="fname", referencedColumnName = "firstname"),
@JoinColumn(name="lname", referencedColumnName = "lastname")
} )
public Captain getCaptain() {
return captain;
}
304
Named SQL queries
this.dimensions = dimensions;
}
}
@Entity
@IdClass(Identity.class)
public class Captain implements Serializable {
private String firstname;
private String lastname;
@Id
public String getFirstname() {
return firstname;
}
@Id
public String getLastname() {
return lastname;
}
Tip
If you retrieve a single entity using the default mapping, you can specify the
resultClass attribute instead of resultSetMapping:
In some of your native queries, you'll have to return scalar values, for example when building
report queries. You can map them in the @SqlResultsetMapping through @ColumnResult. You
actually can even mix, entities and scalar returns in the same native query (this is probably not
that common though).
@SqlResultSetMapping(name="scalar", columns=@ColumnResult(name="dimension"))
@NamedNativeQuery(name="scalar", query="select length*width as dimension from
SpaceShip", resultSetMapping="scalar")
305
Chapter 18. Native SQL
An other query hint specific to native queries has been introduced: org.hibernate.callable
which can be true or false depending on whether the query is a stored procedure or not.
You can explicitly tell Hibernate what column aliases to use with <return-property>, instead of
using the {}-syntax to let Hibernate inject its own aliases.For example:
<sql-query name="mySqlQuery">
<return alias="person" class="eg.Person">
<return-property name="name" column="myName"/>
<return-property name="age" column="myAge"/>
<return-property name="sex" column="mySex"/>
</return>
SELECT person.NAME AS myName,
person.AGE AS myAge,
person.SEX AS mySex,
FROM PERSON person WHERE person.NAME LIKE :name
</sql-query>
<return-property> also works with multiple columns. This solves a limitation with the {}-syntax
which cannot allow fine grained control of multi-column properties.
<sql-query name="organizationCurrentEmployments">
<return alias="emp" class="Employment">
<return-property name="salary">
<return-column name="VALUE"/>
<return-column name="CURRENCY"/>
</return-property>
<return-property name="endDate" column="myEndDate"/>
</return>
SELECT EMPLOYEE AS {emp.employee}, EMPLOYER AS {emp.employer},
STARTDATE AS {emp.startDate}, ENDDATE AS {emp.endDate},
REGIONCODE as {emp.regionCode}, EID AS {emp.id}, VALUE, CURRENCY
FROM EMPLOYMENT
WHERE EMPLOYER = :id AND ENDDATE IS NULL
ORDER BY STARTDATE ASC
</sql-query>
In this example <return-property> was used in combination with the {}-syntax for injection.
This allows users to choose how they want to refer column and properties.
If your mapping has a discriminator you must use <return-discriminator> to specify the
discriminator column.
306
Using stored procedures for querying
Hibernate3 provides support for queries via stored procedures and functions. Most of the following
documentation is equivalent for both. The stored procedure/function must return a resultset as
the first out-parameter to be able to work with Hibernate. An example of such a stored function
in Oracle 9 and higher is as follows:
To use this query in Hibernate you need to map it via a named query.
Stored procedures currently only return scalars and entities. <return-join> and <load-
collection> are not supported.
You cannot use stored procedures with Hibernate unless you follow some procedure/function
rules. If they do not follow those rules they are not usable with Hibernate. If you still want to use
these procedures you have to execute them via session.connection(). The rules are different
for each database, since database vendors have different stored procedure semantics/syntax.
307
Chapter 18. Native SQL
• A function must return a result set. The first parameter of a procedure must be an OUT that
returns a result set. This is done by using a SYS_REFCURSOR type in Oracle 9 or 10. In Oracle
you need to define a REF CURSOR type. See Oracle literature for further information.
• The procedure must return a result set. Note that since these servers can return multiple result
sets and update counts, Hibernate will iterate the results and take the first result that is a result
set as its return value. Everything else will be discarded.
• If you can enable SET NOCOUNT ON in your procedure it will probably be more efficient, but this
is not a requirement.
@Entity
@Table(name="CHAOS")
@SQLInsert( sql="INSERT INTO CHAOS(size, name, nickname, id) VALUES(?,upper(?),?,?)")
@SQLUpdate( sql="UPDATE CHAOS SET size = ?, name = upper(?), nickname = ? WHERE id = ?")
@SQLDelete( sql="DELETE CHAOS WHERE id = ?")
@SQLDeleteAll( sql="DELETE CHAOS")
@Loader(namedQuery = "chaos")
@NamedNativeQuery(name="chaos", query="select id, size, name, lower( nickname ) as nickname from
CHAOS where id= ?", resultClass = Chaos.class)
public class Chaos {
@Id
private Long id;
private Long size;
private String name;
private String nickname;
308
Custom SQL for create, update and delete
<class name="Person">
<id name="id">
<generator class="increment"/>
</id>
<property name="name" not-null="true"/>
<sql-insert>INSERT INTO PERSON (NAME, ID) VALUES ( UPPER(?), ? )</sql-insert>
<sql-update>UPDATE PERSON SET NAME=UPPER(?) WHERE ID=?</sql-update>
<sql-delete>DELETE FROM PERSON WHERE ID=?</sql-delete>
</class>
If you expect to call a store procedure, be sure to set the callable attribute to true. In annotations
as well as in xml.
To check that the execution happens correctly, Hibernate allows you to define one of those three
strategies:
• none: no check is performed: the store procedure is expected to fail upon issues
• param: like COUNT but using an output parameter rather that the standard mechanism
To define the result check style, use the check parameter which is again available in annoations
as well as in xml.
You can use the exact same set of annotations respectively xml nodes to override the collection
related statements -see Example 18.13, “Overriding SQL statements for collections using
annotations”.
@OneToMany
@JoinColumn(name="chaos_fk")
@SQLInsert( sql="UPDATE CASIMIR_PARTICULE SET chaos_fk = ? where id = ?")
@SQLDelete( sql="UPDATE CASIMIR_PARTICULE SET chaos_fk = null where id = ?")
private Set<CasimirParticle> particles = new HashSet<CasimirParticle>();
Tip
The parameter order is important and is defined by the order Hibernate handles
properties. You can see the expected order by enabling debug logging for the
org.hibernate.persister.entity level. With this level enabled Hibernate will
print out the static SQL that is used to create, update, delete etc. entities. (To
309
Chapter 18. Native SQL
see the expected sequence, remember to not include your custom SQL through
annotations or mapping files as that will override the Hibernate generated static sql)
@Entity
@SecondaryTables({
@SecondaryTable(name = "`Cat nbr1`"),
@SecondaryTable(name = "Cat2"})
@org.hibernate.annotations.Tables( {
@Table(appliesTo = "Cat", comment = "My cat table" ),
@Table(appliesTo = "Cat2", foreignKey = @ForeignKey(name="FK_CAT2_CAT"), fetch = FetchMode.SELECT,
sqlInsert=@SQLInsert(sql="insert into Cat2(storyPart2, id) values(upper(?), ?)") )
} )
public class Cat implements Serializable {
The previous example also shows that you can give a comment to a given table (primary or
secondary): This comment will be used for DDL generation.
Tip
The SQL is directly executed in your database, so you can use any dialect you
like. This will, however, reduce the portability of your mapping if you use database
specific SQL.
Last but not least, stored procedures are in most cases required to return the number of rows
inserted, updated and deleted. Hibernate always registers the first statement parameter as a
numeric output parameter for the CUD operations:
update PERSON
set
NAME = uname,
where
ID = uid;
return SQL%ROWCOUNT;
310
Custom SQL for loading
END updatePerson;
<sql-query name="person">
<return alias="pers" class="Person" lock-mode="upgrade"/>
SELECT NAME AS {pers.name}, ID AS {pers.id}
FROM PERSON
WHERE ID=?
FOR UPDATE
</sql-query>
This is just a named query declaration, as discussed earlier. You can reference this named query
in a class mapping:
<class name="Person">
<id name="id">
<generator class="increment"/>
</id>
<property name="name" not-null="true"/>
<loader query-ref="person"/>
</class>
<sql-query name="employments">
<load-collection alias="emp" role="Person.employments"/>
SELECT {emp.*}
FROM EMPLOYMENT emp
WHERE EMPLOYER = :id
ORDER BY STARTDATE ASC, EMPLOYEE ASC
</sql-query>
311
Chapter 18. Native SQL
You can also define an entity loader that loads a collection by join fetching:
<sql-query name="person">
<return alias="pers" class="Person"/>
<return-join alias="emp" property="pers.employments"/>
SELECT NAME AS {pers.*}, {emp.*}
FROM PERSON pers
LEFT OUTER JOIN EMPLOYMENT emp
ON pers.ID = emp.PERSON_ID
WHERE ID=?
</sql-query>
The annotation equivalent <loader> is the @Loader annotation as seen in Example 18.11,
“Custom CRUD via annotations”.
312
Chapter 19.
Filtering data
Hibernate3 provides an innovative new approach to handling data with "visibility" rules. A
Hibernate filter is a global, named, parameterized filter that can be enabled or disabled for a
particular Hibernate session.
We now need to define the SQL filter clause applied to either the entity load or the collection load.
@Filter is used and placed either on the entity or the collection element. The connection between
@FilterName and @Filter is a matching name.
@Entity
@FilterDef(name="minLength", parameters=@ParamDef( name="minLength", type="integer" ) )
@Filters( {
@Filter(name="betweenLength", condition=":minLength <= length and :maxLength >= length"),
@Filter(name="minLength", condition=":minLength <= length")
} )
public class Forest { ... }
When the collection use an association table as a relational representation, you might want to
apply the filter condition to the association table itself or to the target entity table. To apply the
constraint on the target entity, use the regular @Filter annotation. However, if you want to target
the association table, use the @FilterJoinTable annotation.
@OneToMany
313
Chapter 19. Filtering data
@JoinTable
//filter on the target entity table
@Filter(name="betweenLength", condition=":minLength <= length and :maxLength >= length")
//filter on the association table
@FilterJoinTable(name="security", condition=":userlevel >= requredLevel")
public Set<Forest> getForests() { ... }
Using Hibernate mapping files for defining filters the situtation is very similar. The filters must first
be defined and then attached to the appropriate mapping elements. To define a filter, use the
<filter-def/> element within a <hibernate-mapping/> element:
<filter-def name="myFilter">
<filter-param name="myFilterParam" type="string"/>
</filter-def>
This filter can then be attached to a class or collection (or, to both or multiples of each at the
same time):
<set ...>
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</set>
</class>
session.enableFilter("myFilter").setParameter("myFilterParam", "some-value");
The following is a full example, using temporal data with an effective record date pattern:
<filter-def name="effectiveDate">
314
Hibernate filters
In order to ensure that you are provided with currently effective records, enable the filter on the
session prior to retrieving employee data:
Even though a salary constraint was mentioned explicitly on the results in the above HQL, because
of the enabled filter, the query will return only currently active employees who have a salary greater
than one million dollars.
If you want to use filters with outer joining, either through HQL or load fetching, be careful of
the direction of the condition expression. It is safest to set this up for left outer joining. Place the
parameter first followed by the column name(s) after the operator.
After being defined, a filter might be attached to multiple entities and/or collections each with
its own condition. This can be problematic when the conditions are the same each time. Using
<filter-def/> allows you to definine a default condition, either as an attribute or CDATA:
315
Chapter 19. Filtering data
This default condition will be used whenever the filter is attached to something without specifying
a condition. This means you can give a specific condition as part of the attachment of the filter
that overrides the default condition in that particular case.
316
Chapter 20.
XML Mapping
XML Mapping is an experimental feature in Hibernate 3.0 and is currently under active
development.
Hibernate supports dom4j as API for manipulating XML trees. You can write queries that retrieve
dom4j trees from the database and have any modification you make to the tree automatically
synchronized to the database. You can even take an XML document, parse it using dom4j, and
write it to the database with any of Hibernate's basic operations: persist(), saveOrUpdate(),
merge(), delete(), replicate() (merging is not yet supported).
This feature has many applications including data import/export, externalization of entity data via
JMS or SOAP and XSLT-based reporting.
A single mapping can be used to simultaneously map properties of a class and nodes of an XML
document to the database, or, if there is no class to map, it can be used to map just the XML.
<class name="Account"
table="ACCOUNTS"
node="account">
<id name="accountId"
column="ACCOUNT_ID"
node="@id"/>
<many-to-one name="customer"
column="CUSTOMER_ID"
node="customer/@id"
embed-xml="false"/>
<property name="balance"
column="BALANCE"
node="balance"/>
...
</class>
317
Chapter 20. XML Mapping
<class entity-name="Account"
table="ACCOUNTS"
node="account">
<id name="id"
column="ACCOUNT_ID"
node="@id"
type="string"/>
<many-to-one name="customerId"
column="CUSTOMER_ID"
node="customer/@id"
embed-xml="false"
entity-name="Customer"/>
<property name="balance"
column="BALANCE"
node="balance"
type="big_decimal"/>
...
</class>
This mapping allows you to access the data as a dom4j tree, or as a graph of property name/
value pairs or java Maps. The property names are purely logical constructs that can be referred
to in HQL queries.
For collections and single valued associations, there is an additional embed-xml attribute. If
embed-xml="true", the default, the XML tree for the associated entity (or collection of value type)
will be embedded directly in the XML tree for the entity that owns the association. Otherwise, if
embed-xml="false", then only the referenced identifier value will appear in the XML for single
point associations and collections will not appear at all.
318
XML mapping metadata
Do not leave embed-xml="true" for too many associations, since XML does not deal well with
circularity.
<class name="Customer"
table="CUSTOMER"
node="customer">
<id name="id"
column="CUST_ID"
node="@id"/>
<map name="accounts"
node="."
embed-xml="true">
<key column="CUSTOMER_ID"
not-null="true"/>
<map-key column="SHORT_DESC"
node="@short-desc"
type="string"/>
<one-to-many entity-name="Account"
embed-xml="false"
node="account"/>
</map>
<component name="name"
node="name">
<property name="firstName"
node="first-name"/>
<property name="initial"
node="initial"/>
<property name="lastName"
node="last-name"/>
</component>
...
</class>
In this case, the collection of account ids is embedded, but not the actual account data. The
following HQL query:
from Customer c left join fetch c.accounts where c.lastName like :lastName
<customer id="123456789">
<account short-desc="Savings">987632567</account>
<account short-desc="Credit Card">985612323</account>
<name>
<first-name>Gavin</first-name>
<initial>A</initial>
<last-name>King</last-name>
319
Chapter 20. XML Mapping
</name>
...
</customer>
If you set embed-xml="true" on the <one-to-many> mapping, the data might look more like this:
<customer id="123456789">
<account id="987632567" short-desc="Savings">
<customer id="123456789"/>
<balance>100.29</balance>
</account>
<account id="985612323" short-desc="Credit Card">
<customer id="123456789"/>
<balance>-2370.34</balance>
</account>
<name>
<first-name>Gavin</first-name>
<initial>A</initial>
<last-name>King</last-name>
</name>
...
</customer>
tx.commit();
session.close();
320
Manipulating XML data
tx.commit();
session.close();
When implementing XML-based data import/export, it is useful to combine this feature with
Hibernate's replicate() operation.
321
322
Chapter 21.
Improving performance
21.1. Fetching strategies
Hibernate uses a fetching strategy to retrieve associated objects if the application needs to
navigate the association. Fetch strategies can be declared in the O/R mapping metadata, or over-
ridden by a particular HQL or Criteria query.
• Join fetching: Hibernate retrieves the associated instance or collection in the same SELECT,
using an OUTER JOIN.
• Select fetching: a second SELECT is used to retrieve the associated entity or collection. Unless
you explicitly disable lazy fetching by specifying lazy="false", this second select will only be
executed when you access the association.
• Subselect fetching: a second SELECT is used to retrieve the associated collections for all entities
retrieved in a previous query or fetch. Unless you explicitly disable lazy fetching by specifying
lazy="false", this second select will only be executed when you access the association.
• Batch fetching: an optimization strategy for select fetching. Hibernate retrieves a batch of entity
instances or collections in a single SELECT by specifying a list of primary or foreign keys.
• Lazy collection fetching: a collection is fetched when the application invokes an operation upon
that collection. This is the default for collections.
• "Extra-lazy" collection fetching: individual elements of the collection are accessed from the
database as needed. Hibernate tries not to fetch the whole collection into memory unless
absolutely needed. It is suitable for large collections.
• Proxy fetching: a single-valued association is fetched when a method other than the identifier
getter is invoked upon the associated object.
• Lazy attribute fetching: an attribute or single valued association is fetched when the instance
variable is accessed. This approach requires buildtime bytecode instrumentation and is rarely
necessary.
323
Chapter 21. Improving performance
We have two orthogonal notions here: when is the association fetched and how is it fetched. It is
important that you do not confuse them. We use fetch to tune performance. We can use lazy to
define a contract for what data is always available in any detached instance of a particular class.
By default, Hibernate3 uses lazy select fetching for collections and lazy proxy fetching for
single-valued associations. These defaults make sense for most associations in the majority of
applications.
Please be aware that access to a lazy association outside of the context of an open Hibernate
session will result in an exception. For example:
s = sessions.openSession();
Transaction tx = s.beginTransaction();
tx.commit();
s.close();
Since the permissions collection was not initialized when the Session was closed, the collection
will not be able to load its state. Hibernate does not support lazy initialization for detached objects.
This can be fixed by moving the code that reads from the collection to just before the transaction
is committed.
Alternatively, you can use a non-lazy collection or association, by specifying lazy="false" for
the association mapping. However, it is intended that lazy initialization be used for almost all
collections and associations. If you define too many non-lazy associations in your object model,
Hibernate will fetch the entire database into memory in every transaction.
On the other hand, you can use join fetching, which is non-lazy by nature, instead of select
fetching in a particular transaction. We will now explain how to customize the fetching strategy.
In Hibernate3, the mechanisms for choosing a fetch strategy are identical for single-valued
associations and collections.
Select fetching (the default) is extremely vulnerable to N+1 selects problems, so we might want
to enable join fetching in the mapping document:
324
Single-ended association proxies
<set name="permissions"
fetch="join">
<key column="userId"/>
<one-to-many class="Permission"/>
</set
• Criteria queries
Irrespective of the fetching strategy you use, the defined non-lazy graph is guaranteed to be loaded
into memory. This might, however, result in several immediate selects being used to execute a
particular HQL query.
Usually, the mapping document is not used to customize fetching. Instead, we keep the default
behavior, and override it for a particular transaction, using left join fetch in HQL. This tells
Hibernate to fetch the association eagerly in the first select, using an outer join. In the Criteria
query API, you would use setFetchMode(FetchMode.JOIN).
If you want to change the fetching strategy used by get() or load(), you can use a Criteria
query. For example:
This is Hibernate's equivalent of what some ORM solutions call a "fetch plan".
A completely different approach to problems with N+1 selects is to use the second-level cache.
325
Chapter 21. Improving performance
At startup, Hibernate3 generates proxies by default for all persistent classes and uses them to
enable lazy fetching of many-to-one and one-to-one associations.
The mapping file may declare an interface to use as the proxy interface for that class, with
the proxy attribute. By default, Hibernate uses a subclass of the class. The proxied class must
implement a default constructor with at least package visibility. This constructor is recommended
for all persistent classes.
There are potential problems to note when extending this approach to polymorphic classes.For
example:
Firstly, instances of Cat will never be castable to DomesticCat, even if the underlying instance
is an instance of DomesticCat:
Cat cat = (Cat) session.load(Cat.class, id); // instantiate a proxy (does not hit the db)
if ( cat.isDomesticCat() ) { // hit the db to initialize the proxy
DomesticCat dc = (DomesticCat) cat; // Error!
....
}
However, the situation is not quite as bad as it looks. Even though we now have two references
to different proxy objects, the underlying instance will still be the same object:
Third, you cannot use a CGLIB proxy for a final class or a class with any final methods.
Finally, if your persistent object acquires any resources upon instantiation (e.g. in initializers or
default constructor), then those resources will also be acquired by the proxy. The proxy class is
an actual subclass of the persistent class.
326
Initializing collections and proxies
These problems are all due to fundamental limitations in Java's single inheritance model. To
avoid these problems your persistent classes must each implement an interface that declares
its business methods. You should specify these interfaces in the mapping file where CatImpl
implements the interface Cat and DomesticCatImpl implements the interface DomesticCat. For
example:
Then proxies for instances of Cat and DomesticCat can be returned by load() or iterate().
Note
Relationships are also lazily initialized. This means you must declare any properties to be of type
Cat, not CatImpl.
By choosing lazy="no-proxy" instead of the default lazy="proxy", you can avoid problems
associated with typecasting. However, buildtime bytecode instrumentation is required, and all
operations will result in immediate proxy initialization.
327
Chapter 21. Improving performance
Sometimes a proxy or collection needs to be initialized before closing the Session. You can force
initialization by calling cat.getSex() or cat.getKittens().size(), for example. However, this
can be confusing to readers of the code and it is not convenient for generic code.
Another option is to keep the Session open until all required collections and proxies have
been loaded. In some application architectures, particularly where the code that accesses data
using Hibernate, and the code that uses it are in different application layers or different physical
processes, it can be a problem to ensure that the Session is open when a collection is initialized.
There are two basic ways to deal with this issue:
• In a web-based application, a servlet filter can be used to close the Session only at the end of
a user request, once the rendering of the view is complete (the Open Session in View pattern).
Of course, this places heavy demands on the correctness of the exception handling of your
application infrastructure. It is vitally important that the Session is closed and the transaction
ended before returning to the user, even when an exception occurs during rendering of the view.
See the Hibernate Wiki for examples of this "Open Session in View" pattern.
• In an application with a separate business tier, the business logic must "prepare" all collections
that the web tier needs before returning. This means that the business tier should load all the
data and return all the data already initialized to the presentation/web tier that is required for a
particular use case. Usually, the application calls Hibernate.initialize() for each collection
that will be needed in the web tier (this call must occur before the session is closed) or retrieves
the collection eagerly using a Hibernate query with a FETCH clause or a FetchMode.JOIN in
Criteria. This is usually easier if you adopt the Command pattern instead of a Session Facade.
• You can also attach a previously loaded object to a new Session with merge() or lock() before
accessing uninitialized collections or other proxies. Hibernate does not, and certainly should
not, do this automatically since it would introduce impromptu transaction semantics.
Sometimes you do not want to initialize a large collection, but still need some information about
it, like its size, for example, or a subset of the data.
You can use a collection filter to get the size of a collection without initializing it:
The createFilter() method is also used to efficiently retrieve subsets of a collection without
needing to initialize the whole collection:
328
Using batch fetching
Using batch fetching, Hibernate can load several uninitialized proxies if one proxy is accessed.
Batch fetching is an optimization of the lazy select fetching strategy. There are two ways you can
configure batch fetching: on the class level and the collection level.
Batch fetching for classes/entities is easier to understand. Consider the following example: at
runtime you have 25 Cat instances loaded in a Session, and each Cat has a reference to its owner,
a Person. The Person class is mapped with a proxy, lazy="true". If you now iterate through
all cats and call getOwner() on each, Hibernate will, by default, execute 25 SELECT statements
to retrieve the proxied owners. You can tune this behavior by specifying a batch-size in the
mapping of Person:
Hibernate will now execute only three queries: the pattern is 10, 10, 5.
You can also enable batch fetching of collections. For example, if each Person has a lazy collection
of Cats, and 10 persons are currently loaded in the Session, iterating through all persons will
generate 10 SELECTs, one for every call to getCats(). If you enable batch fetching for the cats
collection in the mapping of Person, Hibernate can pre-fetch collections:
<class name="Person">
<set name="cats" batch-size="3">
...
</set>
</class>
With a batch-size of 3, Hibernate will load 3, 3, 3, 1 collections in four SELECTs. Again, the value
of the attribute depends on the expected number of uninitialized collections in a particular Session.
Batch fetching of collections is particularly useful if you have a nested tree of items, i.e. the typical
bill-of-materials pattern. However, a nested set or a materialized path might be a better option
for read-mostly trees.
If one lazy collection or single-valued proxy has to be fetched, Hibernate will load all of them,
re-running the original query in a subselect. This works in the same way as batch-fetching but
without the piecemeal loading.
329
Chapter 21. Improving performance
So what does that mean? Well lets explain that by way of an example which show the different
available approaches to configure a fetch profile:
@Entity
@FetchProfile(name = "customer-with-orders", fetchOverrides = {
@OneToMany
private Set<Order> orders;
// standard getter/setter
...
}
<hibernate-mapping>
<class name="Customer">
...
<set name="orders" inverse="true">
<key column="cust_id"/>
<one-to-many class="Order"/>
</set>
</class>
<class name="Order">
...
</class>
<fetch-profile name="customer-with-orders">
<fetch entity="Customer" association="orders" style="join"/>
</fetch-profile>
330
Fetch profiles
</hibernate-mapping>
<hibernate-mapping>
<class name="Customer">
...
<set name="orders" inverse="true">
<key column="cust_id"/>
<one-to-many class="Order"/>
</set>
<fetch-profile name="customer-with-orders">
<fetch association="orders" style="join"/>
</fetch-profile>
</class>
<class name="Order">
...
</class>
</hibernate-mapping>
Now normally when you get a reference to a particular customer, that customer's set of orders
will be lazy meaning we will not yet have loaded those orders from the database. Normally this
is a good thing. Now lets say that you have a certain use case where it is more efficient to load
the customer and their orders together. One way certainly is to use "dynamic fetching" strategies
via an HQL or criteria queries. But another option is to use a fetch profile to achieve that. The
following code will load both the customer andtheir orders:
Note
@FetchProfile definitions are global and it does not matter on which class you
place them. You can place the @FetchProfile annotation either onto a class or
package (package-info.java). In order to define multiple fetch profiles for the same
class or package @FetchProfiles can be used.
Currently only join style fetch profiles are supported, but they plan is to support additional
styles. See HHH-3414 [http://opensource.atlassian.com/projects/hibernate/browse/HHH-3414]
for details.
331
Chapter 21. Improving performance
To enable lazy property loading, set the lazy attribute on your particular property mappings:
<class name="Document">
<id name="id">
<generator class="native"/>
</id>
<property name="name" not-null="true" length="50"/>
<property name="summary" not-null="true" length="200" lazy="true"/>
<property name="text" not-null="true" length="2000" lazy="true"/>
</class>
Lazy property loading requires buildtime bytecode instrumentation. If your persistent classes are
not enhanced, Hibernate will ignore lazy property settings and return to immediate fetching.
<instrument verbose="true">
<fileset dir="${testclasses.dir}/org/hibernate/auction/model">
<include name="*.class"/>
</fileset>
</instrument>
</target>
A different way of avoiding unnecessary column reads, at least for read-only transactions, is to
use the projection features of HQL or Criteria queries. This avoids the need for buildtime bytecode
processing and is certainly a preferred solution.
You can force the usual eager fetching of properties using fetch all properties in HQL.
332
Cache mappings
changes made to the persistent store by another application. They can, however, be configured
to regularly expire cached data.
You have the option to tell Hibernate which caching implementation to use by specifying the
name of a class that implements org.hibernate.cache.CacheProvider using the property
hibernate.cache.provider_class. Hibernate is bundled with a number of built-in integrations
with the open-source cache providers that are listed in Table 21.1, “Cache Providers”. You can
also implement your own and plug it in as outlined above. Note that versions prior to Hibernate
3.2 use EhCache as the default cache provider.
By default, entities are not part of the second level cache and we recommend you to stick to
this setting. However, you can override this by setting the shared-cache-mode element in your
333
Chapter 21. Improving performance
• ENABLE_SELECTIVE (Default and recommended value): entities are not cached unless explicitly
marked as cacheable.
• ALL: all entities are always cached even if marked as non cacheable.
• NONE: no entity are cached even if marked as cacheable. This option can make sense to disable
second-level cache altogether.
• read-only
• read-write
• nonstrict-read-write
• transactional
Note
It is recommended to define the cache concurrency strategy per entity rather than
using a global one. Use the @org.hibernate.annotations.Cache annotation for
that.
@Entity
@Cacheable
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public class Forest { ... }
Hibernate also let's you cache the content of a collection or the identifiers if the collection contains
other entities. Use the @Cache annotation on the collection property.
@OneToMany(cascade=CascadeType.ALL, fetch=FetchType.EAGER)
@JoinColumn(name="CUST_ID")
@Cache(usage = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE)
public SortedSet<Ticket> getTickets() {
334
Cache mappings
return tickets;
}
@Cache(
CacheConcurrencyStrategy usage();
Let's now take a look at Hibernate mapping files. There the <cache> element of a class or collection
mapping is used to configure the second level cache. Looking at Example 21.8, “The Hibernate
<cache> mapping element” the parallels to anotations is obvious.
<cache
usage="transactional|read-write|nonstrict-read-write|read-only"
region="RegionName"
include="all|non-lazy"
/>
335
Chapter 21. Improving performance
If your application needs to read, but not modify, instances of a persistent class, a read-only
cache can be used. This is the simplest and optimal performing strategy. It is even safe for use
in a cluster.
If the application only occasionally needs to update data (i.e. if it is extremely unlikely that two
transactions would try to update the same item simultaneously), and strict transaction isolation
is not required, a nonstrict-read-write cache might be appropriate. If the cache is used in a
JTA environment, you must specify hibernate.transaction.manager_lookup_class. In other
environments, you should ensure that the transaction is completed when Session.close() or
Session.disconnect() is called.
The transactional cache strategy provides support for fully transactional cache providers such
as JBoss TreeCache. Such a cache can only be used in a JTA environment and you must specify
hibernate.transaction.manager_lookup_class.
Important
None of the cache providers support all of the cache concurrency strategies.
The following table shows which providers are compatible with which concurrency strategies.
336
Managing the caches
When flush() is subsequently called, the state of that object will be synchronized with the
database. If you do not want this synchronization to occur, or if you are processing a huge number
of objects and need to manage memory efficiently, the evict() method can be used to remove
the object and its collections from the first-level cache.
Example 21.9. Explcitly evicting a cached instance from the first level cache
using Session.evict()
The Session also provides a contains() method to determine if an instance belongs to the
session cache.
For the second-level cache, there are methods defined on SessionFactory for evicting the
cached state of an instance, entire class, collection instance or entire collection role.
337
Chapter 21. Improving performance
The CacheMode controls how a particular session interacts with the second-level cache:
• CacheMode.NORMAL: will read items from and write items to the second-level cache
• CacheMode.GET: will read items from the second-level cache. Do not write to the second-level
cache except when updating data
• CacheMode.PUT: will write items to the second-level cache. Do not read from the second-level
cache
• CacheMode.REFRESH: will write items to the second-level cache. Do not read from the second-
level cache. Bypass the effect of hibernate.cache.use_minimal_puts forcing a refresh of the
second-level cache for all items read from the database
To browse the contents of a second-level or query cache region, use the Statistics API:
Example 21.11. Browsing the second-level cache entries via the Statistics
API
You will need to enable statistics and, optionally, force Hibernate to keep the cache entries in a
more readable format:
hibernate.generate_statistics true
hibernate.cache.use_structured_entries true
338
Enabling query caching
Caching of query results introduces some overhead in terms of your applications normal
transactional processing. For example, if you cache results of a query against Person Hibernate
will need to keep track of when those results should be invalidated because changes have been
committed against Person. That, coupled with the fact that most applications simply gain no benefit
from caching query results, leads Hibernate to disable caching of query results by default. To use
query caching, you will first need to enable the query cache:
hibernate.cache.use_query_cache true
Important
As mentioned above, most queries do not benefit from caching or their results. So by default,
individual queries are not cached even after enabling query caching. To enable results caching for
a particular query, call org.hibernate.Query.setCacheable(true). This call allows the query
to look for existing cache results or add its results to the cache when it is executed.
Note
The query cache does not cache the state of the actual entities in the cache; it
caches only identifier values and results of value type. For this reaso, the query
cache should always be used in conjunction with the second-level cache for those
entities expected to be cached as part of a query result cache (just as with collection
caching).
339
Chapter 21. Improving performance
If you want to force the query cache to refresh one of its regions (disregard any cached
results it finds there) you can use org.hibernate.Query.setCacheMode(CacheMode.REFRESH).
In conjunction with the region you have defined for the given query, Hibernate will selectively force
the results cached in that particular region to be refreshed. This is particularly useful in cases
where underlying data may have been updated via a separate process and is a far more efficient
alternative to bulk eviction of the region via org.hibernate.SessionFactory.evictQueries().
21.5.1. Taxonomy
Hibernate defines three basic kinds of collections:
• collections of values
• one-to-many associations
• many-to-many associations
This classification distinguishes the various table and foreign key relationships but does not tell
us quite everything we need to know about the relational model. To fully understand the relational
structure and performance characteristics, we must also consider the structure of the primary
key that is used by Hibernate to update or delete collection rows. This suggests the following
classification:
• indexed collections
• sets
• bags
All indexed collections (maps, lists, and arrays) have a primary key consisting of the <key> and
<index> columns. In this case, collection updates are extremely efficient. The primary key can be
340
Lists, maps, idbags and sets are the most efficient collections to update
efficiently indexed and a particular row can be efficiently located when Hibernate tries to update
or delete it.
Sets have a primary key consisting of <key> and element columns. This can be less efficient for
some types of collection element, particularly composite elements or large text or binary fields, as
the database may not be able to index a complex primary key as efficiently. However, for one-to-
many or many-to-many associations, particularly in the case of synthetic identifiers, it is likely to
be just as efficient. If you want SchemaExport to actually create the primary key of a <set>, you
must declare all columns as not-null="true".
<idbag> mappings define a surrogate key, so they are efficient to update. In fact, they are the
best case.
Bags are the worst case since they permit duplicate element values and, as they have no index
column, no primary key can be defined. Hibernate has no way of distinguishing between duplicate
rows. Hibernate resolves this problem by completely removing in a single DELETE and recreating
the collection whenever it changes. This can be inefficient.
For a one-to-many association, the "primary key" may not be the physical primary key of the
database table. Even in this case, the above classification is still useful. It reflects how Hibernate
"locates" individual rows of the collection.
21.5.2. Lists, maps, idbags and sets are the most efficient
collections to update
From the discussion above, it should be clear that indexed collections and sets allow the most
efficient operation in terms of adding, removing and updating elements.
There is, arguably, one more advantage that indexed collections have over sets for many-to-many
associations or collections of values. Because of the structure of a Set, Hibernate does not UPDATE
a row when an element is "changed". Changes to a Set always work via INSERT and DELETE of
individual rows. Once again, this consideration does not apply to one-to-many associations.
After observing that arrays cannot be lazy, you can conclude that lists, maps and idbags are the
most performant (non-inverse) collection types, with sets not far behind. You can expect sets to be
the most common kind of collection in Hibernate applications. This is because the "set" semantics
are most natural in the relational model.
However, in well-designed Hibernate domain models, most collections are in fact one-to-many
associations with inverse="true". For these associations, the update is handled by the many-
to-one end of the association, and so considerations of collection update performance simply do
not apply.
21.5.3. Bags and lists are the most efficient inverse collections
There is a particular case, however, in which bags, and also lists, are much more performant than
sets. For a collection with inverse="true", the standard bidirectional one-to-many relationship
341
Chapter 21. Improving performance
idiom, for example, we can add elements to a bag or list without needing to initialize (fetch) the
bag elements. This is because, unlike a set, Collection.add() or Collection.addAll() must
always return true for a bag or List. This can make the following common code much faster:
Suppose you added a single element to a collection of size twenty and then remove two elements.
Hibernate will issue one INSERT statement and two DELETE statements, unless the collection is
a bag. This is certainly desirable.
However, suppose that we remove eighteen elements, leaving two and then add thee new
elements. There are two possible ways to proceed
• delete eighteen rows one by one and then insert three rows
• remove the whole collection in one SQL DELETE and insert all five current elements one by one
Hibernate cannot know that the second option is probably quicker. It would probably be
undesirable for Hibernate to be that intuitive as such behavior might confuse database triggers,
etc.
Fortunately, you can force this behavior (i.e. the second strategy) at any time by discarding (i.e.
dereferencing) the original collection and returning a newly instantiated collection with all the
current elements.
342
Metrics
Hibernate can also use JMX to publish metrics if you enable the StatisticsService MBean.
You can enable a single MBean for all your SessionFactory or one per factory. See the following
code for minimalistic configuration examples:
• at runtime: sf.getStatistics().setStatisticsEnabled(true) or
hibernateStatsBean.setStatisticsEnabled(true)
Statistics can be reset programmatically using the clear() method. A summary can be sent to
a logger (info level) using the logSummary() method.
21.6.2. Metrics
Hibernate provides a number of metrics, from basic information to more specialized information
that is only relevant in certain scenarios. All available counters are described in the Statistics
interface API, in three categories:
• Metrics related to the general Session usage, such as number of open sessions, retrieved
JDBC connections, etc.
• Metrics related to the entities, collections, queries, and caches as a whole (aka global metrics).
For example, you can check the cache hit, miss, and put ratio of entities, collections and queries,
and the average time a query needs. Be aware that the number of milliseconds is subject to
343
Chapter 21. Improving performance
approximation in Java. Hibernate is tied to the JVM precision and on some platforms this might
only be accurate to 10 seconds.
Simple getters are used to access the global metrics (i.e. not tied to a particular entity, collection,
cache region, etc.). You can access the metrics of a particular entity, collection or cache region
through its name, and through its HQL or SQL representation for queries. Please refer to the
Statistics, EntityStatistics, CollectionStatistics, SecondLevelCacheStatistics, and
QueryStatistics API Javadoc for more information. The following code is a simple example:
EntityStatistics entityStats =
stats.getEntityStatistics( Cat.class.getName() );
long changes =
entityStats.getInsertCount()
+ entityStats.getUpdateCount()
+ entityStats.getDeleteCount();
log.info(Cat.class.getName() + " changed " + changes + "times" );
You can work on all entities, collections, queries and region caches, by retrieving the list of names
of entities, collections, queries and region caches using the following methods: getQueries(),
getEntityNames(), getCollectionRoleNames(), and getSecondLevelCacheRegionNames().
344
Chapter 22.
Toolset Guide
Roundtrip engineering with Hibernate is possible using a set of Eclipse plugins, commandline
tools, and Ant tasks.
Hibernate Tools currently include plugins for the Eclipse IDE as well as Ant tasks for reverse
engineering of existing databases:
• Mapping Editor: an editor for Hibernate XML mapping files that supports auto-completion and
syntax highlighting. It also supports semantic auto-completion for class names and property/
field names, making it more versatile than a normal XML editor.
• Console: the console is a new view in Eclipse. In addition to a tree overview of your console
configurations, you are also provided with an interactive view of your persistent classes and
their relationships. The console allows you to execute HQL queries against your database and
browse the result directly in Eclipse.
• Development Wizards: several wizards are provided with the Hibernate Eclipse tools. You can
use a wizard to quickly generate Hibernate configuration (cfg.xml) files, or to reverse engineer
an existing database schema into POJO source files and Hibernate mapping files. The reverse
engineering wizard supports customizable templates.
Please refer to the Hibernate Tools package documentation for more information.
However, the Hibernate main package comes bundled with an integrated tool : SchemaExport
aka hbm2ddl.It can even be used from "inside" Hibernate.
You must specify a SQL Dialect via the hibernate.dialect property when using this tool, as
DDL is highly vendor-specific.
First, you must customize your mapping files to improve the generated schema. The next section
covers schema customization.
345
Chapter 22. Toolset Guide
Some tags also accept a not-null attribute for generating a NOT NULL constraint on table
columns, and a unique attribute for generating UNIQUE constraint on table columns.
A unique-key attribute can be used to group columns in a single, unique key constraint. Currently,
the specified value of the unique-key attribute is not used to name the constraint in the generated
DDL. It is only used to group the columns in the mapping file.
An index attribute specifies the name of an index that will be created using the mapped column
or columns. Multiple columns can be grouped into the same index by simply specifying the same
index name.
A foreign-key attribute can be used to override the name of any generated foreign key constraint.
Many mapping elements also accept a child <column> element. This is particularly useful for
mapping multi-column types:
The default attribute allows you to specify a default value for a column.You should assign the
same value to the mapped property before saving a new instance of the mapped class.
346
Customizing the schema
The sql-type attribute allows the user to override the default mapping of a Hibernate type to
SQL datatype.
347
Chapter 22. Toolset Guide
The <comment> element allows you to specify comments for the generated schema.
<property name="balance">
<column name="bal">
<comment>Balance in USD</comment>
</column>
</property>
This results in a comment on table or comment on column statement in the generated DDL
where supported.
Option Description
--quiet do not output the script to stdout
--drop only drop the tables
--create only create the tables
348
Properties
Option Description
--text do not export to the database
--output=my_schema.ddl output the ddl script to a file
--naming=eg.MyNamingStrategy select a NamingStrategy
--config=hibernate.cfg.xml read Hibernate configuration from an XML file
-- read database properties from a file
properties=hibernate.properties
22.1.3. Properties
Database properties can be specified:
<target name="schemaexport">
<taskdef name="schemaexport"
classname="org.hibernate.tool.hbm2ddl.SchemaExportTask"
349
Chapter 22. Toolset Guide
classpathref="class.path"/>
<schemaexport
properties="hibernate.properties"
quiet="no"
text="no"
drop="no"
delimiter=";"
output="schema-export.sql">
<fileset dir="src">
<include name="**/*.hbm.xml"/>
</fileset>
</schemaexport>
</target>
Option Description
--quiet do not output the script to stdout
--text do not export the script to the database
--naming=eg.MyNamingStrategy select a NamingStrategy
-- read database properties from a file
properties=hibernate.properties
<target name="schemaupdate">
<taskdef name="schemaupdate"
classname="org.hibernate.tool.hbm2ddl.SchemaUpdateTask"
350
Schema validation
classpathref="class.path"/>
<schemaupdate
properties="hibernate.properties"
quiet="no">
<fileset dir="src">
<include name="**/*.hbm.xml"/>
</fileset>
</schemaupdate>
</target>
Option Description
--naming=eg.MyNamingStrategy select a NamingStrategy
-- read database properties from a file
properties=hibernate.properties
<target name="schemavalidate">
<taskdef name="schemavalidator"
classname="org.hibernate.tool.hbm2ddl.SchemaValidatorTask"
classpathref="class.path"/>
<schemavalidator
properties="hibernate.properties">
<fileset dir="src">
<include name="**/*.hbm.xml"/>
351
Chapter 22. Toolset Guide
</fileset>
</schemavalidator>
</target>
352
Chapter 23.
Additional modules
Hibernate Core also offers integration with some external modules/projects. This includes
Hibernate Validator the reference implementation of Bean Validation (JSR 303) and Hibernate
Search.
The integration between Hibernate and Bean Validation works at two levels. First, it is able to
check in-memory instances of a class for constraint violations. Second, it can apply the constraints
to the Hibernate metamodel and incorporate them into the generated database schema.
To enable Hibernate's Bean Validation integration, simply add a Bean Validation provider
(preferably Hibernate Validation 4) on your classpath.
23.1.2. Configuration
The Default group is validated on entity insert and update and the database model is updated
accordingly based on the Default group as well.
353
Chapter 23. Additional modules
You can customize the Bean Validation integration by setting the validation mode. Use
the javax.persistence.validation.mode property and set it up for example in your
persistence.xml file or your hibernate.cfg.xml file. Several options are possible:
• auto (default): enable integration between Bean Validation and Hibernate (callback and ddl
generation) only if Bean Validation is present in the classpath.
• callback: only validate entities when they are either inserted, updated or deleted. An exception
is raised if no Bean Validation provider is present in the classpath.
• ddl: only apply constraints to the database schema when generated by Hibernate. An exception
is raised if no Bean Validation provider is present in the classpath. This value is not defined by
the Java Persistence spec and is specific to Hibernate.
Note
You can use both callback and ddl together by setting the property to callback,
dll
<persistence ...>
<persistence-unit ...>
...
<properties>
<property name="javax.persistence.validation.mode"
value="callback, ddl"/>
</properties>
</persistence-unit>
</persistence>
If you want to validate different groups during insertion, update and deletion, use:
354
Catching violations
Each property accepts the fully qualified class names of the groups validated separated by a
comma (,)
<persistence ...>
<persistence-unit ...>
...
<properties>
<property name="javax.persistence.validation.group.pre-update"
value="javax.validation.group.Default, com.acme.group.Strict"/>
<property name="javax.persistence.validation.group.pre-remove"
value="com.acme.group.OnDelete"/>
<property name="org.hibernate.validator.group.ddl"
value="com.acme.group.DDL"/>
</properties>
</persistence-unit>
</persistence>
Note
This exception is wrapped in a RollbackException when the violation happens at commit time.
Otherwise the ConstraintViolationException is returned (for example when calling flush().
Note that generally, catchable violations are validated at a higher level (for example in Seam /
JSF 2 via the JSF - Bean Validation integration or in your business layer by explicitly calling Bean
Validation).
• @NotNull leads to a not null column (unless it conflicts with components or table inheritance)
355
Chapter 23. Additional modules
• @Digits leads to the definition of precision and scale (ever wondered which is which? It's easy
now with @Digits :) )
These constraints can be declared directly on the entity properties or indirectly by using constraint
composition.
For more information check the Hibernate Validator reference documentation [http://
docs.jboss.org/hibernate/stable/validator/reference/en-US/html/].
356
Chapter 24.
Example: Parent/Child
One of the first things that new users want to do with Hibernate is to model a parent/child
type relationship. There are two different approaches to this. The most convenient approach,
especially for new users, is to model both Parent and Child as entity classes with a <one-to-
many> association from Parent to Child. The alternative approach is to declare the Child as
a <composite-element>. The default semantics of a one-to-many association in Hibernate are
much less close to the usual semantics of a parent/child relationship than those of a composite
element mapping. We will explain how to use a bidirectional one-to-many association with
cascades to model a parent/child relationship efficiently and elegantly.
• When you remove/add an object from/to a collection, the version number of the collection owner
is incremented.
• If an object that was removed from a collection is an instance of a value type (e.g. a composite
element), that object will cease to be persistent and its state will be completely removed from
the database. Likewise, adding a value type instance to the collection will cause its state to be
immediately persistent.
Adding an entity to a collection, by default, merely creates a link between the two entities.
Removing the entity will remove the link. This is appropriate for all sorts of cases. However, it is
not appropriate in the case of a parent/child relationship. In this case, the life of the child is bound
to the life cycle of the parent.
<set name="children">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
357
Chapter 24. Example: Parent/Child
Parent p = .....;
Child c = new Child();
p.getChildren().add(c);
session.save(c);
session.flush();
This is not only inefficient, but also violates any NOT NULL constraint on the parent_id column.
You can fix the nullability constraint violation by specifying not-null="true" in the collection
mapping:
<set name="children">
<key column="parent_id" not-null="true"/>
<one-to-many class="Child"/>
</set>
The underlying cause of this behavior is that the link (the foreign key parent_id) from p to c is
not considered part of the state of the Child object and is therefore not created in the INSERT.
The solution is to make the link part of the Child mapping.
You also need to add the parent property to the Child class.
Now that the Child entity is managing the state of the link, we tell the collection not to update the
link. We use the inverse attribute to do this:
358
Cascading life cycle
p.getChildren().add(c);
session.save(c);
session.flush();
Similarly, we do not need to iterate over the children when saving or deleting a Parent. The
following removes p and all its children from the database.
359
Chapter 24. Example: Parent/Child
will not remove c from the database. In this case, it will only remove the link to p and cause a NOT
NULL constraint violation. You need to explicitly delete() the Child.
In our case, a Child cannot exist without its parent. So if we remove a Child from the collection,
we do want it to be deleted. To do this, we must use cascade="all-delete-orphan".
Even though the collection mapping specifies inverse="true", cascades are still processed by
iterating the collection elements. If you need an object be saved, deleted or updated by cascade,
you must add it to the collection. It is not enough to simply call setParent().
The following code will update parent and child and insert newChild:
360
Conclusion
parent.addChild(newChild);
session.update(parent);
session.flush();
This may be suitable for the case of a generated identifier, but what about assigned identifiers
and composite identifiers? This is more difficult, since Hibernate cannot use the identifier property
to distinguish between a newly instantiated object, with an identifier assigned by the user, and
an object loaded in a previous session. In this case, Hibernate will either use the timestamp or
version property, or will actually query the second-level cache or, worst case, the database, to
see if the row exists.
24.5. Conclusion
The sections we have just covered can be a bit confusing. However, in practice, it all works out
nicely. Most Hibernate applications use the parent/child pattern in many places.
We mentioned an alternative in the first paragraph. None of the above issues exist in the case of
<composite-element> mappings, which have exactly the semantics of a parent/child relationship.
Unfortunately, there are two big limitations with composite element classes: composite elements
cannot own collections and they should not be the child of any entity other than the unique parent.
361
362
Chapter 25.
package eg;
import java.util.List;
package eg;
import java.text.DateFormat;
import java.util.Calendar;
363
Chapter 25. Example: Weblog A...
return _datetime;
}
public Long getId() {
return _id;
}
public String getText() {
return _text;
}
public String getTitle() {
return _title;
}
public void setBlog(Blog blog) {
_blog = blog;
}
public void setDatetime(Calendar calendar) {
_datetime = calendar;
}
public void setId(Long long1) {
_id = long1;
}
public void setText(String string) {
_text = string;
}
public void setTitle(String string) {
_title = string;
}
}
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="eg">
<class
name="Blog"
table="BLOGS">
<id
name="id"
column="BLOG_ID">
<generator class="native"/>
</id>
<property
name="name"
column="NAME"
not-null="true"
unique="true"/>
364
Hibernate Mappings
<bag
name="items"
inverse="true"
order-by="DATE_TIME"
cascade="all">
<key column="BLOG_ID"/>
<one-to-many class="BlogItem"/>
</bag>
</class>
</hibernate-mapping>
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 3.0//EN"
"http://www.hibernate.org/dtd/hibernate-mapping-3.0.dtd">
<hibernate-mapping package="eg">
<class
name="BlogItem"
table="BLOG_ITEMS"
dynamic-update="true">
<id
name="id"
column="BLOG_ITEM_ID">
<generator class="native"/>
</id>
<property
name="title"
column="TITLE"
not-null="true"/>
<property
name="text"
column="TEXT"
not-null="true"/>
<property
name="datetime"
column="DATE_TIME"
not-null="true"/>
<many-to-one
name="blog"
column="BLOG_ID"
not-null="true"/>
</class>
365
Chapter 25. Example: Weblog A...
</hibernate-mapping>
package eg;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Iterator;
import java.util.List;
import org.hibernate.HibernateException;
import org.hibernate.Query;
import org.hibernate.Session;
import org.hibernate.SessionFactory;
import org.hibernate.Transaction;
import org.hibernate.cfg.Configuration;
import org.hibernate.tool.hbm2ddl.SchemaExport;
366
Hibernate Code
if (tx!=null) tx.rollback();
throw he;
}
finally {
session.close();
}
return blog;
}
367
Chapter 25. Example: Weblog A...
}
return item;
}
item.setText(text);
368
Hibernate Code
);
q.setMaxResults(max);
result = q.list();
tx.commit();
}
catch (HibernateException he) {
if (tx!=null) tx.rollback();
throw he;
}
finally {
session.close();
}
return result;
}
369
Chapter 25. Example: Weblog A...
result = q.list();
tx.commit();
}
catch (HibernateException he) {
if (tx!=null) tx.rollback();
throw he;
}
finally {
session.close();
}
return result;
}
}
370
Chapter 26.
26.1. Employer/Employee
The following model of the relationship between Employer and Employee uses an entity class
(Employment) to represent the association. You can do this when there might be more than one
period of employment for the same two parties. Components are used to model monetary values
and employee names.
<hibernate-mapping>
<id name="id">
<generator class="sequence">
<param name="sequence">employment_id_seq</param>
</generator>
</id>
<property name="startDate" column="start_date"/>
<property name="endDate" column="end_date"/>
371
Chapter 26. Example: Various ...
</class>
</hibernate-mapping>
372
Author/Work
26.2. Author/Work
Consider the following model of the relationships between Work, Author and Person. In
the example, the relationship between Work and Author is represented as a many-to-many
association and the relationship between Author and Person is represented as one-to-one
association. Another possibility would be to have Author extend Person.
<hibernate-mapping>
<property name="title"/>
<set name="authors" table="author_work">
<key column name="work_id"/>
<many-to-many class="Author" column name="author_id"/>
</set>
373
Chapter 26. Example: Various ...
</class>
<property name="alias"/>
<one-to-one name="person" constrained="true"/>
</class>
</hibernate-mapping>
There are four tables in this mapping: works, authors and persons hold work, author and person
data respectively. author_work is an association table linking authors to works. Here is the table
schema, as generated by SchemaExport:
374
Customer/Order/Product
alias VARCHAR(255),
primary key (id)
)
26.3. Customer/Order/Product
In this section we consider a model of the relationships between Customer, Order, Line Item
and Product. There is a one-to-many association between Customer and Order, but how can you
represent Order / LineItem / Product? In the example, LineItem is mapped as an association
class representing the many-to-many association between Order and Product. In Hibernate this
is called a composite element.
<hibernate-mapping>
375
Chapter 26. Example: Various ...
<property name="date"/>
<many-to-one name="customer" column="customer_id"/>
<list name="lineItems" table="line_items">
<key column="order_id"/>
<list-index column="line_number"/>
<composite-element class="LineItem">
<property name="quantity"/>
<many-to-one name="product" column="product_id"/>
</composite-element>
</list>
</class>
</hibernate-mapping>
customers, orders, line_items and products hold customer, order, order line item and product
data respectively. line_items also acts as an association table linking orders with products.
376
Miscellaneous example mappings
<class name="Person">
<id name="name"/>
<one-to-one name="address"
cascade="all">
<formula>name</formula>
<formula>'HOME'</formula>
</one-to-one>
<one-to-one name="mailingAddress"
cascade="all">
<formula>name</formula>
<formula>'MAILING'</formula>
</one-to-one>
</class>
<class name="Customer">
<id name="customerId"
length="10">
<generator class="assigned"/>
</id>
<list name="orders"
inverse="true"
cascade="save-update">
377
Chapter 26. Example: Various ...
<key column="customerId"/>
<index column="orderNumber"/>
<one-to-many class="Order"/>
</list>
</class>
<composite-id name="id"
class="Order$Id">
<key-property name="customerId" length="10"/>
<key-property name="orderNumber"/>
</composite-id>
<property name="orderDate"
type="calendar_date"
not-null="true"/>
<property name="total">
<formula>
( select sum(li.quantity*p.price)
from LineItem li, Product p
where li.productId = p.productId
and li.customerId = customerId
and li.orderNumber = orderNumber )
</formula>
</property>
<many-to-one name="customer"
column="customerId"
insert="false"
update="false"
not-null="true"/>
<bag name="lineItems"
fetch="join"
inverse="true"
cascade="save-update">
<key>
<column name="customerId"/>
<column name="orderNumber"/>
</key>
<one-to-many class="LineItem"/>
</bag>
</class>
<class name="LineItem">
<composite-id name="id"
class="LineItem$Id">
<key-property name="customerId" length="10"/>
<key-property name="orderNumber"/>
<key-property name="productId" length="10"/>
</composite-id>
378
Many-to-many with shared composite key attribute
<property name="quantity"/>
<many-to-one name="order"
insert="false"
update="false"
not-null="true">
<column name="customerId"/>
<column name="orderNumber"/>
</many-to-one>
<many-to-one name="product"
insert="false"
update="false"
not-null="true"
column="productId"/>
</class>
<class name="Product">
<synchronize table="LineItem"/>
<id name="productId"
length="10">
<generator class="assigned"/>
</id>
<property name="description"
not-null="true"
length="200"/>
<property name="price" length="3"/>
<property name="numberAvailable"/>
<property name="numberOrdered">
<formula>
( select sum(li.quantity)
from LineItem li
where li.productId = productId )
</formula>
</property>
</class>
379
Chapter 26. Example: Various ...
<formula>org</formula>
</many-to-many>
</set>
</class>
<class name="Person"
discriminator-value="P">
<id name="id"
column="person_id"
unsaved-value="0">
<generator class="native"/>
</id>
<discriminator
type="character">
<formula>
case
when title is not null then 'E'
when salesperson is not null then 'C'
else 'P'
end
</formula>
</discriminator>
<property name="name"
not-null="true"
length="80"/>
<property name="sex"
not-null="true"
update="false"/>
<component name="address">
<property name="address"/>
380
Associations on alternate keys
<property name="zip"/>
<property name="country"/>
</component>
<subclass name="Employee"
discriminator-value="E">
<property name="title"
length="20"/>
<property name="salary"/>
<many-to-one name="manager"/>
</subclass>
<subclass name="Customer"
discriminator-value="C">
<property name="comments"/>
<many-to-one name="salesperson"/>
</subclass>
</class>
<class name="Person">
<id name="id">
<generator class="hilo"/>
</id>
<one-to-one name="address"
property-ref="person"
cascade="all"
fetch="join"/>
<set name="accounts"
inverse="true">
<key column="userId"
property-ref="userId"/>
<one-to-many class="Account"/>
</set>
</class>
<class name="Address">
<id name="id">
<generator class="hilo"/>
</id>
381
Chapter 26. Example: Various ...
</class>
<class name="Account">
<id name="accountId" length="32">
<generator class="uuid"/>
</id>
<many-to-one name="user"
column="userId"
property-ref="userId"/>
</class>
382
Chapter 27.
Best Practices
Write fine-grained classes and map them using <component>:
Use an Address class to encapsulate street, suburb, state, postcode. This encourages
code reuse and simplifies refactoring.
383
Chapter 27. Best Practices
Session, wrap your JDBC operation as a org.hibernate.jdbc.Work object and using that
JDBC connection. This way you can still use the same transaction strategy and underlying
connection provider.
Use the open session in view pattern, or a disciplined assembly phase to avoid problems with
unfetched data:
Hibernate frees the developer from writing tedious Data Transfer Objects (DTO). In a
traditional EJB architecture, DTOs serve dual purposes: first, they work around the problem
that entity beans are not serializable; second, they implicitly define an assembly phase where
all data to be used by the view is fetched and marshalled into the DTOs before returning control
384
to the presentation tier. Hibernate eliminates the first purpose. Unless you are prepared to
hold the persistence context (the session) open across the view rendering process, you will
still need an assembly phase. Think of your business methods as having a strict contract
with the presentation tier about what data is available in the detached objects. This is not a
limitation of Hibernate. It is a fundamental requirement of safe transactional data access.
385
386
Chapter 28.
28.2. Dialect
The first line of portability for Hibernate is the dialect, which is a specialization of the
org.hibernate.dialect.Dialect contract. A dialect encapsulates all the differences in how
Hibernate must communicate with a particular database to accomplish some task like getting a
sequence value or structuring a SELECT query. Hibernate bundles a wide range of dialects for
many of the most popular databases. If you find that your particular database is not among them,
it is not terribly difficult to write your own.
Starting with version 3.2, Hibernate introduced the notion of automatically detecting the dialect to
use based on the java.sql.DatabaseMetaData obtained from a java.sql.Connection to that
database. This was much better, expect that this resolution was limited to databases Hibernate
know about ahead of time and was in no way configurable or overrideable.
Starting with version 3.3, Hibernate has a fare more powerful way to automatically determine
which dialect to should be used by relying on a series of delegates which implement the
org.hibernate.dialect.resolver.DialectResolver which defines only a single method:
The basic contract here is that if the resolver 'understands' the given database metadata then
it returns the corresponding Dialect; if not it returns null and the process continues to the next
resolver. The signature also identifies org.hibernate.exception.JDBCConnectionException
as possibly being thrown. A JDBCConnectionException here is interpreted to imply a "non
transient" (aka non-recoverable) connection problem and is used to indicate an immediate stop to
resolution attempts. All other exceptions result in a warning and continuing on to the next resolver.
387
Chapter 28. Database Portabil...
The cool part about these resolvers is that users can also register their own custom resolvers
which will be processed ahead of the built-in Hibernate ones. This might be useful in a number
of different situations: it allows easy integration for auto-detection of dialects beyond those
shipped with HIbernate itself; it allows you to specify to use a custom dialect when a particular
database is recognized; etc. To register one or more resolvers, simply specify them (seperated
by commas, tabs or spaces) using the 'hibernate.dialect_resolvers' configuration setting (see the
DIALECT_RESOLVERS constant on org.hibernate.cfg.Environment).
Note
Hibernate was changed slightly once the implication of this was better understood
so that the insert is delayed in cases where that is feasible.
The underlying issue is that the actual semanctics of the application itself changes in these cases.
Starting with version 3.2.3, Hibernate comes with a set of enhanced [http://in.relation.to/2082.lace]
identifier generators targetting portability in a much different way.
Note
There are specifically 2 bundled enhancedgenerators:
• org.hibernate.id.enhanced.SequenceStyleGenerator
• org.hibernate.id.enhanced.TableGenerator
388
Database functions
Warning
SQL functions can be referenced in many ways by users. However, not all databases support
the same set of functions. Hibernate, provides a means of mapping a logical function name to a
delegate which knows how to render that particular function, perhaps even using a totally different
physical function call.
Important
It is sort of implemented such that users can programatically register functions with
the org.hibernate.cfg.Configuration and those functions will be recognized
for HQL.
389
390
References
[PoEAA] Patterns of Enterprise Application Architecture. 0-321-12742-0. by Martin Fowler.
Copyright © 2003 Pearson Education, Inc.. Addison-Wesley Publishing Company.
[JPwH] Java Persistence with Hibernate. Second Edition of Hibernate in Action. 1-932394-88-5.
http://www.manning.com/bauer2 . by Christian Bauer and Gavin King. Copyright © 2007
Manning Publications Co.. Manning Publications Co..
391
392