Hibernate Reference
Hibernate Reference
Version: 2.1
Table of Contents
Preface ................................................................................................................................................
1. Quickstart with Tomcat ................................................................................................................
1.1. Getting started with Hibernate ............................................................................................... 1
1.2. First persistent class .............................................................................................................. 3
1.3. Mapping the cat ................................................................................................................... 4
1.4. Playing with cats .................................................................................................................. 5
1.5. Finally ................................................................................................................................. 7
2. Architecture ..................................................................................................................................
2.1. Overview ............................................................................................................................. 8
2.2. Persistent Object Identity ...................................................................................................... 10
2.3. JMX Integration ................................................................................................................... 10
2.4. JCA Support ........................................................................................................................ 10
3. SessionFactory Configuration .......................................................................................................
3.1. Programmatic Configuration ................................................................................................. 11
3.2. Obtaining a SessionFactory ................................................................................................... 11
3.3. User provided JDBC connection ........................................................................................... 11
3.4. Hibernate provided JDBC connection .................................................................................... 12
3.5. Other properties ................................................................................................................... 13
3.5.1. SQL Dialects ............................................................................................................. 15
3.5.2. Outer Join Fetching ................................................................................................... 16
3.5.3. Binary Streams .......................................................................................................... 16
3.5.4. SQL Logging to Console ............................................................................................ 16
3.5.5. Custom ConnectionProvider ....................................................................................... 16
3.5.6. Common connection properties .................................................................................. 16
3.5.7. Custom CacheProvider .............................................................................................. 17
3.5.8. Transaction Strategy .................................................................................................. 17
3.5.9. JNDI-bound SessionFactory ....................................................................................... 17
3.5.10. Query Language Substitution ................................................................................... 18
3.6. XML Configuration File ....................................................................................................... 18
3.7. Logging ............................................................................................................................... 19
4. Persistent Classes ..........................................................................................................................
4.1. Simple Example ................................................................................................................... 20
4.1.1. Declare accessors and mutators for persistent fields ..................................................... 21
4.1.2. Implement a default constructor .................................................................................. 21
4.1.3. Provide an identifier property (optional) ...................................................................... 21
4.1.4. Prefer non-final classes (optional) ............................................................................... 21
4.2. Inheritance ........................................................................................................................... 21
4.3. Persistent Lifecycle Callbacks ............................................................................................... 22
4.4. Validatable .......................................................................................................................... 22
4.5. XDoclet Example ................................................................................................................. 23
5. Basic O/R Mapping .......................................................................................................................
5.1. Mapping declaration ............................................................................................................. 25
5.1.1. Doctype .................................................................................................................... 25
5.1.2. hibernate-mapping ..................................................................................................... 25
5.1.3. class ......................................................................................................................... 26
5.1.4. id .............................................................................................................................. 28
5.1.4.1. generator ........................................................................................................ 28
5.1.4.2. Hi/Lo Algorithm ............................................................................................. 29
Hibernate 2.1 ii
HIBERNATE - Relational Persistence for Idiomatic Java
Hibernate 2.1 iv
HIBERNATE - Relational Persistence for Idiomatic Java
Hibernate 2.1 v
Preface
Working with object-oriented software and a relational database can be cumbersome and time consuming in to-
days enterprise environments. Hibernate is an object/relational mapping tool for Java environments. The term
object/relational mapping (ORM) refers to the technique of mapping a data representation from an object model
to a relational, SQL-based structure.
Hibernate not only takes care of the mapping from Java classes to database tables, but also provides data query
and retrieval facilities and can significantly reduce development time otherwise spent with manual data han-
dling in SQL and JDBC. Hibernates goal is to relieve the developer from 95 percent of common data persis-
tence related programming tasks.
If you are new to Hibernate and Object/Relational Mapping or even Java, please follow these steps:
1. Read Chapter 1, Quickstart with Tomcat for a 30 minute tutorial, using Tomcat.
2. Read Chapter 2, Architecture to understand the environments where Hibernate can be used.
3. Have a look at the eg/ directory in the Hibernate distribution, it contains a simple standalone application.
Copy your JDBC driver to the lib/ directory and edit src/hibernate.properties, specifying correct val-
ues for your database. From a command prompt in the distribution directory, type ant eg (using Ant), or
under Windows, type build eg.
6. Third party demos, examples and tutorials are linked on the Hibernate website.
7. The Community Area on the Hibernate website is a good source for design patterns and various integra-
tion solutions (Tomcat, JBoss, Spring, Struts, EJB, etc.).
8. An offline version of the Hibernate website is distributed with Hibernate in the doc/ subdirectory.
If you have questions, use the user forum linked on the Hibernate website. We also provide a JIRA issue track-
ings system for bug reports and feature requests. If you are interested in the development of Hibernate, join the
developer mailing list.
Hibernate 2.1 vi
Chapter 1. Quickstart with Tomcat
The first step is to copy all required libraries to the Tomcat installation. We use a separate web context (we-
bapps/quickstart) for this tutorial, so we've to consider both the global library search path (TOMCAT/com-
mon/lib) and the classloader at the context level in webapps/quickstart/WEB-INF/lib (for JAR files) and we-
bapps/quickstart/WEB-INF/classes. We refer to both classloader levels as the global classpath and the con-
text classpath.
1. First, copy the JDBC driver for the database to the global classpath. This is required for the DBCP connec-
tion pool software which comes bundled with Tomcat, For this tutorial, copy the pg73jdbc3.jar library
(for PostgreSQL 7.3 and JDK 1.4) to the global classloaders path. If you'd want to use a different database,
simply copy its appropriate JDBC driver.
2. Never copy anthing else into the global classloader path in Tomcat, or you will get problems with various
tools, including Log4j, commons-logging and others. Always us the context classpath for each web appli-
cation, that is, copy libraries to WEB-INF/lib and your own builds and configuration/property files to WEB-
INF/classes. Both directories are in the context level classpath by default.
3. Hibernate is packaged as a JAR library. The hibernate2.jar file is to be placed in the context classpath
together with other classes of the application. Hibernate requires some 3rd party libraries at runtime, these
come bundled with the Hibernate distribution in the lib/ directory; see Table 1.1. Copy the required 3rd
party libraries to the context classpath.
4. Configure both Tomcat and Hibernate for a database connection. This means Tomcat will provide pooled
JDBC connections, Hibernate requests theses connections through JNDI. Tomcat binds the connection
pool to JNDI.
Library Description
dom4j (required) Hibernate uses dom4j to parse XML configuration and XML mapping
metadata files.
CGLIB (required) Hibernate uses the code generation library to enhance classes at runtime
(in combination with Java reflection).
Commons Beanutils, Commons Hibernate uses the various utility libraries from the Apache Jakarta
Collections, Commons Lang, Commons project.
Commons Logging (required)
Hibernate 2.1 1
Quickstart with Tomcat
Library Description
Log4j (optional) Hibernate uses the Commons Logging API, which in turn can use Log4j
as the logging mechanism. If the Log4j library is placed in the context
library directory, Commons Logging will use Log4j and its
log4j.properties in the context classpath. An example properties file
for log4j is delivered with the Hibernate distribution. So, copy log4j.jar
to your context classpath too.
Required or not? Have a look at the file lib/README.txt in the Hibernate distribution.
This is an up-to-date list of 3rd party libraries distributed with Hiber-
nate. You will find all required and optional libraries listed there.
After all libraries have been copied, a resource declaration for the database JDBC connection pool has to be
added to Tomcats main configuration file, TOMCAT/conf/server.xml:
The context we configure in this example is named quickstart, its base is the TOMCAT/webapp/quickstart di-
rectory. To access any Servlets, call the path http://localhost:8080/quickstart in your browser.
Tomcat uses the DBCP connection pool with this configuration and provides pooled JDBC Connections
through JNDI at java:comp/env/jdbc/quickstart. If you have trouble getting the connection pool running,
refer to the Tomcat documentation. If you get JDBC driver exception messages, try to setup JDBC connection
Hibernate 2.1 2
Quickstart with Tomcat
pool without Hibernate first. Tomcat & JDBC tutorials are available on the Web.
The next step is to configure Hibernate, using the connections from the JNDI bound pool. We use Hibernates
XML based configuration. The basic approach, using properties, is equivalent in features, but doesn't offer any
advantages. We use the XML configuration because it is usualy more convenient. The XML configuration file
is placed in the context classpath (WEB-INF/classes), as hibernate.cfg.xml:
<hibernate-configuration>
<session-factory>
<property name="connection.datasource">java:comp/env/jdbc/quickstart</property>
<property name="show_sql">false</property>
<property name="dialect">net.sf.hibernate.dialect.PostgreSQLDialect</property>
</session-factory>
</hibernate-configuration>
We turn logging of SQL commands off and tell Hibernate what database SQL dialect is used and where to get
the JDBC connections (by declaring the JNDI address where the datasource pool is bound). The dialect is a re-
quired setting, databases differ in their interpretation of the SQL "standard". Hibernate will take care of the dif-
ferences and comes bundled with dialects for all major commercial and open source databases.
A SessionFactory is Hibernates concept of a single datastore, multiple databases can be used by creating mul-
tiple XML configuration files and creating multiple Configuration and SessionFactory objects in your appli-
cation.
The last element of the hibernate.cfg.xml declares Cat.hbm.xml as the name of a Hibernate XML mapping
file for the persistent class Cat. This file contains the metadata for the mapping of the POJO class to a datbase
table (or multiple tables). We'll come back to that file soon. Let's write the POJO class first and then declare the
mapping metadata for it.
package net.sf.hibernate.examples.quickstart;
public Cat() {
}
Hibernate 2.1 3
Quickstart with Tomcat
Hibernate is not restricted in its usage of property types, all Java JDK types and primitives (like String, char
and float) can be mapped, including classes from the Java collections framework. You can map them as val-
ues, collections of values, or associations to other entities. The id is a special property that represents the
database identifer (primary key) of that class, it is mandatory for entities like a Cat.
No special interface has to be implemented for persistent classes nor do we have to subclass from a special root
persistent class. Hibernate also doesn't use any build time processing, such as byte-code manipulation, it relies
solely on Java reflection and runtime class enhancement (through CGLIB). So, without any dependency in the
POJO class on Hibernate, we can map it to a database table.
The metadata includes declaration of persistent classes and the mapping of properties (as values or associations
to other entities) to database tables.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping
PUBLIC "-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
Hibernate 2.1 4
Quickstart with Tomcat
</id>
<!-- A cat has to have a name, but it shouldn' be too long. -->
<property name="name">
<column name="NAME" sql-type="varchar(16)" not-null="true"/>
</property>
<property name="sex"/>
<property name="weight"/>
</class>
</hibernate-mapping>
Every persistent class has to have an identifer attribute (actually, only classes representing first class objects,
not dependent value objects, which are mapped as components of a first class object). This property is used to
distinguish persistent objects: Two cats are equal if catA.getId().equals(catB.getId()) is true, this concept
is called database identity. Hibernate comes bundled with various identifer generators for different scenarios
(including native generators for database sequences and hi/lo identifier patterns). We use the UUID generator
and also specify the column CAT_ID of the table CAT for the generated identifier value (as a primary key of the
table).
All other properties of Cat are mapped to the same table. In the case of the name property, we mapped it with an
explicit database column declaration. This is especially useful when the database schema is automatically gen-
erated (as SQL DDL statements) from the mapping declaration with Hibernate's SchemaExport tool. All other
properties are mapped using Hibernate's default settings, which is what you need most of the time. The table
CAT in the database looks like this:
You should now create this table in your database manually, and later read Chapter 19, Toolset Guide if you
want to automate this step with the SchemaExport tool. This tool can create a full SQL DDL, including table
definition, custom column type constraints, unique constraints and indexes.
SessionFactory sessionFactory =
new Configuration().configure().buildSessionFactory();
A SessionFactory is responsible for one database and may only use one XML configuration file (hiber-
nate.cfg.xml).
The focus of this tutorial is the setup of Tomcat for JNDI bound JDBC connections, and a basic Hibernate con-
figuration. You can write a Servlet containing the following code any way you like, just make sure that a Ses-
sionFactory is only created once. This means you should not keep it in an instance variable in your Servlet. A
good choice is a static SessionFactory in a helper class like this:
Hibernate 2.1 5
Quickstart with Tomcat
import net.sf.hibernate.*;
import net.sf.hibernate.cfg.*;
static {
try {
sessionFactory = new Configuration().configure().buildSessionFactory();
} catch (HibernateException ex) {
throw new RuntimeException("Exception building SessionFactory: " + ex.getMessage(), ex);
}
}
This class does not only take care of the SessionFactory with its static attribute, but also has a ThreadLocal to
hold the Session for the current executing thread.
A Session is a non-threadsafe object that represents a single unit-of-work with the database. Sessions are
opened by a SessionFactory and are closed when all work is completed:
session.save(princess);
tx.commit();
HibernateUtil.closeSession();
In a Session, every database operation happens inside a transaction, which isolates the operations (even read-
only operations). We use Hibernates Transaction API to abstract from the underlying transaction strategy (in
our case, JDBC transactions). This allows our application to be deployed with container managed transactions
(using JTA) without any change in the source code, if so desired. Please note that the example above does not
handle any exceptions.
Also note that you may call HibernateUtil.currentSession(); as many times as you like, you will always
get the current Session of this thread. You have to make sure the Session is closed after your database transac-
tion(s), either in your Servlet code or in a ServletFilter before the HTTP response is send.
Hibernate 2.1 6
Quickstart with Tomcat
Hibernate has various methods that can be used to retrieve objects from the database. The most flexible way is
using the Hibernate Query Language (HQL), which is an easy to learn and powerful object-oriented extension
to SQL:
Query query = session.createQuery("select cat from Cat as cat where cat.sex = :sex");
query.setCharacter("sex", 'F');
for (Iterator it = query.iterate(); it.hasNext();) {
Cat cat = (Cat) it.next();
out.println("Female Cat: " + cat.getName() );
}
tx.commit();
Hibernate also offers an object-oriented query by criteria API that can be used to formulate type-safe queries.
Hibernate of course uses PreparedStatements and parameter binding for all SQL communication with the
database.
1.5. Finally
We only scratched the surface of Hibernate in this small tutorial. Please note that we don't include any Servlet
specific code in our examples. You have to create a Servlet yourself and insert the Hibernate code as you see
fit.
Keep in mind that Hibernate, as a data access layer, is tightly integrated into your application. Usually, all other
layers depent on the persistence mechanism. Make sure you understand the implications of this design.
Hibernate 2.1 7
Chapter 2. Architecture
2.1. Overview
A (very) high-level view of the Hibernate architecture:
This diagram shows Hibernate using the database and configuration data to provide persistence services (and
persistent objects) to the application.
We would like to show a more detailed view of the runtime architecture. Unfortunately, Hibernate is flexible
and supports several approaches. We will show the two extremes. The "lite" architecture has the application
provide its own JDBC connections and manage its own transactions. This approach uses a minimal subset of
Hibernate's APIs:
The "full cream" architecture abstracts the application away from the underlying JDBC / JTA APIs and lets Hi-
Hibernate 2.1 8
Architecture
SessionFactory (net.sf.hibernate.SessionFactory)
A threadsafe (immutable) cache of compiled mappings. A factory for Session. A client of Connection-
Provider.
Session (net.sf.hibernate.Session)
A single-threaded, short-lived object representing a conversation between the application and the persistent
store. Wraps a JDBC connection. Factory for Transaction.
Transaction (net.sf.hibernate.Transaction)
(Optional) A single-threaded, short-lived object used by the application to specify atomic units of work.
Abstracts application from underlying JDBC, JTA or CORBA transaction. A Session might span several
Transactions.
Hibernate 2.1 9
Architecture
ConnectionProvider (net.sf.hibernate.connection.ConnectionProvider)
(Optional) A factory for (and pool of) JDBC connections. Abstracts application from underlying Data-
source or DriverManager. Not exposed to application.
TransactionFactory (net.sf.hibernate.TransactionFactory)
(Optional) A factory for Transaction instances. Not exposed to the application.
Given a "lite" architecture, the application bypasses the Transaction / TransactionFactory and / or Connec-
tionProvider APIs to talk to JTA or JDBC directly.
Persistent Identity
foo.getId().equals( bar.getId() )
JVM Identity
foo==bar
Then for objects returned by a particular Session, the two notions are equivalent. However, while the applica-
tion might concurrently access the "same" (persistent identity) business object in two different sessions, the two
instances will actually be "different" (JVM identity).
This approach leaves Hibernate and the database to worry about concurrency (the application never needs to
synchronize on any business object, as long as it sticks to a single thread per Session) or object identity (within
a session the application may safely use == to compare objects).
Please see the Hibernate website for more information on how to configure Hibernate to run as a JMX compo-
nent inside JBoss.
Hibernate 2.1 10
Chapter 3. SessionFactory Configuration
Because Hibernate is designed to operate in many different environments, there are a large number of configu-
ration parameters. Fortunately, most have sensible default values and Hibernate is distributed with an example
hibernate.properties file that shows the various options.
An alternative (better?) way is to let Hibernate load a mapping file using getResourceAsStream().
Then Hibernate will look for mapping files named /eg/Vertex.hbm.xml, /eg/Edge.hbm.xml in the classpath.
This approach eliminates any hardcoded filenames.
Hibernate 2.1 11
SessionFactory Configuration
The last line here is optional - the application may choose to manage transactions by directly manipulating JTA
or JDBC transactions. However, if you use a Hibernate Transaction (i.e., one of Hibernate's APIs), your client
code will be abstracted away from the underlying implementation. (You could, for example, choose to switch
to a CORBA transaction service at some future point, with no changes to application code.)
All Hibernate property names and semantics are defined on the class net.sf.hibernate.cfg.Environment.
We will now describe the most important settings.
Hibernate will obtain (and pool) connections using java.sql.DriverManager if you set the following proper-
ties:
Hibernate's own connection pooling algorithm is 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.
C3P0 is an open source JDBC connection pool distributed along with Hibernate in the lib directory. Hibernate
will use the built-in C3P0ConnectionProvider for connection pooling if you set the hibernate.c3p0.* proper-
ties. There is also built-in support for Apache DBCP and for Proxool. You must set the properties hiber-
nate.dbcp.* (DBCP connection pool properties) and hibernate.dbcp.ps.* (DBCP statement cache proper-
Hibernate 2.1 12
SessionFactory Configuration
ties) to enable DBCPConnectionProvider. Please refer the the Apache commons-pool documentation for the in-
terpretation of these properties. You should set the hibernate.proxool.* properties if you wish to use Prox-
ool.
For use inside an application server, Hibernate may obtain connections from a javax.sql.Datasource regis-
tered in JNDI. Set the following properties:
System-level properties can only be set via java -Dproperty=value or be defined in hibernate.properties
and not with an instance of Properties passed to the Configuration.
eg. full.classname.of.Dialect
eg. SCHEMA_NAME
eg. jndi/composite/name
hibernate.max_fetch_depth Set a maximum "depth" for the outer join fetch tree.
Hibernate 2.1 13
SessionFactory Configuration
(calls Statement.setFetchSize()).
eg. 1, 2, 4, 8
eg. classname.of.ConnectionProvider
eg. classname.of.CacheProvider
eg. classname.of.TransactionFactory
eg. jndi/composite/name
Hibernate 2.1 14
SessionFactory Configuration
eg. classname.of.TransactionManagerLookup
You should always set the hibernate.dialect property to the correct net.sf.hibernate.dialect.Dialect
subclass for your database. This is not strictly essential unless you wish to use native or sequence primary key
generation or pessimistic locking (with, eg. Session.lock() or Query.setLockMode()). However, if you spec-
ify a dialect, Hibernate will use sensible defaults for some of the other properties listed above, saving you the
effort of specifying them manually.
RDBMS Dialect
DB2 net.sf.hibernate.dialect.DB2Dialect
MySQL net.sf.hibernate.dialect.MySQLDialect
SAP DB net.sf.hibernate.dialect.SAPDBDialect
Oracle 9 net.sf.hibernate.dialect.Oracle9Dialect
Sybase net.sf.hibernate.dialect.SybaseDialect
Progress net.sf.hibernate.dialect.ProgressDialect
Interbase net.sf.hibernate.dialect.InterbaseDialect
Pointbase net.sf.hibernate.dialect.PointbaseDialect
PostgreSQL net.sf.hibernate.dialect.PostgreSQLDialect
HypersonicSQL net.sf.hibernate.dialect.HSQLDialect
Hibernate 2.1 15
SessionFactory Configuration
RDBMS Dialect
Ingres net.sf.hibernate.dialect.IngresDialect
Informix net.sf.hibernate.dialect.InformixDialect
FrontBase net.sf.hibernate.dialect.FrontbaseDialect
If your database supports ANSI or Oracle style outer joins, outer join fetching might increase performance by
limiting the number of round trips to and from the database (at the cost of possibly more work performed by the
database itself). Outer join fetching allows a graph of objects connected by many-to-one, one-to-many or one-
to-one associations to be retrieved in a single SQL SELECT.
By default, the fetched graph ends at leaf objects, collections, objects with proxies, or where circularities occur.
For a particular association, fetching may be enabled or disabled (and the default behaviour overridden) by set-
ting the outer-join attribute in the XML mapping. Outer join fetching may be disabled globally by setting the
property hibernate.use_outer_join to false. You may limit the maximum depth of the fetched graph of ob-
jects using hibernate.max_fetch_depth.
Oracle limits the size of byte arrays that may be passed to/from its JDBC driver. If you wish to use large in-
stances of binary or serializable type, you should enable hibernate.jdbc.use_streams_for_binary. This
is a JVM-level setting only.
hibernate.show_sql forces Hibernate to write SQL statements to the console. This is provided as an easy al-
ternative to enabling logging.
You may define your own plugin strategy for obtaining JDBC connections by implementing the interface
net.sf.hibernate.connection.ConnectionProvider. You may select a custom implementation by setting
hibernate.connection.provider_class.
Certain configuration properties affect all of the built-in connection providers apart from DatasourceConnec-
tionProvider. These include: hibernate.connection.driver_class, hibernate.connection.url, hiber-
nate.connection.username and hibernate.connection.password.
Arbitrary connection properties may be given by prepending "hibernate.connnection" to the property name.
For example, you may specify a charSet using hibernate.connnection.charSet.
Hibernate 2.1 16
SessionFactory Configuration
If you wish to use the Hibernate Transaction API, you must specify a factory class for Transaction instances
by setting the property hibernate.transaction.factory_class. There are two standard (built-in) choices:
net.sf.hibernate.transaction.JDBCTransactionFactory
delegates to database (JDBC) transactions
net.sf.hibernate.transaction.JTATransactionFactory
delegates to JTA (if an existing transaction is underway, the Session performs its work in that context, oth-
erwise a new transaction is started)
You may also define your own transaction strategies (for a CORBA transaction service, for example).
If you wish to use JVM-level caching of mutable data in a JTA environment, you must specify a strategy for
obtaining the JTA TransactionManager.
net.sf.hibernate.transaction.JBossTransactionManagerLookup JBoss
net.sf.hibernate.transaction.WeblogicTransactionManagerLookup Weblogic
net.sf.hibernate.transaction.WebSphereTransactionManagerLookup WebSphere
net.sf.hibernate.transaction.OrionTransactionManagerLookup Orion
net.sf.hibernate.transaction.ResinTransactionManagerLookup Resin
net.sf.hibernate.transaction.JOTMTransactionManagerLookup JOTM
net.sf.hibernate.transaction.JOnASTransactionManagerLookup JOnAS
net.sf.hibernate.transaction.JRun4TransactionManagerLookup JRun4
If you wish to have the SessionFactory bound to a JNDI namespace, specify a name (eg.
java:comp/env/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, eg. Tomcat.)
When binding the SessionFactory to JNDI, Hibernate will use the values of hibernate.jndi.url, hiber-
nate.jndi.class to instantiate an initial context. If they are not specified, the default InitialContext will be
used.
Hibernate 2.1 17
SessionFactory Configuration
If you do choose to use JNDI, an EJB or other utility class may obtain the SessionFactory using a JNDI
lookup.
You may define new Hibernate query tokens using hibernate.query.substitutions. For example:
would cause the tokens true and false to be translated to integer literals in the generated SQL.
hibernate.query.substitutions toLowercase=LOWER
"http://hibernate.sourceforge.net/hibernate-configuration-2.0.dtd">
<hibernate-configuration>
</session-factory>
</hibernate-configuration>
Hibernate 2.1 18
SessionFactory Configuration
3.7. Logging
Hibernate logs various events using Apache commons-logging. The commons-logging service will direct out-
put to either Apache log4j (if you include log4j.jar in your classpath) or JDK1.4 logging (if running under
JDK1.4 or above). You may download log4j from http://jakarta.apache.org. To use log4j you will need to
place a log4j.properties file in your classpath. An example properties file is distributed with Hibernate.
We strongly recommend 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 trou-
bleshooting device.
Hibernate 2.1 19
Chapter 4. Persistent Classes
package eg;
import java.util.Set;
import java.util.Date;
Hibernate 2.1 20
Persistent Classes
return sex;
}
}
Cat declares accessor methods for all its persistent fields. Many other ORM tools directly persist instance vari-
ables. We believe it is far better to decouple this implementation detail from the persistence mechanism. Hiber-
nate persists JavaBeans style properties, and recognizes method names of the form getFoo, isFoo and setFoo.
Properties need not be declared public - Hibernate can persist a property with a default, protected or private
get / set pair.
Cat has an implicit default (no-argument) constructor. All persistent classes must have a default constructor
(which may be non-public) so Hibernate can instantiate them using Constructor.newInstance().
Cat has a property called id. This property holds the primary key column of a database table. The property
might have been called anything, and its type might have been any primitive type, any primitive "wrapper"
type, java.lang.String or java.util.Date. (If your legacy database table has composite keys, you can even
use a user-defined class with properties of these types - see the section on composite identifiers below.)
The identifier property is optional. You can leave it off and let Hibernate keep track of object identifiers inter-
nally. However, for many applications it is still a good (and very popular) design decision.
What's more, some functionality is available only to classes which declare an identifier property:
We recommend you declare consistently-named identifier properties on persistent classes. We further recom-
mend that you use a nullable (ie. non-primitive) type.
A central feature of Hibernate, proxies, depends upon the persistent class being either non-final, or the imple-
mentation of an interface that declares all public methods.
You can persist final classes that do not implement an interface with Hibernate, but you won't be able to use
proxies - which will limit your options for performance tuning somewhat.
4.2. Inheritance
A subclass must also observe the first and second rules. It inherits its identifier property from Cat.
package eg;
Hibernate 2.1 21
Persistent Classes
onSave(), onDelete() and onUpdate() may be used to cascade saves and deletions of dependent objects. This
is an alternative to declaring cascaded operations in the mapping file. onLoad() may be used to initialize tran-
sient properties of the object from its persistent state. It may not be used to load dependent objects since the
Session interface may not be invoked from inside this method. A further intended usage of onLoad(), on-
Save() and onUpdate() is to store a reference to the current Session for later use.
Note that onUpdate() is not called every time the object's persistent state is updated. It is called only when a
transient object is passed to Session.update().
If onSave(), onUpdate() or onDelete() return true, the operation is silently vetoed. If a CallbackException
is thrown, the operation is vetoed and the exception is passed back to the application.
Note that onSave() is called after an identifier is assigned to the object, except when native key generation is
used.
4.4. Validatable
If the persistent class needs to check invariants before its state is persisted, it may implement the following in-
terface:
The object should throw a ValidationFailure if an invariant was violated. An instance of Validatable should
Hibernate 2.1 22
Persistent Classes
Unlike the callback methods of the Lifecycle interface, validate() might be called at unpredictable times.
The application should not rely upon calls to validate() for business functionality.
package eg;
import java.util.Set;
import java.util.Date;
/**
* @hibernate.class
* table="CATS"
*/
public class Cat {
private Long id; // identifier
private Date birthdate;
private Cat mate;
private Set kittens
private Color color;
private char sex;
private float weight;
/**
* @hibernate.id
* generator-class="native"
* column="CAT_ID"
*/
public Long getId() {
return id;
}
private void setId(Long id) {
this.id=id;
}
/**
* @hibernate.many-to-one
* column="MATE_ID"
*/
public Cat getMate() {
return mate;
}
void setMate(Cat mate) {
this.mate = mate;
}
/**
* @hibernate.property
* column="BIRTH_DATE"
*/
public Date getBirthdate() {
return birthdate;
}
void setBirthdate(Date date) {
birthdate = date;
}
/**
* @hibernate.property
* column="WEIGHT"
*/
public float getWeight() {
Hibernate 2.1 23
Persistent Classes
return weight;
}
void setWeight(float weight) {
this.weight = weight;
}
/**
* @hibernate.property
* column="COLOR"
* not-null="true"
*/
public Color getColor() {
return color;
}
void setColor(Color color) {
this.color = color;
}
/**
* @hibernate.set
* lazy="true"
* order-by="BIRTH_DATE"
* @hibernate.collection-key
* column="PARENT_ID"
* @hibernate.collection-one-to-many
*/
public Set getKittens() {
return kittens;
}
void setKittens(Set kittens) {
this.kittens = kittens;
}
// addKitten not needed by Hibernate
public void addKitten(Cat kitten) {
kittens.add(kitten);
}
/**
* @hibernate.property
* column="SEX"
* not-null="true"
* update="false"
*/
public char getSex() {
return sex;
}
void setSex(char sex) {
this.sex=sex;
}
}
Hibernate 2.1 24
Chapter 5. Basic O/R Mapping
Note that, even though many Hibernate users choose to define XML mappings be hand, a number of tools exist
to generate the mapping document, including XDoclet, Middlegen and AndroMDA.
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class name="eg.Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
We will now discuss the content of the mapping document. We will only describe the document elements and
attributes that are used by Hibernate at runtime. The mapping document also contains some extra optional at-
tributes and elements that affect the database schemas exported by the schema export tool. (For example the
not-null attribute.)
5.1.1. Doctype
All XML mappings should declare the doctype shown. The actual DTD may be found at the URL above, in the
directory hibernate-x.x.x/src/net/sf/hibernate or in hibernate.jar. Hibernate will always look for the
DTD in its classpath first.
5.1.2. hibernate-mapping
Hibernate 2.1 25
Basic O/R Mapping
This element has three optional attributes. The schema attribute specifies that tables referred to by this mapping
belong to the named schema. If specified, tablenames will be qualified by the given schema name. If missing,
tablenames will be unqualified. The default-cascade attribute specifies what cascade style should be assumed
for properties and collections which do not specify a cascade attribute. The auto-import attribute lets us use
unqualified class names in the query language, by default.
<hibernate-mapping
schema="schemaName" ❶
default-cascade="none|save-update" ❷
auto-import="true|false" ❸
/>
If you have two persistent classes with the same (unqualified) name, you should set auto-import="false". Hi-
bernate will throw an exception if you attempt to assign two classes to the same "imported" name.
5.1.3. class
<class
name="ClassName" ❶
table="tableName" ❷
discriminator-value="discriminator_value" ❸
mutable="true|false" ❹
schema="owner" ❺
proxy="ProxyInterface" ❻
dynamic-update="true|false" ❼
dynamic-insert="true|false" ❽
select-before-update="true|false" ❾
polymorphism="implicit|explicit" ❿
where="arbitrary sql where condition" (11)
persister="PersisterClass" (12)
batch-size="N" (13)
optimistic-lock="none|version|dirty|all" (14)
lazy="true|false" (15)
/>
❶ name: The fully qualified Java class name of the persistent class (or interface).
❷ table: The name of its database table.
❸ discriminator-value (optional - defaults to the class name): A value that distiguishes individual sub-
classes, used for polymorphic behaviour. Acceptable values include null and not null.
❹ mutable (optional, defaults to true): Specifies that instances of the class are (not) mutable.
❺ schema (optional): Override the schema name specified by the root <hibernate-mapping> element.
❻ proxy (optional): Specifies an interface to use for lazy initializing proxies. You may specify the name of
the class itself.
❼ dynamic-update (optional, defaults to false): Specifies that UPDATE SQL should be generated at runtime
and 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. In certain cases (actually, only when a
transient object has been associated with a new session using update()), this means that Hibernate will
Hibernate 2.1 26
Basic O/R Mapping
It is perfectly acceptable for the named persistent class to be an interface. You would then declare implement-
ing classes of that interface using the <subclass> element. You may persist any static inner class. You should
specify the class name using the standard form ie. eg.Foo$Bar.
Immutable classes, mutable="false", may not be updated or deleted by the application. This allows Hibernate
to make some minor performance optimizations.
The optional proxy attribute enables lazy initialization of persistent instances of the class. Hibernate will ini-
tially return CGLIB proxies which implement the named interface. The actual persistent object will be loaded
when a method of the proxy is invoked. See "Proxies for Lazy Initialization" below.
Implicit polymorphism means that instances of the class will be returned by a query that names any superclass
or implemented interface or the class and that instances of any subclass of the class will be returned by a query
that names the class itself. Explicit polymorphism means that class instances will be returned only be queries
that explicitly name that class and that queries that name the class will return only instances of subclasses
mapped inside this <class> declaration as a <subclass> or <joined-subclass>. For most purposes the default,
polymorphism="implicit", is appropriate. Explicit polymorphism is useful when two different classes are
mapped to the same table (this allows a "lightweight" class that contains a subset of the table columns).
The persister attribute lets you customize the persistence strategy used for the class. You may, for example,
specify your own subclass of net.sf.hibernate.persister.EntityPersister or you might even provide a
completely new implementation of the interface net.sf.hibernate.persister.ClassPersister that imple-
ments persistence via, for example, stored procedure calls, serialization to flat files or LDAP. See
net.sf.hibernate.test.CustomPersister for a simple example (of "persistence" to a Hashtable).
Note that the dynamic-update and dynamic-insert settings are not inherited by subclasses and so may also be
specified on the <subclass> or <joined-subclass> elements. These settings may increase performance in
some cases, but might actually decrease performance in others. Use judiciously.
Use of select-before-update will usually decrease performance. It is very useful to prevent a database update
trigger being called unnecessarily.
If you enable dynamic-update, you will have a choice of optimistic locking strategies:
We very strongly recommend that you use version/timestamp columns for optimistic locking with Hibernate.
This is the optimal strategy with respect to performance and is the only strategy that correctly handles modifi-
cations made outside of the session (ie. when Session.update() is used).
Hibernate 2.1 27
Basic O/R Mapping
5.1.4. id
Mapped classes must declare the primary key column of the database table. Most classes will also have a Jav-
aBeans-style property holding the unique identifier of an instance. The <id> element defines the mapping from
that property to the primary key column.
<id
name="propertyName" ❶
type="typename" ❷
column="column_name" ❸
unsaved-value="any|none|null|id_value" ❹
access="field|property|ClassName"> ❺
<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 important! If the identfier property of your class does not default to null, then
you should specify the actual default.
There is an alternative <composite-id> declaration to allow access to legacy data with composite keys. We
strongly discourage its use for anything else.
5.1.4.1. generator
The required <generator> child element names a Java class used to generate unique identifiers for instances of
the persistent class. If any parameters are required to configure or initialize the generator instance, they are
passed using the <param> element.
All generators implement the interface net.sf.hibernate.id.IdentifierGenerator. This is a very simple in-
terface; some applications may choose to provide their own specialized implementations. However, Hibernate
provides a range of built-in implementations. There are shortcut names for the built-in generators:
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
Hibernate 2.1 28
Basic O/R Mapping
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 col-
umn (by default hibernate_unique_key and next respectively) as a source of hi values. The hi/lo algo-
rithm generates identifiers that are unique only for a particular database. Do not use this generator with
connections enlisted with JTA or with a user-supplied connection.
seqhilo
uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a named database
sequence.
uuid.hex
uses a 128-bit UUID algorithm to generate identifiers of type string, unique within a network (the IP ad-
dress is used). The UUID is encoded as a string of hexadecimal digits of length 32.
uuid.string
uses the same UUID algorithm. The UUID is encoded a string of length 16 consisting of (any) ASCII char-
acters. Do not use with PostgreSQL.
native
picks identity, sequence or hilo depending upon the capabilities of the underlying database.
assigned
lets the application to assign an identifier to the object before save() is called.
foreign
uses the identifier of another associated object. Usually used in conjunction with a <one-to-one> primary
key association.
The hilo and seqhilo generators provide two alternate implementations of the hi/lo algorithm, a favorite ap-
proach to identifier generation. The first implementation requires a "special" database table to hold the next
available "hi" value. The second uses an Oracle-style sequence (where supported).
Unfortunately, you can't use hilo when supplying your own Connection to Hibernate, or when Hibernate is us-
ing an application server datasource to obtain connections enlisted with JTA. Hibernate must be able to fetch
Hibernate 2.1 29
Basic O/R Mapping
the "hi" value in a new transaction. A standard approach in an EJB environment is to implement the hi/lo algo-
rithm using a stateless session bean.
The UUIDs contain: IP address, startup time of the JVM (accurate to a quarter second), system time and a
counter value (unique within the JVM). It's not possible to obtain a MAC address or memory address from Java
code, so this is the best we can do without using JNI.
For databases which support identity columns (DB2, MySQL, Sybase, MS SQL), you may use identity key
generation. For databases that support sequences (DB2, Oracle, PostgreSQL, Interbase, McKoi, SAP DB) you
may use sequence style key generation. Both these strategies require two SQL queries to insert a new object.
For cross-platform development, the native strategy will choose from the identity, sequence and hilo strate-
gies, dependant upon the capabilities of the underlying database.
If you want the application to assign identifiers (as opposed to having Hibernate generate them), you may use
the assigned generator. This special generator will use the identifier value already assigned to the object's iden-
tifier property. Be very careful when using this feature to assign keys with business meaning (almost always a
terrible design decision).
5.1.5. composite-id
<composite-id
name="propertyName"
class="ClassName"
unsaved-value="any|none"
access="field|property|ClassName">
For a table with a composite key, you may map multiple properties of the class as identifier properties. The
<composite-id> element accepts <key-property> property mappings and <key-many-to-one> mappings as
child elements.
<composite-id>
<key-property name="medicareNumber"/>
<key-property name="dependent"/>
</composite-id>
Hibernate 2.1 30
Basic O/R Mapping
Your persistent class must override equals() and hashCode() to implement composite identifier equality. It
must also implements Serializable.
Unfortunately, this approach to composite identifiers means that a persistent object is its own identifier. There
is no convenient "handle" other than the object itself. You must instantiate an instance of the persistent class it-
self and populate its identifier properties before you can load() the persistent state associated with a composite
key. We will describe a much more convenient approach where the composite identifier is implemented as a
seperate class in Section 7.4, “As Composite Identifiers”. The attributes described below apply only to this al-
ternative approach:
• name (optional): A property of component type that holds the composite identifier (see next section).
• class (optional - defaults to the property type determined by reflection): The component class used as a
composite identifier (see next section).
• unsaved-value (optional - defaults to none): Indicates that transient instances should be considered newly
instantiated, if set to any.
5.1.6. discriminator
The <discriminator> element is required for polymorphic persistence using the table-per-class-hierarchy map-
ping strategy and declares a discriminator column of the table. The discriminator column contains marker val-
ues that tell the persistence layer what subclass to instantiate for a particular row. A restricted set of types may
be used: string, character, integer, byte, short, boolean, yes_no, true_false.
<discriminator
column="discriminator_column" ❶
type="discriminator_type" ❷
force="true|false" ❸
/>
Actual values of the discriminator column are specified by the discriminator-value attribute of the <class>
and <subclass> elements.
The force attribute is (only) useful if the table contains rows with "extra" discriminator values that are not
mapped to a persistent class. This will not usually be the case.
The <version> element is optional and indicates that the table contains versioned data. This is particularly use-
ful if you plan to use long transactions (see below).
<version
column="version_column" ❶
name="propertyName" ❷
type="typename" ❸
access="field|property|ClassName" ❹
unsaved-value="null|negative|undefined" ❺
/>
❶ 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.
Hibernate 2.1 31
Basic O/R Mapping
The optional <timestamp> element indicates that the table contains timestamped data. This is intended as an al-
ternative to versioning. Timestamps are by nature a less safe implementation of optimistic locking. However,
sometimes the application might use the timestamps in other ways.
<timestamp
column="timestamp_column" ❶
name="propertyName" ❷
access="field|property|ClassName" ❸
unsaved-value="null|undefined" ❹
/>
❶ 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 should use 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 transient instances that were saved or loaded in a pre-
vious session. (undefined specifies that the identifier property value should be used.)
5.1.9. property
The <property> element declares a persistent, JavaBean style property of the class.
<property
name="propertyName" ❶
column="column_name" ❷
type="typename" ❸
update="true|false" ❹
insert="true|false" ❹
formula="arbitrary SQL expression" ❺
access="field|property|ClassName" ❻
/>
Hibernate 2.1 32
Basic O/R Mapping
value.
1. The name of a Hibernate basic type (eg. integer, string, character, date, timestamp, float, bi-
nary, serializable, object, blob).
2. The name of a Java class with a default basic type (eg. int, float, char, java.lang.String,
java.util.Date, java.lang.Integer, java.sql.Clob).
3. The name of a subclass of PersistentEnum (eg. eg.Color).
4. The name of a serializable Java class.
5. The class name of a custom type (eg. com.illflow.type.MyCustomType).
If you do not specify a type, Hibernate will use reflection upon the named property to take a guess at the correct
Hibernate type. Hibernate will try to interpret the name of the return class of the property getter using rules 2, 3,
4 in that order. However, this is not always enough. In certain cases you will still need the type attribute. (For
example, to distinguish between Hibernate.DATE and Hibernate.TIMESTAMP, or to specify a custom type.)
The access attribute lets you control how Hibernate will access 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 ac-
cess the field directly, using reflection. You may specify your own strategy for property access by naming a
class that implements the interface net.sf.hibernate.property.PropertyAccessor.
5.1.10. many-to-one
An ordinary association to another persistent class is declared using a many-to-one element. The relational
model is a many-to-one association. (Its really just an object reference.)
<many-to-one
name="propertyName" ❶
column="column_name" ❷
class="ClassName" ❸
cascade="all|none|save-update|delete" ❹
outer-join="true|false|auto" ❺
update="true|false" ❻
insert="true|false" ❻
property-ref="propertyNameFromAssociatedClass" ❼
access="field|property|ClassName" ❽
/>
Hibernate 2.1 33
Basic O/R Mapping
The cascade attribute permits the following values: all, save-update, delete, none. Setting a value other than
none will propagate certain operations to the associated (child) object. See "Lifecycle Objects" below.
• auto (default) Fetch the association using an outerjoin if the associated class has no proxy
• true Always fetch the association using an outerjoin
• false Never fetch the association using an outerjoin
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 an ugly relational model. For example, suppose
the Product class had a unique serial number, that is not the primary key.
5.1.11. one-to-one
<one-to-one
name="propertyName" ❶
class="ClassName" ❷
cascade="all|none|save-update|delete" ❸
constrained="true|false" ❹
outer-join="true|false|auto" ❺
property-ref="propertyNameFromAssociatedClass" ❻
access="field|property|ClassName" ❼
/>
Hibernate 2.1 34
Basic O/R Mapping
Primary key associations don't need an extra table column; if two rows are related by the association then the
two table rows share the same primary key value. So if you want two objects to be related by a primary key as-
sociation, you must make sure that they are assigned the same identifier value!
For a primary key association, add the following mappings to Employee and Person, respectively.
Alternatively, a foreign key with a unique constraint, from Employee to Person, may be expressed as:
And this association may be made bidirectional by adding the following to the Person mapping:
The <component> element maps properties of a child object to columns of the table of a parent class. Compo-
nents may, in turn, declare their own properties, components or collections. See "Components" below.
<component
name="propertyName" ❶
class="className" ❷
insert="true|false" ❸
upate="true|false" ❹
access="field|property|ClassName"> ❺
<property ...../>
<many-to-one .... />
........
</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 ref-
erence back to the containing entity.
The <dynamic-component> element allows a Map to be mapped as a component, where the property names refer
to keys of the map.
Hibernate 2.1 35
Basic O/R Mapping
5.1.13. subclass
Finally, polymorphic persistence requires the declaration of each subclass of the root persistent class. For the
(recommended) table-per-class-hierarchy mapping strategy, the <subclass> declaration is used.
<subclass
name="ClassName" ❶
discriminator-value="discriminator_value" ❷
proxy="ProxyInterface" ❸
lazy="true|false" ❹
dynamic-update="true|false"
dynamic-insert="true|false">
Each subclass should declare its own persistent properties and subclasses. <version> and <id> properties are
assumed to be inherited from the root class. Each subclass in a heirarchy must define a unique discriminator-
value. If none is specified, the fully qualified Java class name is used.
5.1.14. joined-subclass
Alternatively, a subclass that is persisted to its own table (table-per-subclass mapping strategy) is declared us-
ing a <joined-subclass> element.
<joined-subclass
name="ClassName" ❶
proxy="ProxyInterface" ❷
lazy="true|false" ❸
dynamic-update="true|false"
dynamic-insert="true|false">
No discriminator column is required for this mapping strategy. Each subclass must, however, declare a table
column holding the object identifier using the <key> element. The mapping at the start of the chapter would be
re-written as:
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
Hibernate 2.1 36
Basic O/R Mapping
<hibernate-mapping>
<class name="eg.Dog">
<!-- mapping for Dog could go here -->
</class>
</hibernate-mapping>
5.1.16. import
Suppose your application has two persistent classes with the same name, and you don't want to specify the fully
qualified (package) name in Hibernate queries. Classes may be "imported" explicitly, rather than relying upon
auto-import="true". You may even import classes and interfaces that are not explicitly mapped.
<import
class="ClassName" ❶
rename="ShortName" ❷
/>
To understand the behaviour of various Java language-level objects with respect to the persistence service, we
need to classify them into two groups:
An entity exists independently of any other objects holding references to the entity. Contrast this with the usual
Hibernate 2.1 37
Basic O/R Mapping
Java model where an unreferenced object is garbage collected. Entities must be explicitly saved and deleted
(except that saves and deletions may be cascaded from a parent entity to its children). This is different from the
ODMG model of object persistence by reachablity - and corresponds more closely to how application objects
are usually used in large systems. Entities support circular and shared references. They may also be versioned.
An entity's persistent state consists of references to other entities and instances of value types. Values are primi-
tives, collections, 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 may not be independently versioned. Values have no inde-
pendent identity, so they cannot be shared by two entities or collections.
Up until now, we've been using the term "persistent class" to refer to entities. We will continue to do that.
Strictly speaking, however, not all user-defined classes with persistent state are entities. A component is a user
defined class with value 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).
calendar, calendar_date
Type mappings from java.util.Calendar to SQL types TIMESTAMP and DATE (or equivalent).
big_decimal
A type mapping from java.math.BigDecimal 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.
Hibernate 2.1 38
Basic O/R Mapping
serializable
Maps serializable Java types to an appropriate SQL binary type. You may also indicate the Hibernate type
serializable with the name of a serializable Java class or interface that does not default to a basic type or
implement PersistentEnum.
clob, blob
Type mappings for the JDBC classes java.sql.Clob and java.sql.Blob. These types may be inconve-
nient for some applications, since the blob or clob object may not be reused outside of a transaction.
(Furthermore, driver support is patchy and inconsistent.)
Unique identifiers of entities and collections may be of any basic type except binary, blob and clob.
(Composite identifiers are also allowed, see below.)
The basic value types have corresponding Type constants defined on net.sf.hibernate.Hibernate. For exam-
ple, Hibernate.STRING represents the string type.
An enumerated type is a common Java idiom where a class has a constant (small) number of immutable in-
stances. You may create a persistent enumerated type by implementing net.sf.hibernate.PersistentEnum,
defining the operations toInt() and fromInt():
package eg;
import net.sf.hibernate.PersistentEnum;
The Hibernate type name is simply the name of the enumerated class, in this case eg.Color.
It is relatively easy for developers to create their own value types. For example, you might want to persist prop-
erties of type java.lang.BigInteger to VARCHAR columns. Hibernate does not provide a built-in type for this.
But 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.
To implement a custom
type, implement either net.sf.hibernate.UserType or
net.sf.hibernate.CompositeUserType and declare properties using the fully qualified classname of the type.
Hibernate 2.1 39
Basic O/R Mapping
Check out net.sf.hibernate.test.DoubleStringType to see the kind of things that are possible.
Even though Hibernate's rich range of built-in types and support for components means you will very rarely
need to use a custom type, it is nevertheless considered good form to use custom types for (non-entity) classes
that occur frequently in your application. For example, a MonetoryAmount class is a good candidate for a Com-
positeUserType, even though it could easily be mapped as a component. One motivation for this is abstraction.
With a custom type, your mapping documents would be future-proofed against possible changes in your way of
representing monetory values.
There is one further type of property mapping. The <any> mapping element defines a polymorphic association
to classes from multiple tables. This type of mapping always requires more than one column. The first column
holds the type of the associated entity. The remaining columns hold the identifier. It is impossible to specify a
foreign key constraint for this kind of association, so this is most certainly not meant as the usual way of map-
ping (polymorphic) associations. You should use this only in very special cases (eg. audit logs, user session
data, etc).
The meta-type attribute lets the application specify a custom type that maps database column values to persis-
tent classes which have identifier properties of the type specified by id-type.
<any
name="propertyName" ❶
id-type="idtypename" ❷
meta-type="metatypename" ❸
cascade="none|all|save-update" ❹
access="field|property|ClassName" ❺
>
<column .... />
<column .... />
.....
</any>
The old object type that filled a similar role in Hibernate 1.2 is still supported, but is now semi-deprecated.
Hibernate 2.1 40
Basic O/R Mapping
You may force Hibernate to quote an identifier in the generated SQL by enclosing the table or column name in
backticks in the mapping document. Hibernate will use the correct quotation style for the SQL Dialect (usually
double quotes, but brackets for SQL Server and backticks for MySQL).
<property
name="amount"
type="big_decimal">
<column
name="AMOUNT"
sql-type="NUMERIC(11, 2)"/>
</property>
Or, you can specify column lengths and constraints. The following are equivalent:
<property
name="socialSecurityNumber"
type="string"
length="9"
column="SSN"
not-null="true"
unique="true"/>
<property
name="socialSecurityNumber"
type="string">
<column
name="SSN"
length="9"
not-null="true"
unique="true"/>
</property>
<hibernate-mapping>
<subclass name="eg.DomesticCat" extends="eg.Cat" discriminator-value="D">
<property name="name" type="string"/>
</subclass>
</hibernate-mapping>
Hibernate 2.1 41
Chapter 6. Collections
Now the caveat: persistent collections do not retain any extra semantics added by the class implementing the
collection interface (eg. iteration order of a LinkedHashSet). The persistent collections actually behave like
HashMap, HashSet, TreeMap, TreeSet and ArrayList respectively. Furthermore, the Java type of a property
holding a collection must be the interface type (ie. Map, Set or List; never HashMap, TreeSet or ArrayList).
This restriction exists because, when you're not looking, Hibernate sneakily replaces your instances of Map, Set
and List with instances of its own persistent implementations of Map, Set or List. (So also be careful when us-
ing == on your collections.)
Collections obey the usual rules for value types: no shared references, created and deleted along with contain-
ing entity. Due to the underlying relational model, they do not support null value semantics; Hibernate does not
distinguish between a null collection reference and an empty collection.
Collection instances are distinguished in the database by a foreign key to the owning entity. This foreign key is
referred to as the collection key . The collection key is mapped by the <key> element.
Collections may contain almost any other Hibernate type, including all basic types, custom types, entity types
and components. Collections may not contain other collections. The contained type is referred to as the collec-
tion element type. Collection elements are mapped by <element>, <composite-element>, <one-to-many>,
<many-to-many> or <many-to-any>.
All collection types except Set and bag have an index column - a column that maps to an array or List index or
Map key. The index of a Map may be of any basic type, an entity type or even a composite type (it may not be a
collection). The index of an array or list is always of type integer. Indexes are mapped using <index>,
<index-many-to-many>, <composite-index> or <index-many-to-any>.
There are quite a range of mappings that can be generated for collections, covering many common relational
models. We suggest you experiment with the schema generation tool to get a feeling for how various mapping
declarations translate to database tables.
Hibernate 2.1 42
Collections
Collections are declared by the <set>, <list>, <map>, <bag>, <array> and <primitive-array> elements.
<map> is representative:
<map
name="propertyName" ❶
table="table_name" ❷
schema="schema_name" ❸
lazy="true|false" ❹
inverse="true|false" ❺
cascade="all|none|save-update|delete|all-delete-orphan" ❻
sort="unsorted|natural|comparatorClass" ❼
order-by="column_name asc|desc" ❽
where="arbitrary sql where condition" ❾
outer-join="true|false|auto" ❿
batch-size="N" (11)
access="field|property|ClassName" (12)
>
The mapping of a List or array requires a seperate table column holding the array or list index (the i in
foo[i]). If your relational model doesn't have an index column, e.g. if you're working with legacy data, use an
unordered Set instead. This seems to put people off who assume that List should just be a more convenient
way of accessing an unordered collection. Hibernate collections strictly obey the actual semantics attached to
the Set, List and Map interfaces. List elements don't just spontaneously rearrange themselves!
On the other hand, people who planned to use the List to emulate bag semantics have a legitimate grievance
here. A bag is an unordered, unindexed collection which may contain the same element multiple times. The
Java collections framework lacks a Bag interface (though you can emulate it with a List). Hibernate lets you
map properties of type List or Collection with the <bag> element. Note that bag semantics are not really part
of the Collection contract and they actually conflict with the semantics of the List contract.
Large Hibernate bags mapped with inverse="false" are inefficient and should be avoided; Hibernate can't
create, delete or update rows individually, because there is no key that may be used to identify an individual
row.
Hibernate 2.1 43
Collections
The foreign key from the collection table to the table of the owning class is declared using a <key> element.
<key column="column_name"/>
For indexed collections like maps and lists, we require an <index> element. For lists, this column contains se-
quential integers numbered from zero. For maps, the column may contain any values of any Hibernate type.
<index
column="column_name" ❶
type="typename" ❷
/>
❶ column (required): The name of the column holding the collection index values.
❷ type (optional, defaults to integer): The type of the collection index.
Alternatively, a map may be indexed by objects of entity type. We use the <index-many-to-many> element.
<index-many-to-many
column="column_name" ❶
class="ClassName" ❷
/>
❶ column (required): The name of the foreign key column for the collection index values.
❷ class (required): The entity class used as the collection index.
<element
column="column_name" ❶
type="typename" ❷
/>
❶ column (required): The name of the column holding the collection element values.
❷ type (required): The type of the collection element.
A collection of entities with its own table corresponds to the relational notion of many-to-many association. A
many to many association is the most natural mapping of a Java collection but is not usually the best relational
model.
<many-to-many
column="column_name" ❶
class="ClassName" ❷
outer-join="true|false|auto" ❸
/>
Hibernate 2.1 44
Collections
Examples:
A bag containing integers (with an iteration order determined by the order-by attribute):
An array of entities - in this case, a many to many association (note that the entities are lifecycle objects, cas-
cade="all"):
A list of components:
An association from Foo to Bar requires the addition of a key column and possibly an index column to the table
of the contained entity class, Bar. These columns are mapped using the <key> and <index> elements described
above.
Hibernate 2.1 45
Collections
<one-to-many class="ClassName"/>
Example:
<set name="bars">
<key column="foo_id"/>
<one-to-many class="com.illflow.Bar"/>
</set>
Notice that the <one-to-many> element does not need to declare any columns. Nor is it necessary to specify the
table name anywhere.
Very Important Note: If the <key> column of a <one-to-many> association is declared NOT NULL, Hibernate
may cause constraint violations when it creates or updates the association. To prevent this problem, you must
use a bidirectional association with the many valued end (the set or bag) marked as inverse="true".
s = sessions.openSession();
User u = (User) s.find("from User u where u.name=?", userName, Hibernate.STRING).get(0);
Map permissions = u.getPermissions();
s.connection().commit();
s.close();
It could be in for a nasty surprise. Since the permissions collection was not initialized when the Session was
committed, the collection will never be able to load its state. The fix is to move the line that reads from the col-
lection to just before the commit.
Alternatively, use a non-lazy collection. Since lazy initialization can lead to bugs like that above, non-laziness
is the default. However, it is intended that lazy initialization be used for almost all collections, especially for
collections of entities (for reasons of efficiency).
Exceptions that occur while lazily initializing a collection are wrapped in a LazyInitializationException.
In some application architectures, particularly where the code that accesses data using Hibernate, and the code
that uses it are in different application layers, it can be a problem to ensure that the Session is open when a col-
lection is initialized. They are two basic ways to deal with this issue:
Hibernate 2.1 46
Collections
• In a web-based application, a servlet filter can be used to close the Session only at the very end of a user
request, once the rendering of the view is complete. Of course, this places heavy demands upon the correct-
ness 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 render-
ing of the view. The servlet filter has to be able to access the Session for this approach. We recommend
that a ThreadLocal variable be used to hold the current Session.
• In an application with a seperate business tier, the business logic must "prepare" all collections that will be
needed by the web tier before returning. 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 query with a FETCH clause.
You can use the filter() method of the Hibernate Session API to get the size of a collection without initializ-
ing it:
filter() or createFilter() are also used to efficiently retrieve subsets of a collection without needing to ini-
tialize the whole collection.
Allowed values of the sort attribute are unsorted, natural and the name of a class implementing
java.util.Comparator.
Hibernate 2.1 47
Collections
</map>
Note that the value of the order-by attribute is an SQL ordering, not a HQL ordering!
Associations may even be sorted by some arbitrary criteria at runtime using a filter().
Note: this does not apply to collections mapped with inverse="true", as we will see in the next section.
one-to-many
set or bag valued at one end, single-valued at the other
many-to-many
set or bag valued at both ends
Please note that Hibernate does not support bidirectional one-to-many associations with an indexed collection
(list, map or array) as the "many" end.
You may specify a bidirectional many-to-many association simply by mapping two many-to-many associations
to the same database table and declaring one end as inverse. Heres an example of a bidirectional many-to-many
association from a class back to itself:
<class name="eg.Node">
<id name="id" column="id"/>
....
<bag name="accessibleTo" table="node_access" lazy="true">
<key column="to_node_id"/>
<many-to-many class="eg.Node" column="from_node_id"/>
</bag>
<!-- inverse end -->
<bag name="accessibleFrom" table="node_access" inverse="true" lazy="true">
<key column="from_node_id"/>
<many-to-many class="eg.Node" column="to_node_id"/>
</bag>
</class>
Changes made only to the inverse end of the association are not persisted.
You may map 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".
Hibernate 2.1 48
Collections
<class name="eg.Parent">
<id name="id" column="id"/>
....
<set name="children" inverse="true" lazy="true">
<key column="parent_id"/>
<one-to-many class="eg.Child"/>
</set>
</class>
<class name="eg.Child">
<id name="id" column="id"/>
....
<many-to-one name="parent" class="eg.Parent" column="parent_id"/>
</class>
Mapping one end of an association with inverse="true" doesn't affect the operation of cascades.
package eg;
import java.util.Set;
....
....
Hibernate 2.1 49
Collections
has a collection of eg.Child instances. If each child has at most one parent, the most natural mapping is a one-
to-many association:
<hibernate-mapping>
<class name="eg.Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children" lazy="true">
<key column="parent_id"/>
<one-to-many class="eg.Child"/>
</set>
</class>
<class name="eg.Child">
<id name="id">
<generator class="sequence"/>
</id>
<property name="name"/>
</class>
</hibernate-mapping>
If the parent is required, use bidirectional one-to-many association (see the Parent / Child Relationship section
below).
<hibernate-mapping>
<class name="eg.Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children" inverse="true" lazy="true">
<key column="parent_id"/>
<one-to-many class="eg.Child"/>
</set>
</class>
<class name="eg.Child">
<id name="id">
<generator class="sequence"/>
</id>
<property name="name"/>
<many-to-one name="parent" class="eg.Parent" column="parent_id" not-null="true"/>
</class>
</hibernate-mapping>
Hibernate 2.1 50
Collections
On the other hand, if a child might have multiple parents, a many-to-many association is appropriate:
<hibernate-mapping>
<class name="eg.Parent">
<id name="id">
<generator class="sequence"/>
</id>
<set name="children" lazy="true" table="childset">
<key column="parent_id"/>
<many-to-many class="eg.Child" column="child_id"/>
</set>
</class>
<class name="eg.Child">
<id name="id">
<generator class="sequence"/>
</id>
<property name="name"/>
</class>
</hibernate-mapping>
Table definitions:
6.13. <idbag>
If you've fully embraced our view that composite keys are a bad thing and that entities should have synthetic
identifiers (surrogate keys), then you might find it a bit odd that the many to many associations and collections
of values that we've shown so far all map to tables with composite keys! Now, this point is quite arguable; a
pure association table doesn't seem to benefit much from a surrogate key (though a collection of composite val-
ues might). Nevertheless, Hibernate provides a (slightly experimental) 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.
As you can see, 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 provide any mechanism to discover the surrogate key value
of a particular row, however.
Note that the update performance of an <idbag> is much better than a regular <bag>! Hibernate can locate indi-
vidual rows efficiently and update or delete them individually, just like a list, map or set.
In the current implementation, the identity identifier generation strategy is not supported.
Hibernate 2.1 51
Chapter 7. Components
The notion of a component is re-used in several different contexts, for different purposes, throughout Hibernate.
Now Name may be persisted as a component of Person. Notice that Name defines getter and setter methods for its
persistent properties, but doesn't need to declare any interfaces or identifier fields.
Hibernate 2.1 52
Components
The person table would have the columns pid, birthday, initial, first and last.
Like all value types, components do not support shared references. 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 should be okay for most purposes.
The properties of a component may be of any Hibernate type (collections, many-to-one associations, other
components, etc). Nested components should not be considered an exotic usage. Hibernate is intended to sup-
port a very fine-grained object model.
The <component> element allows a <parent> subelement that maps a property of the component class as a ref-
erence back to the containing entity.
7.2. In Collections
Collections of components are supported (eg. an array of type Name). Declare your component collection by re-
placing the <element> tag with a <composite-element> tag.
Note: if you define a Set of composite elements, it is very important to implement equals() and hashCode()
correctly.
Composite elements may contain components but not collections. If your composite element itself contains
components, use the <nested-composite-element> tag. This is a pretty exotic case - a collection of compo-
Hibernate 2.1 53
Components
nents which themselves have components. By this stage you should be asking yourself if a one-to-many associ-
ation is more appropriate. Try remodelling the composite element as an entity - but note that even though the
Java model is the same, the relational model and persistence semantics are still slightly different.
Please note that a composite element mapping doesn't support null-able properties if you're using a <set>. Hi-
bernate has to use each columns value to identify a record when deleting objects (there is no separate primary
key column in the composite element table), 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>.
A special case of a composite element is a composite element with a nested <many-to-one> element. A map-
ping like this allows you to map extra columns of a many-to-many association table to the composite element
class. The following is a many-to-many association from Order to Item where purchaseDate, price and quan-
tity are properties of the association:
Composite elements may appear in queries using the same syntax as associations to other entities.
You can't use an IdentifierGenerator to generate composite keys. Instead the application must assign its own
Hibernate 2.1 54
Components
identifiers.
Since a composite identifier must be assigned to the object before saving it, we can't use unsaved-value to dis-
tinguish between newly instantiated instances and instances saved in a previous session. You should instead im-
plement Interceptor.isUnsaved() if you wish to use saveOrUpdate() or cascading save / update.
Use the <composite-id> tag (same attributes and elements as <component>) in place of <id>. Declaration of a
composite identifier class looks like:
Now, any foreign keys into the table FOOS are also composite. You must declare this in your mappings for other
classes. An association to Foo would be declared like this:
This new <column> tag is also used by multi-column custom types. Actually it is an alternative to the column at-
tribute everywhere. A collection with elements of type Foo would use:
<set name="foos">
<key column="owner_id"/>
<many-to-many class="eg.Foo">
<column name="foo_string"/>
<column name="foo_short"/>
<column name="foo_date"/>
</many-to-many>
</set>
If Foo itself contains collections, they will also need a composite foreign key.
<class name="eg.Foo">
....
....
<set name="dates" lazy="true">
<key> <!-- a collection inherits the composite key type -->
<column name="foo_string"/>
<column name="foo_short"/>
<column name="foo_date"/>
</key>
<element column="foo_date" type="date"/>
</set>
</class>
Hibernate 2.1 55
Components
<dynamic-component name="userAttributes">
<property name="foo" column="FOO"/>
<property name="bar" column="BAR"/>
<many-to-one name="baz" class="eg.Baz" column="BAZ"/>
</dynamic-component>
The semantics of a <dynamic-component> mapping are identical to <component>. The advantage of this kind of
mapping is the ability to determine the actual properties of the bean at deployment time, just by editing the
mapping document. (Runtime manipulation of the mapping document is also possible, using a DOM parser.)
Hibernate 2.1 56
Chapter 8. Manipulating Persistent Data
The single-argument save() generates and assigns a unique identifier to fritz. The two-argument form at-
tempts to persist pk using the given identifier. We generally discourage the use of the two-argument form since
it may be used to create primary keys with business meaning. It is most useful in certain special situations like
using Hibernate to persist a BMP entity bean.
Associated objects may 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.
Note that load() will throw an unrecoverable exception if there is no matching database row. If the class is
mapped with a proxy, load() returns an object that is an uninitialized proxy and does not actually hit the
database until you invoke a method of the object. This behaviour is very useful if you wish to create an associa-
tion to an object without actually loading it from the database.
Hibernate 2.1 57
Manipulating Persistent Data
If you are not certain that a matching row exists, you should use the get() method, which hits the database im-
mediately and returns null if there is no matching row.
You may also load an objects using an SQL SELECT ... FOR UPDATE. See the next section for a discussion of
Hibernate LockModes.
Note that any associated instances or contained collections are not selected FOR UPDATE.
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
sess.refresh(cat); //re-read the state (after the trigger executes)
8.3. Querying
If you don't know the identifier(s) of the object(s) you are looking for, use the find() methods of Session. Hi-
bernate supports a simple but powerful object oriented query language.
Hibernate 2.1 58
Manipulating Persistent Data
The second argument to find() accepts an object or array of objects. The third argument accepts a Hibernate
type or array of Hibernate types. These given types are used to bind the given objects to the ? query placehold-
ers (which map to IN parameters of a JDBC PreparedStatement). Just as in JDBC, you should use this binding
mechanism in preference to string manipulation.
The Hibernate class defines a number of static methods and constants, providing access to most of the built-in
types, as instances of net.sf.hibernate.type.Type.
If you expect your query to return a very large number of objects, but you don't expect to use them all, you
might get better performance from the iterate() methods, which return a java.util.Iterator. The iterator
will load objects on demand, using the identifiers returned by an initial SQL query.
// fetch ids
Iterator iter = sess.iterate("from eg.Qux q order by q.likeliness");
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;
}
}
Unfortunately java.util.Iterator does not declare any exceptions, so any SQL or Hibernate exceptions that
occur are wrapped in a LazyInitializationException (a subclass of RuntimeException).
The iterate() method also performs better if you expect that many of the objects are already loaded and
cached by the session, or if the query results contain the same objects many times. (When no data is cached or
repeated, find() is almost always faster.) Heres an example of a query that should be called using iterate():
Calling the previous query using find() would return a very large JDBC ResultSet containing the same data
many times.
Hibernate queries sometimes return tuples of objects, in which case each tuple is returned as an array:
Queries may specify a property of a class in the select clause. They may even call SQL aggregate functions.
Hibernate 2.1 59
Manipulating Persistent Data
If you need to specify bounds upon your result set (the maximum number of rows you want to retrieve and / or
the first row you want to retrieve) you should obtain an instance of net.sf.hibernate.Query:
You may even define a named query in the mapping document. (Remember to use a CDATA section if your
query contains characters that could be interpreted as markup.)
<query name="eg.DomesticCat.by.name.and.minimum.weight"><![CDATA[
from eg.DomesticCat as cat
where cat.name = ?
and cat.weight > ?
] ]></query>
Query q = sess.getNamedQuery("eg.DomesticCat.by.name.and.minimum.weight");
q.setString(0, name);
q.setInt(1, minWeight);
List cats = q.list();
The query interface supports the use of named parameters. Named parameters are identifiers of the form :name
in the query string. There are methods on Query for binding values to named parameters or JDBC-style ? pa-
rameters. Contrary to JDBC, Hibernate numbers parameters from zero. The advantages of named parameters
are:
• named parameters are insensitive to the order they occur in the query string
• they may occur multiple times in the same query
• they are self-documenting
Hibernate 2.1 60
Manipulating Persistent Data
//positional parameter
Query q = sess.createQuery("from DomesticCat cat where cat.name = ?");
q.setString(0, "Izi");
Iterator cats = q.iterate();
If your JDBC driver supports scrollable ResultSets, the Query interface may be used to obtain a Scrol-
lableResults which allows more 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) );
The behaviour of scroll() is similar to iterate(), except that objects may be initialized selectively by
get(int), instead of an entire row being initialized at once.
A collection filter is a special type of query that may be applied to a persistent collection or array. The query
string may refer to this, meaning the current collection element.
Observe that filters do not require a from clause (though they may have one if required). Filters are not limited
to returning the collection elements themselves.
Hibernate 2.1 61
Manipulating Persistent Data
HQL is extremely powerful but some people prefer to build queries dynamically, using an object oriented API,
rather than embedding strings in their Java code. For these people, Hibernate provides an intuitive Criteria
query API.
If you are uncomfortable with SQL-like syntax, this is perhaps the easiest way to get started with Hibernate.
This API is also more extensible than HQL. Applications might provide their own implementations of the Cri-
terion interface.
You may express a query in SQL, using createSQLQuery(). You must enclose SQL aliases in braces.
SQL queries may contain named and positional parameters, just like Hibernate queries.
Sometimes this programming model is inefficient since it would require both an SQL SELECT (to load an ob-
ject) and an SQL UPDATE (to persist its updated state) in the same session. Therefore Hibernate offers an alter-
nate approach.
Hibernate 2.1 62
Manipulating Persistent Data
ronment usually use versioned data to ensure transaction isolation.) This approach requires a slightly different
programming model to the one described in the last section. Hibernate supports this model by providing the
method Session.update().
If the Cat with identifier catId had already been loaded by secondSession when the application tried to update
it, an exception would have been thrown.
The application should individually update() transient instances reachable from the given transient instance if
and only if it wants their state also updated. (Except for lifecycle objects.)
Hibernate users have requested a general purpose method that either saves a transient instance by generating a
new identifier or update the persistent state associated with its current identifier. The saveOrUpdate() method
now implements this functionality. Hibernate distinguishes "new" (unsaved) instances from "existing" (saved or
loaded in a previous session) instances by the value of their identifier property. The unsaved-value attribute of
the <id> mapping specifies which identifier values should be interpreted as representing a "new" instance.
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() or
saveOrUpdate(). Some whole applications will never use either of these methods.
Hibernate 2.1 63
Manipulating Persistent Data
//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);
sess.delete(cat);
You may also delete many objects at once by passing a Hibernate query string to delete().
You may now delete objects in any order you like, without risk of foreign key constraint violations. Of course,
it is still possible to violate a NOT NULL constraint on a foreign key column by deleting objects in the wrong or-
der.
Recommendation:
• If the child object's lifespan is bounded by the lifespan of the of the parent object make it a lifecycle object
by specifying cascade="all".
• Otherwise, save() and delete() it explicitly from application code. If you really want to save yourself
Hibernate 2.1 64
Manipulating Persistent Data
Mapping an association (many-to-one, or collection) with cascade="all" marks the association as a parent /
child style relationship where save / update / deletion of the parent results in save / update / deletion of the
child(ren). Futhermore, a mere reference to a child from a persistent parent will result in save / update of the
child. The metaphor is incomplete, however. A child which becomes unreferenced by its parent is not automati-
cally deleted, except in the case of a <one-to-many> association mapped with cascade="all-delete-orphan".
The precise semantics of cascading operations are as follows:
Hibernate does not fully implement "persistence by reachability", which would imply (inefficient) persistent
garbage collection. However, due to popular demand, Hibernate does support the notion of entities becoming
persistent when referenced by another persistent object. Associations marked cascade="save-update" behave
in this way. If you wish to use this approach throughout your application, its easier to specify the default-cas-
cade attribute of the <hibernate-mapping> element.
8.9. Flushing
From time to time the Session will execute the SQL statements needed to synchronize the JDBC connection's
state with the state of objects held in memory. This process, flush, occurs by default at the following points
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 explicity 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 Ses-
sion.find(..) methods will never return stale data; nor will they return the wrong data.
It is possible to change the default behavior so that flush occurs less frequently. The FlushMode class defines
Hibernate 2.1 65
Manipulating Persistent Data
three different modes. This is most useful in the case of "readonly" transactions, where it might be used to
achieve a (very) slight performance increase.
sess = sf.openSession();
Transaction tx = sess.beginTransaction();
sess.setFlushMode(FlushMode.COMMIT); //allow queries to return stale state
Cat izi = (Cat) sess.load(Cat.class, id);
izi.setName(iznizi);
// execute some queries....
sess.find("from Cat as cat left outer join cat.kittens kitten"); //change to izi is not flushed!!
....
tx.commit(); //flush occurs
If you happen to be using the Transaction API, you don't need to worry about this step. It will be performed
implicitly when the transaction is committed. Otherwise you should call Session.flush() to ensure that all
changes are synchronized with the database.
If you are using the Hibernate Transaction API, this looks like:
If you are managing JDBC transactions yourself you should manually commit() the JDBC connection.
sess.flush();
sess.connection().commit(); // not necessary for JTA datasource
or:
A call to Session.close() marks the end of a session. The main implication of close() is that the JDBC con-
nection will be relinquished by the session.
tx.commit();
Hibernate 2.1 66
Manipulating Persistent Data
sess.close();
sess.flush();
sess.connection().commit(); // not necessary for JTA datasource
sess.close();
If you provided your own connection, close() returns a reference to it, so you can manually close it or return it
to the pool. Otherwise close() returns it to the pool.
If the Session throws an exception (including any SQLException), you should immediately rollback the trans-
action, call Session.close() and discard the Session instance. Certain methods of Session will not leave the
session in a consistent state.
UserTransaction ut = .... ;
Session sess = factory.openSession();
try {
// do some work
...
sess.flush();
}
catch (Exception e) {
ut.setRollbackOnly();
throw e;
}
Hibernate 2.1 67
Manipulating Persistent Data
finally {
sess.close();
}
8.11. Interceptors
The Interceptor interface provides callbacks from the session to the application allowing the application to in-
spect 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 net.sf.hibernate.test;
import java.io.Serializable;
import java.util.Date;
import java.util.Iterator;
import net.sf.hibernate.Interceptor;
import net.sf.hibernate.type.Type;
Hibernate 2.1 68
Manipulating Persistent Data
......
......
Hibernate exposes metadata via the ClassMetadata and CollectionMetadata interfaces and the Type hierar-
chy. Instances of the metadata interfaces may be obtained from the SessionFactory.
Hibernate 2.1 69
Chapter 9. Parent/Child Relationships
One of the very first things that new users try to do with Hibernate is to model a parent / child type relationship.
There are two different approaches to this. For various reasons 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>.) Now, it turns out that
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 bidirec-
tional one to many association with cascades to model a parent / child relationship efficiently and elegantly. It's
not at all difficult!
• When we remove / add an object from / to a collection, the version number of the collection owner is incre-
mented.
• If an object that was removed from a collection is an instance of a value type (eg, 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.
• On the other hand, if an entity is removed from a collection (a one-to-many or many-to-many association),
it will not be deleted, by default. This behaviour is completely consistent - a change to the internal state of
another entity should not cause the associated entity to vanish! Likewise, adding an entity to a collection
does not cause that entity to become persistent, by default.
Instead, the default behaviour is that adding an entity to a collection merely creates a link between the two enti-
ties, while removing it removes the link. This is very appropriate for all sorts of cases. Where it is not appropri-
ate at all is the case of a parent / child relationship, where the life of the child is bound to the lifecycle of the
parent.
<set name="children">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
Parent p = .....;
Child c = new Child();
p.getChildren().add(c);
session.save(c);
session.flush();
Hibernate 2.1 70
Parent/Child Relationships
This is not only inefficient, but also violates any NOT NULL constraint on the parent_id column.
The underlying cause 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. So the solution is to make the link part of the
Child mapping.
(We 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.
9.3. Cascades
The explicit call to save() is still annoying. We will address this by using cascades.
Hibernate 2.1 71
Parent/Child Relationships
Similarly, we don't need to iterate over the children when saving or deleting a Parent. The following removes p
and all its children from the database.
will not remove c from the database; it will ony remove the link to p (and cause a NOT NULL constraint viola-
tion, in this case). You need to explicitly delete() the Child.
Now, in our case, a Child can't really exist without its parent. So if we remove a Child from the collection, we
really do want it to be deleted. For this, we must use cascade="all-delete-orphan".
Note: even though the collection mapping specifies inverse="true", cascades are still processed by iterating
the collection elements. So if you require that 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 unsaved-value attribute is used to specify the identifier value of a newly instantiated instance. unsaved-
value defaults to "null", which is perfect for a Long identifier type. If we would have used a primitive identiti-
fier property, we would need to specify
Hibernate 2.1 72
Parent/Child Relationships
for the Child mapping. (There is also an unsaved-value attribute for version and timestamp property map-
pings.)
The following code will update parent and child and insert newChild.
Well, thats all very well for the case of a generated identifier, but what about assigned identifiers and composite
identifiers? This is more difficult, since unsaved-value can't distinguish between a newly instantiated object
(with an identifier assigned by the user) and an object loaded in a previous session. In these cases, you will
probably need to give Hibernate a hint; either
• set unsaved-value="none" and explicitly save() newly instantiated children before calling up-
date(parent)
• set unsaved-value="any" and explicitly update() previously persistent children before calling up-
date(parent)
There is one further possibility. There is a new Interceptor method named isUnsaved() which lets the appli-
cation implement its own strategy for distinguishing newly instantiated objects. For example, you could define
a base class for your persistent classes.
(The saved property is non-persistent.) Now implement isUnsaved(), along with onLoad() and onSave() as
follows.
Hibernate 2.1 73
Parent/Child Relationships
String[] propertyNames,
Type[] types) {
9.5. Conclusion
There is quite a bit to digest here and it might look confusing first time around. However, in practice, it all
works out quite 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. Unfortu-
nately, there are two big limitations to composite element classes: composite elements may not own collections,
and they should not be the child of any entity other than the unique parent. (However, they may have a surro-
gate primary key, using an <idbag> mapping.)
Hibernate 2.1 74
Chapter 10. Hibernate Query Language
Hibernate is equiped with an extremely powerful query language that (quite intentionally) looks very much like
SQL. But don't be fooled by the syntax; HQL is fully object-oriented, understanding notions like inheritence,
polymorphism and association.
This manual uses lowercase HQL keywords. Some users find queries with uppercase keywords more readable,
but we find this convention ugly when embedded in Java code.
from eg.Cat
Most of the time, you will need to assign an alias, since you will want to refer to the Cat in other parts of the
query.
This query assigns the alias cat to Cat instances, so we could use that alias later in the query. The as keyword
is optional; we could also write:
It is considered good practice to name query aliases using an initial lowercase, consistent with Java naming
standards for local variables (eg. domesticCat).
Hibernate 2.1 75
Hibernate Query Language
• 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.
In addition, 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.
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). Also, the associated objects are not returned directly in the query results. In-
stead, they may be accessed via the parent object.
Note that, in the current implementation, only one collection role may be fetched in a query. Note also that the
fetch construct may not be used in queries called using scroll() or iterate(). Finally, note that full join
fetch and right join fetch are not meaningful.
select mate
from eg.Cat as cat
inner join cat.mate as mate
The query will select mates of other Cats. Actually, you may express this query more compactly as:
You may even select collection elements, using the special elements function. The following query returns all
kittens of any cat.
Queries may return properties of any value type including properties of component type:
Hibernate 2.1 76
Hibernate Query Language
Queries may return multiple objects and/or properties as an array of type Object[]
Collections may also appear inside aggregate functions in the select clause.
The distinct and all keywords may be used and have the same semantics as in SQL.
10.6. polymorphism
A query like:
returns instances not only of Cat, but also of subclasses like DomesticCat. Hibernate queries may 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:
from java.lang.Object o
Hibernate 2.1 77
Hibernate Query Language
Note that 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 can't call these queries using Query.scroll().)
select foo
from eg.Foo foo, eg.Bar bar
where foo.startDate = bar.date
will return all instances of Foo for which there exists 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. Con-
sider:
This query translates to an SQL query with a table (inner) join. If you were to write something like
you would end up with a query that would require four table joins in SQL.
The = operator may be used to compare not only properties, but also instances:
The special property (lowercase) id may be used to reference the unique identifier of an object. (You may also
use its property name.)
Properties of composite identifiers may also be used. Suppose Person has a composite identifier consisting of
country and medicareNumber.
Hibernate 2.1 78
Hibernate Query Language
Likewise, 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.
You may also specify properties of components or composite user types (and of components of components,
etc). Never try to use a path-expression that ends in a property of component type (as opposed to a property of a
component). For example, if store.owner is an entity with a component address
store.owner.address.city //okay
store.owner.address //error!
An "any" type has the special properties id and class, allowing us to express a join in the following way
(where AuditLog.item is a property mapped with <any>).
Notice that log.item.class and payment.class would refer to the values of completely different database
columns in the above query.
10.8. Expressions
Expressions allowed in the where clause include most of the kind of things you could write in SQL:
• mathematical operators +, -, *, /
• binary comparison operators =, >=, <=, <>, !=, like
• logical operations and, or, not
• string concatenation ||
• SQL scalar functions like upper() and lower()
• Parentheses ( ) indicate grouping
• in, between, is null
• JDBC IN parameters ?
• named parameters :name, :start_date, :x1
• SQL literals 'foo', 69, '1970-01-01 10:00:01.0'
• Java public static final constants eg.Color.TABBY
from eg.DomesticCat cat where cat.name not between 'A' and 'B'
Likewise, is null and is not null may be used to test for null values.
You may test the size of a collection with the special property size, or the special size() function.
Hibernate 2.1 79
Hibernate Query Language
For indexed collections, you may refer to the minimum and maximum indices using minIndex and maxIndex.
Similarly, you may refer to the minimum and maximum elements of a collection of basic type using minEle-
ment and maxElement.
There are also functional forms (which, unlike the constructs above, are not case sensitive):
The SQL functions any, some, all, exists, in are supported when passed the element or index set of a col-
lection (elements and indices functions) or the result of a subquery (see below).
Note that these constructs - size, elements, indices, minIndex, maxIndex, minElement, maxElement - have
certain usage restrictions:
Elements of indexed collections (arrays, lists, maps) may be referred to by index (in a where clause only)
HQL also provides the built-in index() function, for elements of a one-to-many association or collection of
values.
Hibernate 2.1 80
Hibernate Query Language
If you are not yet convinced by all this, think 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)
Hibernate 2.1 81
Hibernate Query Language
Note: You may use the elements and indices constructs inside a select clause, even on databases with no sub-
selects.
SQL functions and aggregate functions are allowed in the having and order by clauses, if supported by the un-
derlying database (ie. not in MySQL).
select cat
from eg.Cat cat
join cat.kittens kitten
group by cat
having avg(kitten.weight) > 100
order by count(kitten) asc, sum(kitten.weight) desc
Note that neither the group by clause nor the order by clause may contain arithmetic expressions.
10.11. Subqueries
For databases that support subselects, Hibernate supports subqueries within queries. A subquery must be sur-
rounded by parentheses (often by an SQL aggregate function call). Even correlated subqueries (subqueries that
refer to an alias in the outer query) are allowed.
10.12. Examples
Hibernate queries can be quite powerful and complex. In fact, the power of the query language is one of Hiber-
nate's main selling points. Here are some example queries very similar to queries that I used on a recent project.
Note that most queries you will write are much simpler than these!
The following query returns the order id, number of items and total value of the order for all unpaid orders for a
particular customer and given minimum total value, ordering the results by total value. In determining the
prices, it uses the current catalog. The resulting SQL query, against the ORDER, ORDER_LINE, PRODUCT, CATALOG
Hibernate 2.1 82
Hibernate Query Language
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:
The next query counts the number of payments in each status, excluding all payments in the AWAIT-
ING_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 PAY-
MENT_STATUS_CHANGE tables.
If I would have mapped the statusChanges collection as a list, instead of a set, the query would have been
much simpler to write.
Hibernate 2.1 83
Hibernate Query Language
order by status.sortOrder
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.
If your database supports subselects, you can place a condition upon selection size in the where clause of your
query:
As this solution can't return a User with zero messages because of the inner join, the following form is also use-
ful:
Hibernate 2.1 84
Hibernate Query Language
having count(msg) = 0
Hibernate 2.1 85
Chapter 11. A Worked Example
We'll now demonstrate some of the concepts from the last two sections with example code.
package eg;
import java.util.List;
package eg;
import java.text.DateFormat;
import java.util.Calendar;
Hibernate 2.1 86
A Worked Example
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class
name="eg.Blog"
table="BLOGS"
proxy="eg.Blog">
<id
name="id"
column="BLOG_ID">
<generator class="native"/>
</id>
<property
name="name"
column="NAME"
not-null="true"
unique="true"/>
<bag
name="items"
inverse="true"
lazy="true"
order-by="DATE_TIME"
cascade="all">
<key column="BLOG_ID"/>
<one-to-many class="eg.BlogItem"/>
</bag>
</class>
</hibernate-mapping>
<?xml version="1.0"?>
<!DOCTYPE hibernate-mapping PUBLIC
"-//Hibernate/Hibernate Mapping DTD 2.0//EN"
Hibernate 2.1 87
A Worked Example
"http://hibernate.sourceforge.net/hibernate-mapping-2.0.dtd">
<hibernate-mapping>
<class
name="eg.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>
</hibernate-mapping>
package eg;
import java.util.ArrayList;
import java.util.Calendar;
import java.util.Iterator;
import java.util.List;
import net.sf.hibernate.HibernateException;
import net.sf.hibernate.Query;
import net.sf.hibernate.Session;
import net.sf.hibernate.SessionFactory;
import net.sf.hibernate.Transaction;
import net.sf.hibernate.cfg.Configuration;
import net.sf.hibernate.tool.hbm2ddl.SchemaExport;
Hibernate 2.1 88
A Worked Example
.addClass(BlogItem.class)
.buildSessionFactory();
}
public BlogItem createBlogItem(Blog blog, String title, String text) throws HibernateException {
public BlogItem createBlogItem(Long blogid, String title, String text) throws HibernateException {
Hibernate 2.1 89
A Worked Example
item.setText(text);
Hibernate 2.1 90
A Worked Example
}
catch (HibernateException he) {
if (tx!=null) tx.rollback();
throw he;
}
finally {
session.close();
}
return result;
}
result = q.list();
tx.commit();
}
catch (HibernateException he) {
if (tx!=null) tx.rollback();
throw he;
}
finally {
session.close();
}
return result;
}
}
Hibernate 2.1 91
Chapter 12. Improving Performance
We have already shown how you can use lazy initialization for persistent collections. A similar effect is achiev-
able for ordinary object references, using CGLIB proxies. We have also mentioned how Hibernate caches per-
sistent objects at the level of a Session. More aggressive caching strategies may be configured upon a class-
by-class basis.
In this section, we show you how to use these features, which may be used to achieve much higher perfor-
mance, where necessary.
The mapping file declares a class or interface to use as the proxy interface for that class. The recommended ap-
proach is to specify the class itself:
The runtime type of the proxies will be a subclass of Order. Note that the proxied class must implement a de-
fault constructor with at least package visibility.
There are some gotchas to be aware of when extending this approach to polymorphic classes, eg.
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:
Hibernate 2.1 92
Improving Performance
Third, you may not 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 (eg. in initializers or default con-
structor), then those resources will also be acquired by the proxy. The proxy class is an actual subclass of the
persistent class.
These problems are all due to fundamental limitations in Java's single inheritence model. If you wish 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. eg.
where Cat implements the interface ICat and DomesticCat implements the interface IDomesticCat. Then prox-
ies for instances of Cat and DomesticCat may be returned by load() or iterate(). (Note that find() does not
return proxies.)
Relationships are also lazily initialized. This means you must declare any properties to be of type ICat, not Cat.
Sometimes we need to ensure that a proxy or collection is initialized before closing the Session. Of course, we
can alway force initialization by calling cat.getSex() or cat.getKittens().size(), for example. But that is
confusing to readers of the code and is not convenient for generic code. The static methods Hiber-
nate.initialize() and Hibernate.isInitialized() provide the application with a convenient way of work-
ing with lazyily initialized collections or proxies. Hibernate.initialize(cat) will force the initialization of a
proxy, cat, as long as its Session is still open. Hibernate.initialize( cat.getKittens() ) has a similar ef-
fect for the collection of kittens.
By default, Hibernate uses Apache Turbine's JCS for JVM-level caching. However, JCS support is now depre-
cated and will be removed in a future version of Hibernate. You may choose a different implementation by
specifying the name of a class that implements net.sf.hibernate.cache.CacheProvider using the property
Hibernate 2.1 93
Improving Performance
hibernate.cache.manager_lookup_class.
12.2.1. Mapping
The <cache> element of a class or collection mapping has the following form:
<cache
usage="transactional|read-write|nonstrict-read-write|read-only" ❶
/>
Alternatively (preferrably?), you may specify <class-cache> and <collection-cache> elements in hiber-
nate.cfg.xml.
If your application needs to read but never modify instances of a persistent class, a read-only cache may be
used. This is the simplest and best performing strategy. Its even perfectly safe for use in a cluster.
If the application needs to update data, a read-write cache might be appropriate. This cache strategy should
never be used if serializable transaction isolation level is required. If the cache is used in a JTA environment,
you must specify the property hibernate.transaction.manager_lookup_class, naming a strategy for obtain-
ing the JTA TransactionManager. In other environments, you should ensure that the transaction is completed
Hibernate 2.1 94
Improving Performance
when Session.close() or Session.disconnect() is called. If you wish to use this strategy in a cluster, you
should ensure that the underlying cache implementation supports locking. The built-in cache providers do not.
If the application only occasionally needs to update data (ie. 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 hiber-
nate.transaction.manager_lookup_class. In other environments, you should ensure that the transaction is
completed when Session.close() or Session.disconnect() is called.
12.2.5. transactional
The transactional cache strategy provides support for fully transactional cache providers such as JBoss
TreeCache. Such a cache may only be used in a JTA environment and you must specify hiber-
nate.transaction.manager_lookup_class.
None of the cache providers support all of the cache concurrency strategies. The following table shows which
providers are compatible with which concurrency strategies.
Hibernate 2.1 95
Improving Performance
The Session also provides a contains() method to determine if an instance belongs to the session cache.
To completely evict all objects from the session cache, call Session.clear()
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.
Most queries do not benefit from caching, so by default queries are not cached. To enable caching, call
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.
If you require fine-grained control over query cache expiration policies, you may specify a named cache region
for a particular query by calling Query.setCacheRegion().
List blogs = sess.createQuery("from Blog blog where blog.blogger = :blogger order by blog.datetime des
.setEntity("blogger", blogger)
.setMaxResults(15)
.setCacheable(true)
.setCacheRegion("frontpages")
.list();
Hibernate 2.1 96
Chapter 13. Understanding Collection Performance
We've already spent quite some time talking about collections. In this section we will highlight a couple more
issues about how collections behave at runtime.
13.1. Taxonomy
Hibernate defines three basic kinds of collections
• collections of values
this classification distinguishes the various table and foreign key relationships but does not tell us quite every-
thing 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, arrays) have a primary key consisting of the <key> and <index> columns.
In this case collection updates are usually extremely efficient - the primary key may be efficiently indexed and
a particular row may be efficiently located when Hibernate tries to update or delete it.
Sets have a primary key consisting of <key> and element columns. This may be less efficient for some types of
collection element, particularly composite elements or large text or binary fields; the database may not be able
to index a complex primary key as efficently. On the other hand, for one to many or many to many associa-
tions, particularly in the case of synthetic identifiers, it is likely to be just as efficient. (Side-note: if you want
SchemaExport to actually create the primary key of a <set> for you, you must declare all columns as not-
null="true".)
Bags are the worst case. Since a bag permits duplicate element values and has no index column, no primary key
may be defined. Hibernate has no way of distinguishing between duplicate rows. Hibernate resolves this prob-
lem by completely removing (in a single DELETE) and recreating the collection whenever it changes. This might
be very inefficient.
Note that for a one-to-many association, the "primary key" may not be the physical primary key of the database
table - but even in this case, the above classification is still useful. (It still reflects how Hibernate "locates" indi-
vidual rows of the collection.)
13.2. Lists, maps and sets are the most efficient collections to
update
Hibernate 2.1 97
Understanding Collection Performance
From the discussion above, it should be clear that indexed collections and (usually) 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 doesn't ever UPDATE a row when an ele-
ment 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, we would conclude that lists, maps and sets are the most performant
collection types. (With the caveat that a set might be less efficient for some collections of values.)
Sets are expected to be the most common kind of collection in Hibernate applications.
There is an undocumented feature in this release of Hibernate. The <idbag> mapping implements bag seman-
tics for a collection of values or a many to many association and is more efficient that any other style of collec-
tion in this case!
13.3. Bags and lists are the most efficient inverse collections
Just before you ditch bags forever, there is a particular case in which bags (and also lists) are much more per-
formant than sets. For a collection with inverse="true" (the standard bidirectional one-to-many relationship
idiom, for example) we can add elements to a bag or list without needing to initialize (fetch) the bag elements!
This is because Collection.add() or Collection.addAll() must always return true for a bag or List (unlike
a Set). This can make the following common code much faster.
Suppose we add 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 desir-
able.
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 isn't smart enough to know that the second option is probably quicker in this case. (And it would
probably be undesirable for Hibernate to be that smart; such behaviour might confuse database triggers, etc.)
Fortunately, you can force this behaviour (ie. the second strategy) at any time by discarding (ie. dereferencing)
Hibernate 2.1 98
Understanding Collection Performance
the original collection and returning a newly instantiated collection with all the current elements. This can be
very useful and powerful from time to time.
Hibernate 2.1 99
Chapter 14. Criteria Queries
Hibernate now features an intuitive, extensible criteria query API. For now, this API is less powerful and than
the more mature HQL query facilities. In particular, criteria queries do not support projection or aggregation.
There are quite a range of built-in criterion types (Expression subclasses), but one that is especially useful lets
you specify SQL directly.
The {alias} placeholder with be replaced by the row alias of the queried entity.
14.4. Associations
You may easily specify constraints upon related entities by navigating associations using createCriteria().
note that the second createCriteria() returns a new instance of Criteria, which refers to the elements of the
kittens collection.
Note that the kittens collections held by the Cat instances returned by the previous two queries are not pre-
filtered by the criteria! If you wish to retrieve just the kittens that match the criteria, you must use return-
Maps().
.setFetchMode("kittens", FetchMode.EAGER)
.list();
This query will fetch both mate and kittens by outer join.
Version properties, identifiers and associations are ignored. By default, null valued properties are excluded.
You can even use examples to place criteria upon associated objects.
The alias name is used inside the sql string to refer to the properties of the mapped class (in this case Cat). You
may retrieve multiple objects per row by supplying a String array of alias names and a Class array of corre-
sponding classes.
String sql = "select cat.originalId as {cat.id}, cat.mateid as {cat.mate}, cat.sex as {cat.sex}, cat.w
+ " from cat_log cat where {cat.mate} = :catId"
List loggedCats = sess.createSQLQuery(sql, "cat", Cat.class)
.setLong("catId", catId)
.list();
Note: if you list each property explicitly, you must include all properties of the class and its subclasses!
<sql-query name="mySqlQuery">
<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 'Hiber%'
</sql-query>
It is even possible to use different mapping strategies for different branches of the same inheritance hierarchy,
but the same limitations apply as apply to table-per-concrete class mappings. Hibernate does not support mix-
ing <subclass> mappings and <joined-subclass> mappings inside the same <class> element.
Exactly one table is required. There is one big limitation of this mapping strategy: columns declared by the sub-
classes may not have NOT NULL constraints.
</class>
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).
Note that Hibernate's implementation of table-per-subclass requires no discriminator column. Other object/
relational mappers use a different implementation of table-per-subclass which requires a type discriminator col-
umn in the superclass table. The approach taken by Hibernate is much more difficult to implement but arguably
more correct from a relational point of view.
For either of these two mapping strategies, a polymorphic association to Payment is mapped using
<many-to-one>.
<many-to-one name="payment"
column="PAYMENT"
class="Payment"/>
Three tables were required. Notice that nowhere do we mention the Payment interface explicitly. Instead, we
make use of Hibernate's implicit polymorphism. Also notice that properties of Payment are mapped in each of
the subclasses.
<any name="payment"
meta-type="class"
id-type="long">
<column name="PAYMENT_CLASS"/>
<column name="PAYMENT_ID"/>
</any>
It would be better if we defined a UserType as the meta-type, to handle the mapping from type discriminator
strings to Payment subclass.
<any name="payment"
meta-type="PaymentMetaType"
id-type="long">
There is one further thing to notice about this 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
table-per-class or table-per-subclass inheritance hierarchy! (And you can still use polymorphic queries against
the Payment interface.)
Once again, we don't mention Payment explicitly. If we execute a query against the Payment interface - for ex-
ample, from Payment - Hibernate automatically returns instances of CreditCardPayment (and its subclasses,
since they also implement Payment), CashPayment and ChequePayment but not instances of Nonelectronic-
Transaction.
16.2. Limitations
Hibernate assumes that an association maps to exactly one foreign key column. Multiple associations per for-
eign key are tolerated (you might need to specify inverse="true" or insert="false" update="false"), but
there is no way to map any association to multiple foreign keys. This means that:
• when an association is modified, it is always the same foreign key that is updated
• when an association is fetched eagerly, it may be fetched using a single outer join
In particular, it implies that polymorphic one-to-many associations to classes mapped using the table-
per-concrete-class strategy are not supported. (Fetching this association would require multiple queries or mul-
tiple joins.)
The following table shows the limitations of table-per-concrete-class mappings, and of implicit polymorphism,
in Hibernate.
table- <many-to-o <one-to-on <one-to-ma <many-to-m s.get(Paym from Pay- from Order
per- ne> e> ny> any> ent.class, ment p o join
hierarchy id) o.payment
p
table- <many-to-o <one-to-on <one-to-ma <many-to-m s.get(Paym from Pay- from Order
per- ne> e> ny> any> ent.class, ment p o join
subclass id) o.payment
p
table- <any> not sup- not sup- <many-to-a use a query from Pay- not sup-
per-class ported ported ny> ment p ported
hierarchy
(implicit
polymor-
phism)
SessionFactory sf = (SessionFactory)getServletContext().getAttribute("my.session.factory");
Each call to a service method could create a new Session, flush() it, commit() its connection, close() it and
finally discard it.
In a stateless session bean, a similar approach could be used. The bean would obtain a SessionFactory in set-
SessionContext(). Then each business method would create a Session, flush() it and close() it. Of course,
the application should not commit() the connection. (Leave that to JTA.)
Ensure you understand the semantics of flush(). Flushing synchronizes the persistent store with in-memory
changes but not vice-versa. So when you flush() and then commit() the connection, the session will continue
to contain potentially stale data. The only way you may continue to use a session after a flush() and commit()
is by using versioned data.
The next few sections will discuss alternative approaches that utilize versioning to ensure transaction atomicity.
These are considered "advanced" approaches to be used with care.
• Never create more than one concurrent Session or Transaction instance per database connection
• Be extremely careful when creating more than one Session per datastore per transaction. The Session itself
keeps track of updates made to loaded objects, so a different Session might see stale data.
• The Session is not threadsafe. We can't see why you would need to share a session between two concurrent
threads but if you must, make sure your threads carefully synchronize on the Session object before access-
ing it.
A single Session instance and its persistent instances are used for the whole business process. The Session
uses optimistic locking with versioning to ensure that many database transactions appear to the application as a
single logical transaction. The Session is disconnected when waiting for user interaction. This approach is the
most efficient in terms of database access. The application need not concern itself with version checking or
with reassociating transient instances.
Each interaction with the persistent store occurs in a new Session. However, the same persistent instances are
reused for each interaction with the database. The application manipulates the state of transient instances origi-
nally loaded in another Session and then "reassociates" them using Session.update() or Ses-
sion.saveOrUpdate().
Each interaction with the persistent store occurs in a new Session that reloads all persistent instances from the
datastore before manipulating them. This approach forces the application to carry out its own version checking
to ensure business process isolation. (Of course, Hibernate will still update version numbers for you.) This ap-
proach is the least efficient in terms of database access. It is the approach most similar to entity EJBs.
Of course, if you are operating in a low-data-concurrency environment and don't require version checking, you
may use this approach and just skip the version check.
before waiting for user activity. The method Session.disconnect() will disconnect the session from the
JDBC connection and return the connection to the pool (unless you provided the connection).
Session.reconnect() obtains a new connection (or you may supply one) and restarts the session. After recon-
nection, to force a version check on data you aren't updating, you may call Session.lock() on any objects that
might have been updated by another transaction. You don't need to lock any data that you are updating.
Heres an example:
SessionFactory sessions;
List fooList;
Bar bar;
....
Session s = sessions.openSession();
Transaction tx = null;
try {
tx = s.beginTransaction();
fooList = s.find(
"select foo from eg.Foo foo where foo.Date = current date"
// uses db2 date function
);
bar = (Bar) s.create(Bar.class);
tx.commit();
}
catch (Exception e) {
if (tx!=null) tx.rollback();
s.close();
throw e;
}
s.disconnect();
Later on:
s.reconnect();
try {
tx = s.beginTransaction();
tx.commit();
}
catch (Exception e) {
if (tx!=null) tx.rollback();
throw e;
}
finally {
s.close();
}
You can see from this how the relationship between Transactions and Sessions is many-to-one, A Session
represents a conversation between the application and the persistent store. The Transaction breaks that conver-
sation up into atomic units of work.
The LockMode class defines the different lock levels that may 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 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 UP-
GRADE_NOWAIT. (In the case of UPGRADE or UPGRADE_NOWAIT, SELECT ... FOR UPDATE is used.)
If the database does not support the requested lock mode, Hibernate will use an appropriate alternate mode
(instead of throwing an exception). This ensures that applications will be portable.
18.1. Employer/Employee
The following model of the relationship between Employer and Employee uses an actual entity class (Employ-
ment) to represent the association. This is done because there might be more than one period of employment for
the same two parties. Components are used to model monetory 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"/>
</class>
<generator class="sequence">
<param name="sequence">employee_id_seq</param>
</generator>
</id>
<property name="taxfileNumber"/>
<component name="name" class="Name">
<property name="firstName"/>
<property name="initial"/>
<property name="lastName"/>
</component>
</class>
</hibernate-mapping>
18.2. Author/Work
Consider the following model of the relationships between Work, Author and Person. We represent the relation-
ship between Work and Author as a many-to-many association. We choose to represent the relationship between
Author and Person 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" lazy="true">
<key>
<column name="work_id" not-null="true"/>
</key>
<many-to-many class="Author">
<column name="author_id" not-null="true"/>
</many-to-many>
</set>
</class>
<property name="alias"/>
<one-to-one name="person" constrained="true"/>
</set>
</class>
</hibernate-mapping>
There are four tables in this mapping. works, authors and persons hold work, author and person data respec-
tively. author_work is an association table linking authors to works. Heres the table schema, as generated by
SchemaExport.
18.3. Customer/Order/Product
Now consider a model of the relationships between Customer, Order and LineItem and Product. There is a
one-to-many association between Customer and Order, but how should we represent Order / LineItem / Prod-
uct? I've chosen to map LineItem as an association class representing the many-to-many association between
Order and Product. In Hibernate, this is called a composite element.
<hibernate-mapping>
</hibernate-mapping>
customers, orders, line_items and products hold customer, order, order line item and product data respec-
tively. line_items also acts as an association table linking orders with products.
The Hibernate main package comes bundled with the most important tool (it can even be used from "inside"
Hibernate on-the-fly):
Other tools directly provided by the Hibernate project are delivered with a separate package, Hibernate Exten-
sions. This package includes tools for the following tasks:
• mapping file generation from compiled Java classes or from Java source with XDoclet markup (aka Map-
Generator, class2hbm)
There's actually another utitily living in Hibernate Extensions: ddl2hbm. It is considered deprecated and will no
longer be maintained, Middlegen does a better job for the same task.
• AndroMDA (MDA (Model-Driven Architecture) approach generating code for persistent classes from
UML diagrams and their XML/XMI representation)
These 3rd party tools are not documented in this reference. Please refer to the Hibernate website for up-to-date
information (a snapshot of the site is included in the Hibernate main package).
The generated schema include referential integrity constraints (primary and foreign keys) for entity and collec-
tion tables. Tables and sequences are also created for mapped identifier generators.
You must specify a SQL Dialect via the hibernate.dialect property when using this tool.
Many Hibernate mapping elements define an optional attribute named length. You may set the length of a col-
umn with this attribute.
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).
Some tags accept an index attribute for specifying the name of an index for that column. A unique-key at-
tribute can be used to group columns in a single unit key constraint. Currently, the specified value of the
unique-key attribute is not used to name the constraint, only to group the columns in the mapping file.
Examples:
Alternatively, these elements also accept a child <column> element. This is particularly useful for multi-column
types:
The sql-type attribute allows the user to override the default mapping of Hibernate type to SQL datatype.
Attribute Values
length true|false
not-null true|false
unique true|false
index index_name
unique-key unique_key_name
foreign-key foreign_key_name
sql-type column_type
The SchemaExport tool writes a DDL script to standard out and/or executes the DDL statements.
Option Description
Option Description
19.1.3. Properties
hibernate.dialect dialect
<target name="schemaexport">
<taskdef name="schemaexport"
classname="net.sf.hibernate.tool.hbm2ddl.SchemaExportTask"
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>
The SchemaUpdate tool will update an existing schema with "incremental" changes. Note that SchemaUpdate
depends heavily upon the JDBC metadata API, so it will not work with all JDBC drivers.
Option Description
<target name="schemaupdate">
<taskdef name="schemaupdate"
classname="net.sf.hibernate.tool.hbm2ddl.SchemaUpdateTask"
classpathref="class.path"/>
<schemaupdate
properties="hibernate.properties"
quiet="no">
<fileset dir="src">
<include name="**/*.hbm.xml"/>
</fileset>
</schemaupdate>
</target>
hbm2java parses the mapping files and generates fully working Java source files from these. Thus with
hbm2java one could "just" provide the .hbm files, and then don't worry about hand-writing/coding the Java files.
Option Description
The config file provides for a way to specify multiple "renderers" for the source code and to declare <meta> at-
tributes that is "global" in scope. See more about this in the <meta> attribute section.
<codegen>
<meta attribute="implements">codegen.test.IAuditable</meta>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
<generate
package="autofinders.only"
suffix="Finder"
renderer="net.sf.hibernate.tool.hbm2java.FinderRenderer"/>
</codegen>
This config file declares a global meta attribute "implements" and specify two renderers, the default one
(BasicRenderer) and a renderer that generates Finder's (See more in "Basic Finder generation" below).
The package attribute specifies that the generated source files from this renderer should be placed here instead
of the package scope specified in the .hbm files.
The suffix attribute specifies the suffix for generated files. E.g. here a file named Foo.java would be
FooFinder.java instead.
The <meta> tag is a simple way of annotating the hbm.xml with information, so tools have a natural place to
store/read information that is not directly related to the Hibernate core.
You can use the <meta> tag to tell hbm2java to only generate "protected" setters, have classes always imple-
ment a certain set of interfaces or even have them extend a certain base class and even more.
<class name="Person">
<meta attribute="class-description">
Javadoc for the Person class
@author Frodo
</meta>
<meta attribute="implements">IAuditable</meta>
<id name="id" type="long">
<meta attribute="scope-set">protected</meta>
<generator class="increment"/>
</id>
<property name="name" type="string">
<meta attribute="field-description">The name of the person</meta>
</property>
</class>
will produce something like the following (code shortened for better understanding). Notice the Javadoc com-
ment and the protected set methods:
// default package
import java.io.Serializable;
import org.apache.commons.lang.builder.EqualsBuilder;
import org.apache.commons.lang.builder.HashCodeBuilder;
import org.apache.commons.lang.builder.ToStringBuilder;
/**
* Javadoc for the Person class
* @author Frodo
*
*/
public class Person implements Serializable, IAuditable {
/**
* The name of the person
*/
public java.lang.String getName() {
return this.name;
}
Attribute Description
Attribute Description
property-type Overrides the default type of property. Use this with any tag's
to specify the concrete type instead of just Object.
Attributes declared via the <meta> tag are per default "inherited" inside an hbm.xml file.
What does that mean? It means that if you e.g want to have all your classes implement IAuditable then you
just add an <meta attribute="implements">IAuditable</meta> in the top of the hbm.xml file, just after
<hibernate-mapping>. Now all classes defined in that hbm.xml file will implement IAuditable! (Except if a
class also has an "implements" meta attribute, because local specified meta tags always overrules/replaces any
inherited meta tags).
Note: This applies to all <meta>-tags. Thus it can also e.g. be used to specify that all fields should be declare
protected, instead of the default private. This is done by adding <meta at-
tribute="scope-field">protected</meta> at e.g. just under the <class> tag and all fields of that class will
be protected.
To avoid having a <meta>-tag inherited then you can simply specify inherit="false" for the attribute, e.g.
<meta attribute="scope-class" inherit="false">public abstract</meta> will restrict the "class-scope"
to the current class, not the subclasses.
It is now possible to have hbm2java generate basic finders for Hibernate properties. This requires two things in
the hbm.xml files.
The first is an indication of which fields you want to generate finders for. You indicate that with a meta block
inside a property tag such as:
The finder method name will be the text enclosed in the meta tags.
<codegen>
<generate renderer="net.sf.hibernate.tool.hbm2java.BasicRenderer"/>
<generate suffix="Finder" renderer="net.sf.hibernate.tool.hbm2java.FinderRenderer"/>
</codegen>
And then use the param to hbm2java --config=xxx.xml where xxx.xml is the config file you just created.
<meta attribute="session-method">
com.whatever.SessionTable.getSessionTable().getSession();
</meta>
Which would be the way in which you get sessions if you use the Thread Local Session pattern (documented in
the Design Patterns area of the Hibernate website).
It is now possible to use velocity as an alternative rendering mechanism. The follwing config.xml shows how to
configure hbm2java to use its velocity renderer.
<codegen>
<generate renderer="net.sf.hibernate.tool.hbm2java.VelocityRenderer">
<param name="template">pojo.vm</param>
</generate>
</codegen>
The parameter named template is a resource path to the velocity macro file you want to use. This file must be
available via the classpath for hbm2java. Thus remember to add the directory where pojo.vm is located to your
ant task or shell script. (The default location is ./tools/src/velocity)
Be aware that the current pojo.vm generates only the most basic parts of the java beans. It is not as complete
and feature rich as the default renderer - primarily a lot of the meta tags are not supported.
The Hibernate mapping generator provides a mechanism to produce mappings from compiled classes. It uses
Java reflection to find properties and uses heuristics to guess an appropriate mapping from the property type.
The generated mapping is intended to be a starting point only. There is no way to produce a full Hibernate map-
ping without extra input from the user. However, the tool does take away some of the repetitive "grunt" work
involved in producing a mapping.
Classes are added to the mapping one at a time. The tool will reject classes that it judges are are not Hibernate
persistable.
Note that interfaces and nested classes actually are persistable by Hibernate, but this would not usually be in-
tended by the user.
MapGenerator will climb the superclass chain of all added classes attempting to add as many Hibernate per-
sistable superclasses as possible to the same database table. The search stops as soon as a property is found that
has a name appearing on a list of candidate UID names.
The default list of candidate UID property names is: uid, UID, id, ID, key, KEY, pk, PK.
Properties are discovered when there are two methods in the class, a setter and a getter, where the type of the
setter's single argument is the same as the return type of the zero argument getter, and the setter returns void.
Furthermore, the setter's name must start with the string set and either the getter's name starts with get or the
getter's name starts with is and the type of the property is boolean. In either case, the remainder of their names
must match. This matching portion is the name of the property, except that the initial character of the property
name is made lower case if the second letter is lower case.
The rules for determining the database type of each property are as follows:
1. If the Java type is Hibernate.basic(), then the property is a simple column of that type.
2. For hibernate.type.Type custom types and PersistentEnum a simple column is used as well.
3. If the property type is an array, then a Hibernate array is used, and MapGenerator attempts to reflect on the
array element type.
4. If the property has type java.util.List, java.util.Map, or java.util.Set, then the corresponding Hi-
bernate types are used, but MapGenerator cannot further process the insides of these types.
5. If the property's type is any other class, MapGenerator defers the decision on the database representation
until all classes have been processed. At this point, if the class was discovered through the superclass
search described above, then the property is an many-to-one association. If the class has any properties,
then it is a component. Otherwise it is serializable, or not persistable.
When invoking the tool you must place your compiled classes on the classpath.
The interactive mode is selected by providing the single command line argument --interact. This mode pro-
vides a prompt response console. Using it you can set the UID property name for each class using the uid=XXX
command where XXX is the UID property name. Other command alternatives are simply a fully qualified class
name, or the command done which emits the XML and terminates.
In command line mode the arguments are the options below interspersed with fully qualified class names of the
classes to be processed. Most of the options are meant to be used multiple times; each use affects subsequently
added classes.
Option Description
--select=mode mode use select mode mode(e.g., distinct or all) for subsequently added
classes
--depth=<small-int> limit the depth of component data recursion for subsequently added
classes
The abstract switch directs the map generator tool to ignore specific super classes so that classes with common
inheritance are not mapped to one large table. For instance, consider these class hierarchies:
Animal-->Mammal-->Human
Animal-->Mammal-->Marsupial-->Kangaroo
If the --abstractswitch is not used, all classes will be mapped as subclasses of Animal, resulting in one large
table containing all the properties of all the classes plus a discriminator column to indicate which subclass is ac-
tually stored. If Mammal is marked as abstract, Human and Marsupial will be mapped to separate <class> dec-
larations and stored in separate tables. Kangaroo will still be a subclass of Marsupial unless Marsupial is also
marked as abstract.