Hibernate Reference Documentation

Size: px
Start display at page:

Download "Hibernate Reference Documentation"

Transcription

1 HIBERNATE - Relational Persistence for Idiomatic Java 1 Hibernate Reference Documentation Final by Gavin King, Christian Bauer, Max Rydahl Andersen, Emmanuel Bernard, Steve Ebersole, and Hardy Ferentschik and thanks to James Cobb (Graphic Design) and Cheyenne Weaver (Graphic Design)

2

3 Preface... xi 1. Tutorial Part 1 - The first Hibernate Application Setup The first class The mapping file Hibernate configuration Building with Maven Startup and helpers Loading and storing objects Part 2 - Mapping associations Mapping the Person class A unidirectional Set-based association Working the association Collection of values Bi-directional associations Working bi-directional links Part 3 - The EventManager web application Writing the basic servlet Processing and rendering Deploying and testing Summary Architecture Overview Minimal architecture Comprehensive architecture Basic APIs JMX Integration Contextual sessions Configuration Programmatic configuration Obtaining a SessionFactory JDBC connections Optional configuration properties SQL Dialects Outer Join Fetching Binary Streams Second-level and query cache Query Language Substitution Hibernate statistics Logging Implementing a NamingStrategy Implementing a PersisterClassProvider XML configuration file iii

4 HIBERNATE - Relational Persis Java EE Application Server integration Transaction strategy configuration JNDI-bound SessionFactory Current Session context management with JTA JMX deployment Persistent Classes A simple POJO example Implement a no-argument constructor Provide an identifier property Prefer non-final classes (semi-optional) Declare accessors and mutators for persistent fields (optional) Implementing inheritance Implementing equals() and hashcode() Dynamic models Tuplizers EntityNameResolvers Basic O/R Mapping Mapping declaration Entity Identifiers Optimistic locking properties (optional) Property Embedded objects (aka components) Inheritance strategy Mapping one to one and one to many associations Natural-id Any Properties Some hbm.xml specificities Hibernate types Entities and values Basic value types Custom value types Mapping a class more than once SQL quoted identifiers Generated properties Column transformers: read and write expressions Auxiliary database objects Types Value types Basic value types Composite types Collection types Entity types iv

5 6.3. Significance of type categories Custom types Custom types using org.hibernate.type.type Custom types using org.hibernate.usertype.usertype Custom types using org.hibernate.usertype.compositeusertype Type registry Collection mapping Persistent collections How to map collections Collection foreign keys Indexed collections Collections of basic types and embeddable objects Advanced collection mappings Sorted collections Bidirectional associations Bidirectional associations with indexed collections Ternary associations Using an <idbag> Collection examples Association Mappings Introduction Unidirectional associations Many-to-one One-to-one One-to-many Unidirectional associations with join tables One-to-many Many-to-one One-to-one Many-to-many Bidirectional associations one-to-many / many-to-one One-to-one Bidirectional associations with join tables one-to-many / many-to-one one to one Many-to-many More complex association mappings Component Mapping Dependent objects Collections of dependent objects Components as Map indices Components as composite identifiers Dynamic components v

6 HIBERNATE - Relational Persis Inheritance mapping The three strategies Table per class hierarchy Table per subclass Table per subclass: using a discriminator Mixing table per class hierarchy with table per subclass Table per concrete class Table per concrete class using implicit polymorphism Mixing implicit polymorphism with other inheritance mappings Limitations Working with objects Hibernate object states Making objects persistent Loading an object Querying Executing queries Filtering collections Criteria queries Queries in native SQL Modifying persistent objects Modifying detached objects Automatic state detection Deleting persistent objects Replicating object between two different datastores Flushing the Session Transitive persistence Using metadata Read-only entities Making persistent entities read-only Entities of immutable classes Loading persistent entities as read-only Loading read-only entities from an HQL query/criteria Making a persistent entity read-only Read-only affect on property type Simple properties Unidirectional associations Bidirectional associations Transactions and Concurrency Session and transaction scopes Unit of work Long conversations Considering object identity Common issues Database transaction demarcation vi

7 Non-managed environment Using JTA Exception handling Transaction timeout Optimistic concurrency control Application version checking Extended session and automatic versioning Detached objects and automatic versioning Customizing automatic versioning Pessimistic locking Connection release modes Interceptors and events Interceptors Event system Hibernate declarative security Batch processing Batch inserts Batch updates The StatelessSession interface DML-style operations HQL: The Hibernate Query Language Case Sensitivity The from clause Associations and joins Forms of join syntax Referring to identifier property The select clause Aggregate functions Polymorphic queries The where clause Expressions The order by clause The group by clause Subqueries HQL examples Bulk update and delete Tips & Tricks Components Row value constructor syntax Criteria Queries Creating a Criteria instance Narrowing the result set Ordering the results Associations vii

8 HIBERNATE - Relational Persis Dynamic association fetching Example queries Projections, aggregation and grouping Detached queries and subqueries Queries by natural identifier Native SQL Using a SQLQuery Scalar queries Entity queries Handling associations and collections Returning multiple entities Returning non-managed entities Handling inheritance Parameters Named SQL queries Using return-property to explicitly specify column/alias names Using stored procedures for querying Custom SQL for create, update and delete Custom SQL for loading Filtering data Hibernate filters XML Mapping Working with XML data Specifying XML and class mapping together Specifying only an XML mapping XML mapping metadata Manipulating XML data Improving performance Fetching strategies Working with lazy associations Tuning fetch strategies Single-ended association proxies Initializing collections and proxies Using batch fetching Using subselect fetching Fetch profiles Using lazy property fetching The Second Level Cache Cache mappings Strategy: read only Strategy: read/write Strategy: nonstrict read/write Strategy: transactional Cache-provider/concurrency-strategy compatibility viii

9 21.3. Managing the caches The Query Cache Enabling query caching Query cache regions Understanding Collection performance Taxonomy Lists, maps, idbags and sets are the most efficient collections to update Bags and lists are the most efficient inverse collections One shot delete Monitoring performance Monitoring a SessionFactory Metrics Toolset Guide Automatic schema generation Customizing the schema Running the tool Properties Using Ant Incremental schema updates Using Ant for incremental schema updates Schema validation Using Ant for schema validation Additional modules Bean Validation Adding Bean Validation Configuration Catching violations Database schema Hibernate Search Description Integration with Hibernate Annotations Example: Parent/Child A note about collections Bidirectional one-to-many Cascading life cycle Cascades and unsaved-value Conclusion Example: Weblog Application Persistent Classes Hibernate Mappings Hibernate Code Example: Various Mappings Employer/Employee Author/Work ix

10 HIBERNATE - Relational Persis Customer/Order/Product Miscellaneous example mappings "Typed" one-to-one association Composite key example Many-to-many with shared composite key attribute Content based discrimination Associations on alternate keys Best Practices Database Portability Considerations Portability Basics Dialect Dialect resolution Identifier generation Database functions Type mappings References x

11 Preface Working with both Object-Oriented software and Relational Databases can be cumbersome and time consuming. Development costs are significantly higher due to a paradigm mismatch between how data is represented in objects versus relational databases. Hibernate is an Object/ Relational Mapping solution for Java environments. The term Object/Relational Mapping refers to the technique of mapping data from an object model representation to a relational data model representation (and visa versa). See for a good high-level discussion. Note While having a strong background in SQL is not required to use Hibernate, having a basic understanding of the concepts can greatly help you understand Hibernate more fully and quickly. Probably the single best background is an understanding of data modeling principles. You might want to consider these resources as a good starting point: Hibernate not only takes care of the mapping from Java classes to database tables (and from Java data types to SQL data types), but also provides data query and retrieval facilities. It can significantly reduce development time otherwise spent with manual data handling in SQL and JDBC. Hibernate s design goal is to relieve the developer from 95% of common data persistencerelated programming tasks by eliminating the need for manual, hand-crafted data processing using SQL and JDBC. However, unlike many other persistence solutions, Hibernate does not hide the power of SQL from you and guarantees that your investment in relational technology and knowledge is as valid as always. Hibernate may not be the best solution for data-centric applications that only use storedprocedures to implement the business logic in the database, it is most useful with objectoriented domain models and business logic in the Java-based middle-tier. However, Hibernate can certainly help you to remove or encapsulate vendor-specific SQL code and will help with the common task of result set translation from a tabular representation to a graph of objects. If you are new to Hibernate and Object/Relational Mapping or even Java, please follow these steps: 1. Read Chapter 1, Tutorial for a tutorial with step-by-step instructions. The source code for the tutorial is included in the distribution in the doc/reference/tutorial/ directory. 2. Read Chapter 2, Architecture to understand the environments where Hibernate can be used. xi

12 Preface 3. View the eg/ directory in the Hibernate distribution. It contains a simple standalone application. Copy your JDBC driver to the lib/ directory and edit etc/hibernate.properties, specifying correct values for your database. From a command prompt in the distribution directory, type ant eg (using Ant), or under Windows, type build eg. 4. Use this reference documentation as your primary source of information. Consider reading [JPwH] if you need more help with application design, or if you prefer a step-by-step tutorial. Also visit and download the example application from [JPwH]. 5. FAQs are answered on the Hibernate website. 6. Links to third party demos, examples, and tutorials are maintained on the Hibernate website. 7. The Community Area on the Hibernate website is a good resource for design patterns and various integration solutions (Tomcat, JBoss AS, Struts, EJB, etc.). There are a number of ways to become involved in the Hibernate community, including Trying stuff out and reporting bugs. See details. Trying your hand at fixing some bugs or implementing enhancements. Again, see hibernate.org/issuetracker.html details. list a few ways to engage in the community. There are forums for users to ask questions and receive help from the community. There are also IRC [ channels for both user and developer discussions. Helping improve or translate this documentation. Contact us on the developer mailing list if you have interest. Evangelizing Hibernate within your organization. xii

13 Chapter 1. Tutorial Intended for new users, this chapter provides an step-by-step introduction to Hibernate, starting with a simple application using an in-memory database. The tutorial is based on an earlier tutorial developed by Michael Gloegl. All code is contained in the tutorials/web directory of the project source. Important This tutorial expects the user have knowledge of both Java and SQL. If you have a limited knowledge of JAVA or SQL, it is advised that you start with a good introduction to that technology prior to attempting to learn Hibernate. Note The distribution contains another example application under the tutorial/eg project source directory Part 1 - The first Hibernate Application For this example, we will set up a small database application that can store events we want to attend and information about the host(s) of these events. Note Although you can use whatever database you feel comfortable using, we will use HSQLDB [ (an in-memory, Java database) to avoid describing installation/setup of any particular database servers Setup The first thing we need to do is to set up the development environment. We will be using the "standard layout" advocated by alot of build tools such as Maven [ Maven, in particular, has a good resource describing this layout [ introduction/introduction-to-the-standard-directory-layout.html]. As this tutorial is to be a web application, we will be creating and making use of src/main/java, src/main/resources and src/main/webapp directories. We will be using Maven in this tutorial, taking advantage of its transitive dependency management capabilities as well as the ability of many IDEs to automatically set up a project for us based on the maven descriptor. 1

14 Chapter 1. Tutorial <project xmlns=" xmlns:xsi=" xsi:schemalocation=" maven xsd"> <modelversion>4.0.0</modelversion> <groupid>org.hibernate.tutorials</groupid> <artifactid>hibernate-tutorial</artifactid> <version>1.0.0-snapshot</version> <name>first Hibernate Tutorial</name> <build> <!-- we dont want the version to be part of the generated war file name --> <finalname>${artifactid</finalname> </build> <dependencies> <dependency> <groupid>org.hibernate</groupid> <artifactid>hibernate-core</artifactid> </dependency> <!-- Because this is a web app, we also have a dependency on the servlet api. --> <dependency> <groupid>javax.servlet</groupid> <artifactid>servlet-api</artifactid> </dependency> <!-- Hibernate uses slf4j for logging, for our purposes here use the simple backend --> <dependency> <groupid>org.slf4j</groupid> <artifactid>slf4j-simple</artifactid> </dependency> <!-- Hibernate gives you a choice of bytecode providers between cglib and javassist --> <dependency> <groupid>javassist</groupid> <artifactid>javassist</artifactid> </dependency> </dependencies> </project> Tip It is not a requirement to use Maven. If you wish to use something else to build this tutorial (such as Ant), the layout will remain the same. The only change is that you will need to manually account for all the needed dependencies. If you use something like Ivy [ providing transitive dependency management you would still use the dependencies mentioned below. Otherwise, you'd need to grab all dependencies, both explicit and transitive, and add them to the project's classpath. If working from the Hibernate distribution bundle, this 2

15 The first class would mean hibernate3.jar, all artifacts in the lib/required directory and all files from either the lib/bytecode/cglib or lib/bytecode/javassist directory; additionally you will need both the servlet-api jar and one of the slf4j logging backends. Save this file as pom.xml in the project root directory The first class Next, we create a class that represents the event we want to store in the database; it is a simple JavaBean class with some properties: package org.hibernate.tutorial.domain; import java.util.date; public class Event { private Long id; private String title; private Date date; public Event() { public Long getid() { return id; private void setid(long id) { this.id = id; public Date getdate() { return date; public void setdate(date date) { this.date = date; public String gettitle() { return title; public void settitle(string title) { this.title = title; This class uses standard JavaBean naming conventions for property getter and setter methods, as well as private visibility for the fields. Although this is the recommended design, it is not 3

16 Chapter 1. Tutorial required. Hibernate can also access fields directly, the benefit of accessor methods is robustness for refactoring. The id property holds a unique identifier value for a particular event. All persistent entity classes (there are less important dependent classes as well) will need such an identifier property if we want to use the full feature set of Hibernate. In fact, most applications, especially web applications, need to distinguish objects by identifier, so you should consider this a feature rather than a limitation. However, we usually do not manipulate the identity of an object, hence the setter method should be private. Only Hibernate will assign identifiers when an object is saved. Hibernate can access public, private, and protected accessor methods, as well as public, private and protected fields directly. The choice is up to you and you can match it to fit your application design. The no-argument constructor is a requirement for all persistent classes; Hibernate has to create objects for you, using Java Reflection. The constructor can be private, however package or public visibility is required for runtime proxy generation and efficient data retrieval without bytecode instrumentation. Save this file to the src/main/java/org/hibernate/tutorial/domain directory The mapping file Hibernate needs to know how to load and store objects of the persistent class. This is where the Hibernate mapping file comes into play. The mapping file tells Hibernate what table in the database it has to access, and what columns in that table it should use. The basic structure of a mapping file looks like this: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" " <hibernate-mapping package="org.hibernate.tutorial.domain"> [...] </hibernate-mapping> Hibernate DTD is sophisticated. You can use it for auto-completion of XML mapping elements and attributes in your editor or IDE. Opening up the DTD file in your text editor is the easiest way to get an overview of all elements and attributes, and to view the defaults, as well as some comments. Hibernate will not load the DTD file from the web, but first look it up from the classpath of the application. The DTD file is included in hibernate-core.jar (it is also included in the hibernate3.jar, if using the distribution bundle). 4

17 The mapping file Important We will omit the DTD declaration in future examples to shorten the code. It is, of course, not optional. Between the two hibernate-mapping tags, include a class element. All persistent entity classes (again, there might be dependent classes later on, which are not first-class entities) need a mapping to a table in the SQL database: <hibernate-mapping package="org.hibernate.tutorial.domain"> <class name="event" table="events"> </class> </hibernate-mapping> So far we have told Hibernate how to persist and load object of class Event to the table EVENTS. Each instance is now represented by a row in that table. Now we can continue by mapping the unique identifier property to the tables primary key. As we do not want to care about handling this identifier, we configure Hibernate's identifier generation strategy for a surrogate primary key column: <hibernate-mapping package="org.hibernate.tutorial.domain"> <class name="event" table="events"> <id name="id" column="event_id"> <generator class="native"/> </id> </class> </hibernate-mapping> The id element is the declaration of the identifier property. The name="id" mapping attribute declares the name of the JavaBean property and tells Hibernate to use the getid() and setid() methods to access the property. The column attribute tells Hibernate which column of the EVENTS table holds the primary key value. The nested generator element specifies the identifier generation strategy (aka how are identifier values generated?). In this case we choose native, which offers a level of portability depending on the configured database dialect. Hibernate supports database generated, globally unique, as well as application assigned, identifiers. Identifier value generation is also one of Hibernate's many extension points and you can plugin in your own strategy. 5

18 Chapter 1. Tutorial Tip native is no longer consider the best strategy in terms of portability. for further discussion, see Section 28.4, Identifier generation Lastly, we need to tell Hibernate about the remaining entity class properties. By default, no properties of the class are considered persistent: <hibernate-mapping package="org.hibernate.tutorial.domain"> <class name="event" table="events"> <id name="id" column="event_id"> <generator class="native"/> </id> <property name="date" type="timestamp" column="event_date"/> <property name="title"/> </class> </hibernate-mapping> Similar to the id element, the name attribute of the property element tells Hibernate which getter and setter methods to use. In this case, Hibernate will search for getdate(), setdate(), gettitle() and settitle() methods. Note Why does the date property mapping include the column attribute, but the title does not? Without the column attribute, Hibernate by default uses the property name as the column name. This works for title, however, date is a reserved keyword in most databases so you will need to map it to a different name. The title mapping also lacks a type attribute. The types declared and used in the mapping files are not Java data types; they are not SQL database types either. These types are called Hibernate mapping types, converters which can translate from Java to SQL data types and vice versa. Again, Hibernate will try to determine the correct conversion and mapping type itself if the type attribute is not present in the mapping. In some cases this automatic detection using Reflection on the Java class might not have the default you expect or need. This is the case with the date property. Hibernate cannot know if the property, which is of java.util.date, should map to a SQL date, timestamp, or time column. Full date and time information is preserved by mapping the property with a timestamp converter. 6

19 Hibernate configuration Tip Hibernate makes this mapping type determination using reflection when the mapping files are processed. This can take time and resources, so if startup performance is important you should consider explicitly defining the type to use. Save this mapping file as src/main/resources/org/hibernate/tutorial/domain/ Event.hbm.xml Hibernate configuration At this point, you should have the persistent class and its mapping file in place. It is now time to configure Hibernate. First let's set up HSQLDB to run in "server mode" Note We do this do that the data remains between runs. We will utilize the Maven exec plugin to launch the HSQLDB server by running: mvn exec:java -Dexec.mainClass="org.hsqldb.Server" -Dexec.args="-database.0 file:target/data/ tutorial" You will see it start up and bind to a TCP/IP socket; this is where our application will connect later. If you want to start with a fresh database during this tutorial, shutdown HSQLDB, delete all files in the target/data directory, and start HSQLDB again. Hibernate will be connecting to the database on behalf of your application, so it needs to know how to obtain connections. For this tutorial we will be using a standalone connection pool (as opposed to a javax.sql.datasource). Hibernate comes with support for two third-party open source JDBC connection pools: c3p0 [ and proxool [ proxool.sourceforge.net/]. However, we will be using the Hibernate built-in connection pool for this tutorial. Caution The built-in Hibernate connection pool is in no way intended for production use. It lacks several features found on any decent connection pool. For Hibernate's configuration, we can use a simple hibernate.properties file, a more sophisticated hibernate.cfg.xml file, or even complete programmatic setup. Most users prefer the XML configuration file: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" 7

20 Chapter 1. Tutorial " <hibernate-configuration> <session-factory> <!-- Database connection settings --> <property name="connection.driver_class">org.hsqldb.jdbcdriver</property> <property name="connection.url">jdbc:hsqldb:hsql://localhost</property> <property name="connection.username">sa</property> <property name="connection.password"></property> <!-- JDBC connection pool (use the built-in) --> <property name="connection.pool_size">1</property> <!-- SQL dialect --> <property name="dialect">org.hibernate.dialect.hsqldialect</property> <!-- Enable Hibernate's automatic session context management --> <property name="current_session_context_class">thread</property> <!-- Disable the second-level cache --> <property name="cache.provider_class">org.hibernate.cache.nocacheprovider</property> <!-- Echo all executed SQL to stdout --> <property name="show_sql">true</property> <!-- Drop and re-create the database schema on startup --> <property name="hbm2ddl.auto">update</property> <mapping resource="org/hibernate/tutorial/domain/event.hbm.xml"/> </session-factory> </hibernate-configuration> Note Notice that this configuration file specifies a different DTD You configure Hibernate's SessionFactory. SessionFactory is a global factory responsible for a particular database. If you have several databases, for easier startup you should use several <session-factory> configurations in several configuration files. The first four property elements contain the necessary configuration for the JDBC connection. The dialect property element specifies the particular SQL variant Hibernate generates. Tip In most cases, Hibernate is able to properly determine which dialect to use. See Section 28.3, Dialect resolution for more information. 8

21 Building with Maven Hibernate's automatic session management for persistence contexts is particularly useful in this context. The hbm2ddl.auto option turns on automatic generation of database schemas directly into the database. This can also be turned off by removing the configuration option, or redirected to a file with the help of the SchemaExport Ant task. Finally, add the mapping file(s) for persistent classes to the configuration. Save this file as hibernate.cfg.xml into the src/main/resources directory Building with Maven We will now build the tutorial with Maven. You will need to have Maven installed; it is available from the Maven download page [ Maven will read the / pom.xml file we created earlier and know how to perform some basic project tasks. First, lets run the compile goal to make sure we can compile everything so far: [hibernatetutorial]$ mvn compile [INFO] Scanning for projects... [INFO] [INFO] Building First Hibernate Tutorial [INFO] task-segment: [compile] [INFO] [INFO] [resources:resources] [INFO] Using default encoding to copy filtered resources. [INFO] [compiler:compile] [INFO] Compiling 1 source file to /home/steve/projects/sandbox/hibernatetutorial/target/classes [INFO] [INFO] BUILD SUCCESSFUL [INFO] [INFO] Total time: 2 seconds [INFO] Finished at: Tue Jun 09 12:25:25 CDT 2009 [INFO] Final Memory: 5M/547M [INFO] Startup and helpers It is time to load and store some Event objects, but first you have to complete the setup with some infrastructure code. You have to startup Hibernate by building a global org.hibernate.sessionfactory object and storing it somewhere for easy access in application code. A org.hibernate.sessionfactory is used to obtain org.hibernate.session instances. A org.hibernate.session represents a single-threaded unit of work. The org.hibernate.sessionfactory is a thread-safe global object that is instantiated once. We will create a HibernateUtil helper class that takes care of startup and makes accessing the org.hibernate.sessionfactory more convenient. package org.hibernate.tutorial.util; import org.hibernate.sessionfactory; import org.hibernate.cfg.configuration; 9

22 Chapter 1. Tutorial public class HibernateUtil { private static final SessionFactory sessionfactory = buildsessionfactory(); private static SessionFactory buildsessionfactory() { try { // Create the SessionFactory from hibernate.cfg.xml return new Configuration().configure().buildSessionFactory(); catch (Throwable ex) { // Make sure you log the exception, as it might be swallowed System.err.println("Initial SessionFactory creation failed." + ex); throw new ExceptionInInitializerError(ex); public static SessionFactory getsessionfactory() { return sessionfactory; Save this code as src/main/java/org/hibernate/tutorial/util/hibernateutil.java This class not only produces the global org.hibernate.sessionfactory reference in its static initializer; it also hides the fact that it uses a static singleton. We might just as well have looked up the org.hibernate.sessionfactory reference from JNDI in an application server or any other location for that matter. If you give the org.hibernate.sessionfactory a name in your configuration, Hibernate will try to bind it to JNDI under that name after it has been built. Another, better option is to use a JMX deployment and let the JMX-capable container instantiate and bind a HibernateService to JNDI. Such advanced options are discussed later. You now need to configure a logging system. Hibernate uses commons logging and provides two choices: Log4j and JDK 1.4 logging. Most developers prefer Log4j: copy log4j.properties from the Hibernate distribution in the etc/ directory to your src directory, next to hibernate.cfg.xml. If you prefer to have more verbose output than that provided in the example configuration, you can change the settings. By default, only the Hibernate startup message is shown on stdout. The tutorial infrastructure is complete and you are now ready to do some real work with Hibernate Loading and storing objects We are now ready to start doing some real work with Hibernate. Let's start by writing an EventManager class with a main() method: package org.hibernate.tutorial; import org.hibernate.session; 10

23 Loading and storing objects import java.util.*; import org.hibernate.tutorial.domain.event; import org.hibernate.tutorial.util.hibernateutil; public class EventManager { public static void main(string[] args) { EventManager mgr = new EventManager(); if (args[0].equals("store")) { mgr.createandstoreevent("my Event", new Date()); HibernateUtil.getSessionFactory().close(); private void createandstoreevent(string title, Date thedate) { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); session.begintransaction(); Event theevent = new Event(); theevent.settitle(title); theevent.setdate(thedate); session.save(theevent); session.gettransaction().commit(); In createandstoreevent() we created a new Event object and handed it over to Hibernate. At that point, Hibernate takes care of the SQL and executes an INSERT on the database. A org.hibernate.session is designed to represent a single unit of work (a single atomic piece of work to be performed). For now we will keep things simple and assume a one-to-one granularity between a Hibernate org.hibernate.session and a database transaction. To shield our code from the actual underlying transaction system we use the Hibernate org.hibernate.transaction API. In this particular case we are using JDBC-based transactional semantics, but it could also run with JTA. What does sessionfactory.getcurrentsession() do? First, you can call it as many times and anywhere you like once you get hold of your org.hibernate.sessionfactory. The getcurrentsession() method always returns the "current" unit of work. Remember that we switched the configuration option for this mechanism to "thread" in our src/main/resources/ hibernate.cfg.xml? Due to that setting, the context of a current unit of work is bound to the current Java thread that executes the application. Important Hibernate offers three methods of current session tracking. The "thread" based method is not intended for production use; it is merely useful for prototyping and 11

24 Chapter 1. Tutorial tutorials such as this one. Current session tracking is discussed in more detail later on. A org.hibernate.session begins when the first call to getcurrentsession() is made for the current thread. It is then bound by Hibernate to the current thread. When the transaction ends, either through commit or rollback, Hibernate automatically unbinds the org.hibernate.session from the thread and closes it for you. If you call getcurrentsession() again, you get a new org.hibernate.session and can start a new unit of work. Related to the unit of work scope, should the Hibernate org.hibernate.session be used to execute one or several database operations? The above example uses one org.hibernate.session for one operation. However this is pure coincidence; the example is just not complex enough to show any other approach. The scope of a Hibernate org.hibernate.session is flexible but you should never design your application to use a new Hibernate org.hibernate.session for every database operation. Even though it is used in the following examples, consider session-per-operation an anti-pattern. A real web application is shown later in the tutorial which will help illustrate this. See Chapter 13, Transactions and Concurrency for more information about transaction handling and demarcation. The previous example also skipped any error handling and rollback. To run this, we will make use of the Maven exec plugin to call our class with the necessary classpath setup: mvn exec:java - Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="store" Note You may need to perform mvn compile first. You should see Hibernate starting up and, depending on your configuration, lots of log output. Towards the end, the following line will be displayed: [java] Hibernate: insert into EVENTS (EVENT_DATE, title, EVENT_ID) values (?,?,?) This is the INSERT executed by Hibernate. To list stored events an option is added to the main method: if (args[0].equals("store")) { mgr.createandstoreevent("my Event", new Date()); else if (args[0].equals("list")) { List events = mgr.listevents(); for (int i = 0; i < events.size(); i++) { Event theevent = (Event) events.get(i); System.out.println( "Event: " + theevent.gettitle() + " Time: " + theevent.getdate() 12

25 Part 2 - Mapping associations ); A new listevents() method is also added: private List listevents() { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); session.begintransaction(); List result = session.createquery("from Event").list(); session.gettransaction().commit(); return result; Here, we are using a Hibernate Query Language (HQL) query to load all existing Event objects from the database. Hibernate will generate the appropriate SQL, send it to the database and populate Event objects with the data. You can create more complex queries with HQL. See Chapter 16, HQL: The Hibernate Query Language for more information. Now we can call our new functionality, again using the Maven exec plugin: mvn exec:java - Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="list" 1.2. Part 2 - Mapping associations So far we have mapped a single persistent entity class to a table in isolation. Let's expand on that a bit and add some class associations. We will add people to the application and store a list of events in which they participate Mapping the Person class The first cut of the Person class looks like this: package org.hibernate.tutorial.domain; public class Person { private Long id; private int age; private String firstname; private String lastname; public Person() { // Accessor methods for all properties, private setter for 'id' Save this to a file named src/main/java/org/hibernate/tutorial/domain/person.java 13

26 Chapter 1. Tutorial Next, create the new mapping file as src/main/resources/org/hibernate/tutorial/domain/ Person.hbm.xml <hibernate-mapping package="org.hibernate.tutorial.domain"> <class name="person" table="person"> <id name="id" column="person_id"> <generator class="native"/> </id> <property name="age"/> <property name="firstname"/> <property name="lastname"/> </class> </hibernate-mapping> Finally, add the new mapping to Hibernate's configuration: <mapping resource="org/hibernate/tutorial/domain/event.hbm.xml"/> <mapping resource="org/hibernate/tutorial/domain/person.hbm.xml"/> Create an association between these two entities. Persons can participate in events, and events have participants. The design questions you have to deal with are: directionality, multiplicity, and collection behavior A unidirectional Set-based association By adding a collection of events to the Person class, you can easily navigate to the events for a particular person, without executing an explicit query - by calling Person#getEvents. Multi-valued associations are represented in Hibernate by one of the Java Collection Framework contracts; here we choose a java.util.set because the collection will not contain duplicate elements and the ordering is not relevant to our examples: public class Person { private Set events = new HashSet(); public Set getevents() { return events; public void setevents(set events) { this.events = events; 14

27 Working the association Before mapping this association, let's consider the other side. We could just keep this unidirectional or create another collection on the Event, if we wanted to be able to navigate it from both directions. This is not necessary, from a functional perspective. You can always execute an explicit query to retrieve the participants for a particular event. This is a design choice left to you, but what is clear from this discussion is the multiplicity of the association: "many" valued on both sides is called a many-to-many association. Hence, we use Hibernate's many-to-many mapping: <class name="person" table="person"> <id name="id" column="person_id"> <generator class="native"/> </id> <property name="age"/> <property name="firstname"/> <property name="lastname"/> <set name="events" table="person_event"> <key column="person_id"/> <many-to-many column="event_id" class="event"/> </set> </class> Hibernate supports a broad range of collection mappings, a set being most common. For a manyto-many association, or n:m entity relationship, an association table is required. Each row in this table represents a link between a person and an event. The table name is decalred using the table attribute of the set element. The identifier column name in the association, for the person side, is defined with the key element, the column name for the event's side with the column attribute of the many-to-many. You also have to tell Hibernate the class of the objects in your collection (the class on the other side of the collection of references). The database schema for this mapping is therefore: EVENTS PERSON_EVENT PERSON *EVENT_ID <--> *EVENT_ID EVENT_DATE *PERSON_ID <--> *PERSON_ID TITLE AGE FIRSTNAME LASTNAME Working the association Now we will bring some people and events together in a new method in EventManager: 15

28 Chapter 1. Tutorial private void addpersontoevent(long personid, Long eventid) { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); session.begintransaction(); Person aperson = (Person) session.load(person.class, personid); Event anevent = (Event) session.load(event.class, eventid); aperson.getevents().add(anevent); session.gettransaction().commit(); After loading a Person and an Event, simply modify the collection using the normal collection methods. There is no explicit call to update() or save(); Hibernate automatically detects that the collection has been modified and needs to be updated. This is called automatic dirty checking. You can also try it by modifying the name or the date property of any of your objects. As long as they are in persistent state, that is, bound to a particular Hibernate org.hibernate.session, Hibernate monitors any changes and executes SQL in a write-behind fashion. The process of synchronizing the memory state with the database, usually only at the end of a unit of work, is called flushing. In our code, the unit of work ends with a commit, or rollback, of the database transaction. You can load person and event in different units of work. Or you can modify an object outside of a org.hibernate.session, when it is not in persistent state (if it was persistent before, this state is called detached). You can even modify a collection when it is detached: private void addpersontoevent(long personid, Long eventid) { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); session.begintransaction(); Person aperson = (Person) session.createquery("select p from Person p left join fetch p.events where p.id = :pid").setparameter("pid", personid).uniqueresult(); // Eager fetch the collection so we can use it detached Event anevent = (Event) session.load(event.class, eventid); session.gettransaction().commit(); // End of first unit of work aperson.getevents().add(anevent); // aperson (and its collection) is detached // Begin second unit of work Session session2 = HibernateUtil.getSessionFactory().getCurrentSession(); session2.begintransaction(); session2.update(aperson); // Reattachment of aperson session2.gettransaction().commit(); 16

29 Collection of values The call to update makes a detached object persistent again by binding it to a new unit of work, so any modifications you made to it while detached can be saved to the database. This includes any modifications (additions/deletions) you made to a collection of that entity object. This is not much use in our example, but it is an important concept you can incorporate into your own application. Complete this exercise by adding a new action to the main method of the EventManager and call it from the command line. If you need the identifiers of a person and an event - the save() method returns it (you might have to modify some of the previous methods to return that identifier): else if (args[0].equals("addpersontoevent")) { Long eventid = mgr.createandstoreevent("my Event", new Date()); Long personid = mgr.createandstoreperson("foo", "Bar"); mgr.addpersontoevent(personid, eventid); System.out.println("Added person " + personid + " to event " + eventid); This is an example of an association between two equally important classes : two entities. As mentioned earlier, there are other classes and types in a typical model, usually "less important". Some you have already seen, like an int or a java.lang.string. We call these classes value types, and their instances depend on a particular entity. Instances of these types do not have their own identity, nor are they shared between entities. Two persons do not reference the same firstname object, even if they have the same first name. Value types cannot only be found in the JDK, but you can also write dependent classes yourself such as an Address or MonetaryAmount class. In fact, in a Hibernate application all JDK classes are considered value types. You can also design a collection of value types. This is conceptually different from a collection of references to other entities, but looks almost the same in Java Collection of values Let's add a collection of addresses to the Person entity. This will be represented as a java.util.set of java.lang.string instances: private Set addresses = new HashSet(); public Set get addresses() { return addresses; public void set addresses(set addresses) { this. addresses = addresses; The mapping of this Set is as follows: 17

30 Chapter 1. Tutorial <set name=" addresses" table="person_ _addr"> <key column="person_id"/> <element type="string" column=" _addr"/> </set> The difference compared with the earlier mapping is the use of the element part which tells Hibernate that the collection does not contain references to another entity, but is rather a collection whose elements are values types, here specifically of type string. The lowercase name tells you it is a Hibernate mapping type/converter. Again the table attribute of the set element determines the table name for the collection. The key element defines the foreign-key column name in the collection table. The column attribute in the element element defines the column name where the address values will actually be stored. Here is the updated schema: EVENTS PERSON_EVENT PERSON PERSON_ _ADDR *EVENT_ID <--> *EVENT_ID EVENT_DATE *PERSON_ID <--> *PERSON_ID <--> *PERSON_ID TITLE AGE * _ADDR FIRSTNAME LASTNAME You can see that the primary key of the collection table is in fact a composite key that uses both columns. This also implies that there cannot be duplicate addresses per person, which is exactly the semantics we need for a set in Java. You can now try to add elements to this collection, just like we did before by linking persons and events. It is the same code in Java: private void add toperson(long personid, String address) { Session session = HibernateUtil.getSessionFactory().getCurrentSession(); session.begintransaction(); Person aperson = (Person) session.load(person.class, personid); // adding to the address collection might trigger a lazy load of the collection aperson.get addresses().add( address); session.gettransaction().commit(); 18

31 Bi-directional associations This time we did not use a fetch query to initialize the collection. Monitor the SQL log and try to optimize this with an eager fetch Bi-directional associations Next you will map a bi-directional association. You will make the association between person and event work from both sides in Java. The database schema does not change, so you will still have many-to-many multiplicity. Note A relational database is more flexible than a network programming language, in that it does not need a navigation direction; data can be viewed and retrieved in any possible way. First, add a collection of participants to the Event class: private Set participants = new HashSet(); public Set getparticipants() { return participants; public void setparticipants(set participants) { this.participants = participants; Now map this side of the association in Event.hbm.xml. <set name="participants" table="person_event" inverse="true"> <key column="event_id"/> <many-to-many column="person_id" class="person"/> </set> These are normal set mappings in both mapping documents. Notice that the column names in key and many-to-many swap in both mapping documents. The most important addition here is the inverse="true" attribute in the set element of the Event's collection mapping. What this means is that Hibernate should take the other side, the Person class, when it needs to find out information about the link between the two. This will be a lot easier to understand once you see how the bi-directional link between our two entities is created Working bi-directional links First, keep in mind that Hibernate does not affect normal Java semantics. How did we create a link between a Person and an Event in the unidirectional example? You add an instance of 19

32 Chapter 1. Tutorial Event to the collection of event references, of an instance of Person. If you want to make this link bi-directional, you have to do the same on the other side by adding a Person reference to the collection in an Event. This process of "setting the link on both sides" is absolutely necessary with bi-directional links. Many developers program defensively and create link management methods to correctly set both sides (for example, in Person): protected Set getevents() { return events; protected void setevents(set events) { this.events = events; public void addtoevent(event event) { this.getevents().add(event); event.getparticipants().add(this); public void removefromevent(event event) { this.getevents().remove(event); event.getparticipants().remove(this); The get and set methods for the collection are now protected. This allows classes in the same package and subclasses to still access the methods, but prevents everybody else from altering the collections directly. Repeat the steps for the collection on the other side. What about the inverse mapping attribute? For you, and for Java, a bi-directional link is simply a matter of setting the references on both sides correctly. Hibernate, however, does not have enough information to correctly arrange SQL INSERT and UPDATE statements (to avoid constraint violations). Making one side of the association inverse tells Hibernate to consider it a mirror of the other side. That is all that is necessary for Hibernate to resolve any issues that arise when transforming a directional navigation model to a SQL database schema. The rules are straightforward: all bi-directional associations need one side as inverse. In a one-to-many association it has to be the many-side, and in many-to-many association you can select either side Part 3 - The EventManager web application A Hibernate web application uses Session and Transaction almost like a standalone application. However, some common patterns are useful. You can now write an EventManagerServlet. This servlet can list all events stored in the database, and it provides an HTML form to enter new events Writing the basic servlet First we need create our basic processing servlet. Since our servlet only handles HTTP GET requests, we will only implement the doget() method: 20

33 Writing the basic servlet package org.hibernate.tutorial.web; // Imports public class EventManagerServlet extends HttpServlet { protected void doget( HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException { SimpleDateFormat dateformatter = new SimpleDateFormat( "dd.mm.yyyy" ); try { // Begin unit of work HibernateUtil.getSessionFactory().getCurrentSession().beginTransaction(); // Process request and render page... // End unit of work HibernateUtil.getSessionFactory().getCurrentSession().getTransaction().commit(); catch (Exception ex) { HibernateUtil.getSessionFactory().getCurrentSession().getTransaction().rollback(); if ( ServletException.class.isInstance( ex ) ) { throw ( ServletException ) ex; else { throw new ServletException( ex ); Save this servlet as src/main/java/org/hibernate/tutorial/web/ EventManagerServlet.java The pattern applied here is called session-per-request. When a request hits the servlet, a new Hibernate Session is opened through the first call to getcurrentsession() on the SessionFactory. A database transaction is then started. All data access occurs inside a transaction irrespective of whether the data is read or written. Do not use the auto-commit mode in applications. Do not use a new Hibernate Session for every database operation. Use one Hibernate Session that is scoped to the whole request. Use getcurrentsession(), so that it is automatically bound to the current Java thread. Next, the possible actions of the request are processed and the response HTML is rendered. We will get to that part soon. Finally, the unit of work ends when processing and rendering are complete. If any problems occurred during processing or rendering, an exception will be thrown and the database transaction rolled back. This completes the session-per-request pattern. Instead of the transaction 21

34 Chapter 1. Tutorial demarcation code in every servlet, you could also write a servlet filter. See the Hibernate website and Wiki for more information about this pattern called Open Session in View. You will need it as soon as you consider rendering your view in JSP, not in a servlet Processing and rendering Now you can implement the processing of the request and the rendering of the page. // Write HTML header PrintWriter out = response.getwriter(); out.println("<html><head><title>event Manager</title></head><body>"); // Handle actions if ( "store".equals(request.getparameter("action")) ) { String eventtitle = request.getparameter("eventtitle"); String eventdate = request.getparameter("eventdate"); if ( "".equals(eventtitle) "".equals(eventdate) ) { out.println("<b><i>please enter event title and date.</i></b>"); else { createandstoreevent(eventtitle, dateformatter.parse(eventdate)); out.println("<b><i>added event.</i></b>"); // Print page printeventform(out); listevents(out, dateformatter); // Write HTML footer out.println("</body></html>"); out.flush(); out.close(); This coding style, with a mix of Java and HTML, would not scale in a more complex applicationkeep in mind that we are only illustrating basic Hibernate concepts in this tutorial. The code prints an HTML header and a footer. Inside this page, an HTML form for event entry and a list of all events in the database are printed. The first method is trivial and only outputs HTML: private void printeventform(printwriter out) { out.println("<h2>add new event:</h2>"); out.println("<form>"); out.println("title: <input name='eventtitle' length='50'/><br/>"); out.println("date (e.g ): <input name='eventdate' length='10'/><br/>"); out.println("<input type='submit' name='action' value='store'/>"); out.println("</form>"); 22

35 Deploying and testing The listevents() method uses the Hibernate Session bound to the current thread to execute a query: private void listevents(printwriter out, SimpleDateFormat dateformatter) { List result = HibernateUtil.getSessionFactory().getCurrentSession().createCriteria(Event.class).list(); if (result.size() > 0) { out.println("<h2>events in database:</h2>"); out.println("<table border='1'>"); out.println("<tr>"); out.println("<th>event title</th>"); out.println("<th>event date</th>"); out.println("</tr>"); Iterator it = result.iterator(); while (it.hasnext()) { Event event = (Event) it.next(); out.println("<tr>"); out.println("<td>" + event.gettitle() + "</td>"); out.println("<td>" + dateformatter.format(event.getdate()) + "</td>"); out.println("</tr>"); out.println("</table>"); Finally, the store action is dispatched to the createandstoreevent() method, which also uses the Session of the current thread: protected void createandstoreevent(string title, Date thedate) { Event theevent = new Event(); theevent.settitle(title); theevent.setdate(thedate); HibernateUtil.getSessionFactory().getCurrentSession().save(theEvent); The servlet is now complete. A request to the servlet will be processed in a single Session and Transaction. As earlier in the standalone application, Hibernate can automatically bind these objects to the current thread of execution. This gives you the freedom to layer your code and access the SessionFactory in any way you like. Usually you would use a more sophisticated design and move the data access code into data access objects (the DAO pattern). See the Hibernate Wiki for more examples Deploying and testing To deploy this application for testing we must create a Web ARchive (WAR). First we must define the WAR descriptor as src/main/webapp/web-inf/web.xml 23

36 Chapter 1. Tutorial <?xml version="1.0" encoding="utf-8"?> <web-app version="2.4" xmlns=" xmlns:xsi=" xsi:schemalocation=" <servlet> <servlet-name>event Manager</servlet-name> <servlet-class>org.hibernate.tutorial.web.eventmanagerservlet</servlet-class> </servlet> <servlet-mapping> <servlet-name>event Manager</servlet-name> <url-pattern>/eventmanager</url-pattern> </servlet-mapping> </web-app> To build and deploy call mvn package in your project directory and copy the hibernatetutorial.war file into your Tomcat webapps directory. Note If you do not have Tomcat installed, download it from and follow the installation instructions. Our application requires no changes to the standard Tomcat configuration. Once deployed and Tomcat is running, access the application at hibernate-tutorial/eventmanager. Make sure you watch the Tomcat log to see Hibernate initialize when the first request hits your servlet (the static initializer in HibernateUtil is called) and to get the detailed output if any exceptions occurs Summary This tutorial covered the basics of writing a simple standalone Hibernate application and a small web application. More tutorials are available from the Hibernate website [ 24

37 Chapter 2. Architecture 2.1. Overview The diagram below provides a high-level view of the Hibernate architecture: Application Persistent Objects HIBERNATE hibernate. properties XML Mapping Database Unfortunately we cannot provide a detailed view of all possible runtime architectures. Hibernate is sufficiently flexible to be used in a number of ways in many, many architectures. We will, however, illustrate 2 specifically since they are extremes Minimal architecture The "minimal" architecture has the application manage its own JDBC connections and provide those connections to Hibernate; additionally the application manages transactions for itself. This approach uses a minimal subset of Hibernate APIs. 25

38 Chapter 2. Architecture Transient Objects Application Persistent Objects SessionFactory Session JDBC JNDI JTA Database Comprehensive architecture The "comprehensive" architecture abstracts the application away from the underlying JDBC/JTA APIs and allows Hibernate to manage the details. Transient Objects Application Persistent Objects SessionFactory Session Transaction TransactionFactory ConnectionProvider JNDI JDBC JTA Database 26

39 Basic APIs Basic APIs Here are quick discussions about some of the API objects depicted in the preceding diagrams (you will see them again in more detail in later chapters). SessionFactory (org.hibernate.sessionfactory) A thread-safe, immutable cache of compiled mappings for a single database. A factory for org.hibernate.session instances. A client of org.hibernate.connection.connectionprovider. Optionally maintains a second level cache of data that is reusable between transactions at a process or cluster level. Session (org.hibernate.session) A single-threaded, short-lived object representing a conversation between the application and the persistent store. Wraps a JDBC java.sql.connection. Factory for org.hibernate.transaction. Maintains a first level cache of persistent the application's persistent objects and collections; this cache is used when navigating the object graph or looking up objects by identifier. Persistent objects and collections Short-lived, single threaded objects containing persistent state and business function. These can be ordinary JavaBeans/POJOs. They are associated with exactly one org.hibernate.session. Once the org.hibernate.session is closed, they will be detached and free to use in any application layer (for example, directly as data transfer objects to and from presentation). Chapter 11, Working with objects discusses transient, persistent and detached object states. Transient and detached objects and collections Instances of persistent classes that are not currently associated with a org.hibernate.session. They may have been instantiated by the application and not yet persisted, or they may have been instantiated by a closed org.hibernate.session. Chapter 11, Working with objects discusses transient, persistent and detached object states. Transaction (org.hibernate.transaction) (Optional) A single-threaded, short-lived object used by the application to specify atomic units of work. It abstracts the application from the underlying JDBC, JTA or CORBA transaction. A org.hibernate.session might span several org.hibernate.transactions in some cases. However, transaction demarcation, either using the underlying API or org.hibernate.transaction, is never optional. ConnectionProvider (org.hibernate.connection.connectionprovider) (Optional) A factory for, and pool of, JDBC connections. It abstracts the application from underlying javax.sql.datasource or java.sql.drivermanager. It is not exposed to application, but it can be extended and/or implemented by the developer. TransactionFactory (org.hibernate.transactionfactory) (Optional) A factory for org.hibernate.transaction instances. It is not exposed to the application, but it can be extended and/or implemented by the developer. 27

40 Chapter 2. Architecture Extension Interfaces Hibernate offers a range of optional extension interfaces you can implement to customize the behavior of your persistence layer. See the API documentation for details JMX Integration JMX is the J2EE standard for the management of Java components. Hibernate can be managed via a JMX standard service. AN MBean implementation is provided in the distribution: org.hibernate.jmx.hibernateservice. Another feature available as a JMX service is runtime Hibernate statistics. See Section 3.4.6, Hibernate statistics for more information Contextual sessions Most applications using Hibernate need some form of "contextual" session, where a given session is in effect throughout the scope of a given context. However, across applications the definition of what constitutes a context is typically different; different contexts define different scopes to the notion of current. Applications using Hibernate prior to version 3.0 tended to utilize either home-grown ThreadLocal-based contextual sessions, helper classes such as HibernateUtil, or utilized third-party frameworks, such as Spring or Pico, which provided proxy/interception-based contextual sessions. Starting with version 3.0.1, Hibernate added the SessionFactory.getCurrentSession() method. Initially, this assumed usage of JTA transactions, where the JTA transaction defined both the scope and context of a current session. Given the maturity of the numerous stand-alone JTA TransactionManager implementations, most, if not all, applications should be using JTA transaction management, whether or not they are deployed into a J2EE container. Based on that, the JTA-based contextual sessions are all you need to use. However, as of version 3.1, the processing behind SessionFactory.getCurrentSession() is now pluggable. To that end, a new extension interface, org.hibernate.context.currentsessioncontext, and a new configuration parameter, hibernate.current_session_context_class, have been added to allow pluggability of the scope and context of defining current sessions. See the Javadocs for the org.hibernate.context.currentsessioncontext interface for a detailed discussion of its contract. It defines a single method, currentsession(), by which the implementation is responsible for tracking the current contextual session. Out-of-the-box, Hibernate comes with three implementations of this interface: org.hibernate.context.jtasessioncontext: current sessions are tracked and scoped by a JTA transaction. The processing here is exactly the same as in the older JTA-only approach. See the Javadocs for details. org.hibernate.context.threadlocalsessioncontext:current sessions are tracked by thread of execution. See the Javadocs for details. 28

41 Contextual sessions org.hibernate.context.managedsessioncontext: current sessions are tracked by thread of execution. However, you are responsible to bind and unbind a Session instance with static methods on this class: it does not open, flush, or close a Session. The first two implementations provide a "one session - one database transaction" programming model. This is also known and used as session-per-request. The beginning and end of a Hibernate session is defined by the duration of a database transaction. If you use programmatic transaction demarcation in plain JSE without JTA, you are advised to use the Hibernate Transaction API to hide the underlying transaction system from your code. If you use JTA, you can utilize the JTA interfaces to demarcate transactions. If you execute in an EJB container that supports CMT, transaction boundaries are defined declaratively and you do not need any transaction or session demarcation operations in your code. Refer to Chapter 13, Transactions and Concurrency for more information and code examples. The hibernate.current_session_context_class configuration parameter defines which org.hibernate.context.currentsessioncontext implementation should be used. For backwards compatibility, if this configuration parameter is not set but a org.hibernate.transaction.transactionmanagerlookup is configured, Hibernate will use the org.hibernate.context.jtasessioncontext. Typically, the value of this parameter would just name the implementation class to use. For the three out-of-the-box implementations, however, there are three corresponding short names: "jta", "thread", and "managed". 29

42 30

43 Chapter 3. Configuration Hibernate is designed to operate in many different environments and, as such, there is a broad range of configuration parameters. Fortunately, most have sensible default values and Hibernate is distributed with an example hibernate.properties file in etc/ that displays the various options. Simply put the example file in your classpath and customize it to suit your needs Programmatic configuration An instance of org.hibernate.cfg.configuration represents an entire set of mappings of an application's Java types to an SQL database. The org.hibernate.cfg.configuration is used to build an immutable org.hibernate.sessionfactory. The mappings are compiled from various XML mapping files. You can obtain a org.hibernate.cfg.configuration instance by instantiating it directly and specifying XML mapping documents. If the mapping files are in the classpath, use addresource(). For example: Configuration cfg = new Configuration().addResource("Item.hbm.xml").addResource("Bid.hbm.xml"); An alternative way is to specify the mapped class and allow Hibernate to find the mapping document for you: Configuration cfg = new Configuration().addClass(org.hibernate.auction.Item.class).addClass(org.hibernate.auction.Bid.class); Hibernate will then search for mapping files named /org/hibernate/auction/item.hbm.xml and /org/hibernate/auction/bid.hbm.xml in the classpath. This approach eliminates any hardcoded filenames. A org.hibernate.cfg.configuration also allows you to specify configuration properties. For example: Configuration cfg = new Configuration().addClass(org.hibernate.auction.Item.class).addClass(org.hibernate.auction.Bid.class).setProperty("hibernate.dialect", "org.hibernate.dialect.mysqlinnodbdialect").setproperty("hibernate.connection.datasource", "java:comp/env/jdbc/test").setproperty("hibernate.order_updates", "true"); 31

44 Chapter 3. Configuration This is not the only way to pass configuration properties to Hibernate. Some alternative options include: 1. Pass an instance of java.util.properties to Configuration.setProperties(). 2. Place a file named hibernate.properties in a root directory of the classpath. 3. Set System properties using java -Dproperty=value. 4. Include <property> elements in hibernate.cfg.xml (this is discussed later). If you want to get started quicklyhibernate.properties is the easiest approach. The org.hibernate.cfg.configuration is intended as a startup-time object that will be discarded once a SessionFactory is created Obtaining a SessionFactory When all mappings have been parsed by the org.hibernate.cfg.configuration, the application must obtain a factory for org.hibernate.session instances. This factory is intended to be shared by all application threads: SessionFactory sessions = cfg.buildsessionfactory(); Hibernate does allow your application to instantiate more than one org.hibernate.sessionfactory. This is useful if you are using more than one database JDBC connections It is advisable to have the org.hibernate.sessionfactory create and pool JDBC connections for you. If you take this approach, opening a org.hibernate.session is as simple as: Session session = sessions.opensession(); // open a new Session Once you start a task that requires access to the database, a JDBC connection will be obtained from the pool. Before you can do this, you first need to pass some JDBC connection properties to Hibernate. All Hibernate property names and semantics are defined on the class org.hibernate.cfg.environment. The most important settings for JDBC connection configuration are outlined below. Hibernate will obtain and pool connections using java.sql.drivermanager if you set the following properties: 32

45 JDBC connections Table 3.1. Hibernate JDBC Properties Property name hibernate.connection.driver_class hibernate.connection.url hibernate.connection.username hibernate.connection.password hibernate.connection.pool_size Purpose JDBC driver class JDBC URL database user database user password maximum number of pooled connections Hibernate's own connection pooling algorithm is, however, quite rudimentary. It is intended to help you get started and is not intended for use in a production system, or even for performance testing. You should use a third party pool for best performance and stability. Just replace the hibernate.connection.pool_size property with connection pool specific settings. This will turn off Hibernate's internal pool. For example, you might like to use c3p0. C3P0 is an open source JDBC connection pool distributed along with Hibernate in the lib directory. Hibernate will use its org.hibernate.connection.c3p0connectionprovider for connection pooling if you set hibernate.c3p0.* properties. If you would like to use Proxool, refer to the packaged hibernate.properties and the Hibernate web site for more information. The following is an example hibernate.properties file for c3p0: hibernate.connection.driver_class = org.postgresql.driver hibernate.connection.url = jdbc:postgresql://localhost/mydatabase hibernate.connection.username = myuser hibernate.connection.password = secret hibernate.c3p0.min_size=5 hibernate.c3p0.max_size=20 hibernate.c3p0.timeout=1800 hibernate.c3p0.max_statements=50 hibernate.dialect = org.hibernate.dialect.postgresqldialect For use inside an application server, you should almost always configure Hibernate to obtain connections from an application server javax.sql.datasource registered in JNDI. You will need to set at least one of the following properties: Table 3.2. Hibernate Datasource Properties Property name hibernate.connection.datasource hibernate.jndi.url hibernate.jndi.class hibernate.connection.username hibernate.connection.password Purpose datasource JNDI name URL of the JNDI provider (optional) class of the JNDI InitialContextFactory (optional) database user (optional) database user password (optional) 33

46 Chapter 3. Configuration Here is an example hibernate.properties file for an application server provided JNDI datasource: hibernate.connection.datasource = java:/comp/env/jdbc/test hibernate.transaction.factory_class = \ org.hibernate.transaction.jtatransactionfactory hibernate.transaction.manager_lookup_class = \ org.hibernate.transaction.jbosstransactionmanagerlookup hibernate.dialect = org.hibernate.dialect.postgresqldialect JDBC connections obtained from a JNDI datasource will automatically participate in the containermanaged transactions of the application server. Arbitrary connection properties can be given by prepending "hibernate.connection" to the connection property name. For example, you can specify a charset connection property using hibernate.connection.charset. You can define your own plugin strategy for obtaining JDBC connections by implementing the interface org.hibernate.connection.connectionprovider, and specifying your custom implementation via the hibernate.connection.provider_class property Optional configuration properties There are a number of other properties that control the behavior of Hibernate at runtime. All are optional and have reasonable default values. Warning Some of these properties are "system-level" only. System-level properties can be set only via java -Dproperty=value or hibernate.properties. They cannot be set by the other techniques described above. Table 3.3. Hibernate Configuration Properties Property name Purpose hibernate.dialect The classname of a Hibernate org.hibernate.dialect.dialect which allows Hibernate to generate SQL optimized for a particular relational database. e.g. full.classname.of.dialect In most cases Hibernate will actually be able to choose the correct org.hibernate.dialect.dialect 34

47 Optional configuration properties Property name Purpose implementation based on the JDBC metadata returned by the JDBC driver. hibernate.show_sql Write all SQL statements to console. This is an alternative to setting the log category org.hibernate.sql to debug. e.g. true false hibernate.format_sql Pretty print the SQL in the log and console. e.g. true false hibernate.default_schema Qualify unqualified table names with the given schema/tablespace in generated SQL. e.g. SCHEMA_NAME hibernate.default_catalog Qualifies unqualified table names with the given catalog in generated SQL. e.g. CATALOG_NAME hibernate.session_factory_name The org.hibernate.sessionfactory will be automatically bound to this name in JNDI after it has been created. e.g. jndi/composite/name hibernate.max_fetch_depth Sets a maximum "depth" for the outer join fetch tree for single-ended associations (one-to-one, many-to-one). A 0 disables default outer join fetching. e.g. recommended values between 0 and 3 hibernate.default_batch_fetch_size Sets a default size for Hibernate batch fetching of associations. e.g. recommended values 4, 8, 16 hibernate.default_entity_mode Sets a default mode for entity representation for all sessions opened from this SessionFactory dynamic-map, dom4j, pojo hibernate.order_updates Forces Hibernate to order SQL updates by the primary key value of the items being updated. This will result in fewer transaction deadlocks in highly concurrent systems. 35

48 Chapter 3. Configuration Property name Purpose e.g. true false hibernate.generate_statistics If enabled, Hibernate will collect statistics useful for performance tuning. e.g. true false hibernate.use_identifier_rollback If enabled, generated identifier properties will be reset to default values when objects are deleted. e.g. true false hibernate.use_sql_comments If turned on, Hibernate will generate comments inside the SQL, for easier debugging, defaults to false. e.g. true false hibernate.id.new_generator_mappings Setting is relevant when It indicates whether or not the new IdentifierGenerator implementations are used for javax.persistence.generationtype.auto, javax.persistence.generationtype.table and javax.persistence.generationtype.sequence. Default to false to keep backward compatibility. e.g. true false Note We recommend all new projects which make use of to to also set hibernate.id.new_generator_mappings=true as the new generators are more efficient and closer to the JPA 2 specification semantic. However they are not backward compatible with existing databases (if a sequence or a table is used for id generation). Table 3.4. Hibernate JDBC and Connection Properties Property name hibernate.jdbc.fetch_size Purpose A non-zero value determines the JDBC fetch size (calls Statement.setFetchSize()). 36

49 Optional configuration properties Property name hibernate.jdbc.batch_size Purpose A non-zero value enables use of JDBC2 batch updates by Hibernate. e.g. recommended values between 5 and 30 hibernate.jdbc.batch_versioned_data Set this property to true if your JDBC driver returns correct row counts from executebatch(). It is usually safe to turn this option on. Hibernate will then use batched DML for automatically versioned data. Defaults to false. e.g. true false hibernate.jdbc.factory_class Select a custom org.hibernate.jdbc.batcher. Most applications will not need this configuration property. e.g. classname.of.batcherfactory hibernate.jdbc.use_scrollable_resultset Enables use of JDBC2 scrollable resultsets by Hibernate. This property is only necessary when using user-supplied JDBC connections. Hibernate uses connection metadata otherwise. e.g. true false hibernate.jdbc.use_streams_for_binary Use streams when writing/reading binary or serializable types to/from JDBC. *systemlevel property* e.g. true false hibernate.jdbc.use_get_generated_keys Enables use of JDBC3 PreparedStatement.getGeneratedKeys() to retrieve natively generated keys after insert. Requires JDBC3+ driver and JRE1.4+, set to false if your driver has problems with the Hibernate identifier generators. By default, it tries to determine the driver capabilities using connection metadata. e.g. true false hibernate.connection.provider_class The classname of a custom org.hibernate.connection.connectionprovider 37

50 Chapter 3. Configuration Property name Purpose which provides JDBC connections to Hibernate. e.g. classname.of.connectionprovider hibernate.connection.isolation Sets the JDBC transaction isolation level. Check java.sql.connection for meaningful values, but note that most databases do not support all isolation levels and some define additional, non-standard isolations. e.g. 1, 2, 4, 8 hibernate.connection.autocommit Enables autocommit for JDBC pooled connections (it is not recommended). e.g. true false hibernate.connection.release_mode Specifies when Hibernate should release JDBC connections. By default, a JDBC connection is held until the session is explicitly closed or disconnected. For an application server JTA datasource, use after_statement to aggressively release connections after every JDBC call. For a non-jta connection, it often makes sense to release the connection at the end of each transaction, by using after_transaction. auto will choose after_statement for the JTA and CMT transaction strategies and after_transaction for the JDBC transaction strategy. e.g. auto (default) on_close after_transaction after_statement This setting only affects Sessions returned from SessionFactory.openSession. For Sessions obtained through SessionFactory.getCurrentSession, the CurrentSessionContext implementation configured for use controls the connection release mode for those Sessions. See Section 2.3, Contextual sessions hibernate.connection.<propertyname> Pass the JDBC property <propertyname> to DriverManager.getConnection(). 38

51 Optional configuration properties Property name hibernate.jndi.<propertyname> Purpose Pass the property <propertyname> to the JNDI InitialContextFactory. Table 3.5. Hibernate Cache Properties Property name hibernate.cache.provider_class Purpose The classname of a custom CacheProvider. e.g. classname.of.cacheprovider hibernate.cache.use_minimal_puts Optimizes second-level cache operation to minimize writes, at the cost of more frequent reads. This setting is most useful for clustered caches and, in Hibernate3, is enabled by default for clustered cache implementations. e.g. true false hibernate.cache.use_query_cache Enables the query cache. Individual queries still have to be set cachable. e.g. true false hibernate.cache.use_second_level_cache Can be used to completely disable the second level cache, which is enabled by default for classes which specify a <cache> mapping. e.g. true false hibernate.cache.query_cache_factory The classname of a custom QueryCache interface, defaults to the built-in StandardQueryCache. e.g. classname.of.querycache hibernate.cache.region_prefix A prefix to use for second-level cache region names. e.g. prefix hibernate.cache.use_structured_entries Forces Hibernate to store data in the secondlevel cache in a more human-friendly format. e.g. true false hibernate.cache.default_cache_concurrency_strategy Setting used to give the name of the default org.hibernate.annotations.cacheconcurrencystrategy to use when is is used to override this default. 39

52 Chapter 3. Configuration Table 3.6. Hibernate Transaction Properties Property name hibernate.transaction.factory_class Purpose The classname of a TransactionFactory to use with Hibernate Transaction API (defaults to JDBCTransactionFactory). e.g. classname.of.transactionfactory jta.usertransaction A JNDI name used by JTATransactionFactory to obtain the JTA UserTransaction from the application server. e.g. jndi/composite/name hibernate.transaction.manager_lookup_class The classname of a TransactionManagerLookup. It is required when JVM-level caching is enabled or when using hilo generator in a JTA environment. e.g. classname.of.transactionmanagerlookup hibernate.transaction.flush_before_completion If enabled, the session will be automatically flushed during the before completion phase of the transaction. Built-in and automatic session context management is preferred, see Section 2.3, Contextual sessions. e.g. true false hibernate.transaction.auto_close_sessionif enabled, the session will be automatically closed during the after completion phase of the transaction. Built-in and automatic session context management is preferred, see Section 2.3, Contextual sessions. e.g. true false Table 3.7. Miscellaneous Properties Property name Purpose hibernate.current_session_context_class Supply a custom strategy for the scoping of the "current" Session. See Section 2.3, Contextual sessions for more information about the built-in strategies. e.g. jta thread managed custom.class hibernate.query.factory_class Chooses the HQL parser implementation. 40

53 Optional configuration properties Property name hibernate.query.substitutions Purpose e.g. org.hibernate.hql.ast.astquerytranslatorfactory or org.hibernate.hql.classic.classicquerytranslatorfactory Is used to map from tokens in Hibernate queries to SQL tokens (tokens might be function or literal names, for example). e.g. hqlfunction=sqlfunc hqlliteral=sql_literal, hibernate.hbm2ddl.auto Automatically validates or exports schema DDL to the database when the SessionFactory is created. With createdrop, the database schema will be dropped when the SessionFactory is closed explicitly. e.g. validate update create createdrop hibernate.hbm2ddl.import_file Comma-separated names of the optional files containing SQL DML statements executed during the SessionFactory creation. This is useful for testing or demoing: by adding INSERT statements for example you can populate your database with a minimal set of data when it is deployed. File order matters, the statements of a give file are executed before the statements of the following files. These statements are only executed if the schema is created ie if hibernate.hbm2ddl.auto is set to create or create-drop. e.g. /humans.sql,/dogs.sql hibernate.bytecode.use_reflection_optimizer Enables the use of bytecode manipulation instead of runtime reflection. This is a System-level property and cannot be set in hibernate.cfg.xml. Reflection can sometimes be useful when troubleshooting. Hibernate always requires either CGLIB or javassist even if you turn off the optimizer. e.g. true false 41

54 Chapter 3. Configuration Property name hibernate.bytecode.provider Purpose Both javassist or cglib can be used as byte manipulation engines; the default is javassist. e.g. javassist cglib SQL Dialects Always set the hibernate.dialect property to the correct org.hibernate.dialect.dialect subclass for your database. If you specify a dialect, Hibernate will use sensible defaults for some of the other properties listed above. This means that you will not have to specify them manually. Table 3.8. Hibernate SQL Dialects (hibernate.dialect) RDBMS DB2 DB2 AS/400 DB2 OS390 PostgreSQL MySQL5 MySQL5 with InnoDB MySQL with MyISAM Oracle (any version) Oracle 9i Oracle 10g Oracle 11g Sybase Sybase Anywhere Microsoft SQL Server 2000 Microsoft SQL Server 2005 Microsoft SQL Server 2008 SAP DB Informix HypersonicSQL H2 Database Ingres Progress Mckoi SQL Dialect org.hibernate.dialect.db2dialect org.hibernate.dialect.db2400dialect org.hibernate.dialect.db2390dialect org.hibernate.dialect.postgresqldialect org.hibernate.dialect.mysql5dialect org.hibernate.dialect.mysql5innodbdialect org.hibernate.dialect.mysqlmyisamdialect org.hibernate.dialect.oracledialect org.hibernate.dialect.oracle9idialect org.hibernate.dialect.oracle10gdialect org.hibernate.dialect.oracle10gdialect org.hibernate.dialect.sybasease15dialect org.hibernate.dialect.sybaseanywheredialect org.hibernate.dialect.sqlserverdialect org.hibernate.dialect.sqlserver2005dialect org.hibernate.dialect.sqlserver2008dialect org.hibernate.dialect.sapdbdialect org.hibernate.dialect.informixdialect org.hibernate.dialect.hsqldialect org.hibernate.dialect.h2dialect org.hibernate.dialect.ingresdialect org.hibernate.dialect.progressdialect org.hibernate.dialect.mckoidialect 42

55 Outer Join Fetching RDBMS Interbase Pointbase FrontBase Firebird Dialect org.hibernate.dialect.interbasedialect org.hibernate.dialect.pointbasedialect org.hibernate.dialect.frontbasedialect org.hibernate.dialect.firebirddialect Outer Join Fetching If your database supports ANSI, Oracle or Sybase style outer joins, outer join fetching will often increase performance by limiting the number of round trips to and from the database. This is, however, at the cost of possibly more work performed by the database itself. Outer join fetching allows a whole graph of objects connected by many-to-one, one-to-many, many-to-many and oneto-one associations to be retrieved in a single SQL SELECT. Outer join fetching can be disabled globally by setting the property hibernate.max_fetch_depth to 0. A setting of 1 or higher enables outer join fetching for one-to-one and many-to-one associations that have been mapped with fetch="join". See Section 21.1, Fetching strategies for more information Binary Streams Oracle limits the size of byte arrays that can be passed to and/or from its JDBC driver. If you wish to use large instances of binary or serializable type, you should enable hibernate.jdbc.use_streams_for_binary. This is a system-level setting only Second-level and query cache The properties prefixed by hibernate.cache allow you to use a process or cluster scoped secondlevel cache system with Hibernate. See the Section 21.2, The Second Level Cache for more information Query Language Substitution You can define new Hibernate query tokens using hibernate.query.substitutions. For example: hibernate.query.substitutions true=1, false=0 This would cause the tokens true and false to be translated to integer literals in the generated SQL. hibernate.query.substitutions tolowercase=lower 43

56 Chapter 3. Configuration This would allow you to rename the SQL LOWER function Hibernate statistics If you enable hibernate.generate_statistics, Hibernate exposes a number of metrics that are useful when tuning a running system via SessionFactory.getStatistics(). Hibernate can even be configured to expose these statistics via JMX. Read the Javadoc of the interfaces in org.hibernate.stats for more information Logging Hibernate utilizes Simple Logging Facade for Java [ (SLF4J) in order to log various system events. SLF4J can direct your logging output to several logging frameworks (NOP, Simple, log4j version 1.2, JDK 1.4 logging, JCL or logback) depending on your chosen binding. In order to setup logging you will need slf4j-api.jar in your classpath together with the jar file for your preferred binding - slf4j-log4j12.jar in the case of Log4J. See the SLF4J documentation [ for more detail. To use Log4j you will also need to place a log4j.properties file in your classpath. An example properties file is distributed with Hibernate in the src/ directory. It is recommended that you familiarize yourself with Hibernate's log messages. A lot of work has been put into making the Hibernate log as detailed as possible, without making it unreadable. It is an essential troubleshooting device. The most interesting log categories are the following: Table 3.9. Hibernate Log Categories Category org.hibernate.sql org.hibernate.type Function Log all SQL DML statements as they are executed Log all JDBC parameters org.hibernate.tool.hbm2ddl Log all SQL DDL statements as they are executed org.hibernate.pretty org.hibernate.cache Log the state of all entities (max 20 entities) associated with the session at flush time Log all second-level cache activity org.hibernate.transaction Log transaction related activity org.hibernate.jdbc Log all JDBC resource acquisition org.hibernate.hql.ast.ast Log HQL and SQL ASTs during query parsing org.hibernate.secure org.hibernate Log all JAAS authorization requests Log everything. This is a lot of information but it is useful for troubleshooting When developing applications with Hibernate, you should almost always work with debug enabled for the category org.hibernate.sql, or, alternatively, the property hibernate.show_sql enabled. 44

57 Implementing a NamingStrategy 3.6. Implementing a NamingStrategy The interface org.hibernate.cfg.namingstrategy allows you to specify a "naming standard" for database objects and schema elements. You can provide rules for automatically generating database identifiers from Java identifiers or for processing "logical" column and table names given in the mapping file into "physical" table and column names. This feature helps reduce the verbosity of the mapping document, eliminating repetitive noise (TBL_ prefixes, for example). The default strategy used by Hibernate is quite minimal. You can specify a different strategy by calling Configuration.setNamingStrategy() before adding mappings: SessionFactory sf = new Configuration().setNamingStrategy(ImprovedNamingStrategy.INSTANCE).addFile("Item.hbm.xml").addFile("Bid.hbm.xml").buildSessionFactory(); org.hibernate.cfg.improvednamingstrategy is a built-in strategy that might be a useful starting point for some applications Implementing a PersisterClassProvider You can configure the persister implementation used to persist your entities and collections: by default, Hibernate uses persisters that make sense in a relational model and follow Java Persistence's specification you can define a PersisterClassProvider implementation that provides the persister class used of a given entity or collection finally, you can override them on a per entity and collection basis in the mapping or its XML equivalent The latter in the list the higher in priority. You can pass the PersisterClassProvider instance to the Configuration object. SessionFactory sf = new Configuration().setPersisterClassProvider(customPersisterClassProvider).addAnnotatedClass(Order.class).buildSessionFactory(); 45

58 Chapter 3. Configuration The persister class provider methods, when returning a non null persister class, override the default Hibernate persisters. The entity name or the collection role are passed to the methods. It is a nice way to centralize the overriding logic of the persisters instead of spreading them on each entity or collection mapping XML configuration file An alternative approach to configuration is to specify a full configuration in a file named hibernate.cfg.xml. This file can be used as a replacement for the hibernate.properties file or, if both are present, to override properties. The XML configuration file is by default expected to be in the root of your CLASSPATH. Here is an example: <?xml version='1.0' encoding='utf-8'?> <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD//EN" " <hibernate-configuration> <!-- a SessionFactory instance listed as /jndi/name --> <session-factory name="java:hibernate/sessionfactory"> <!-- properties --> <property name="connection.datasource">java:/comp/env/jdbc/mydb</property> <property name="dialect">org.hibernate.dialect.mysqldialect</property> <property name="show_sql">false</property> <property name="transaction.factory_class"> org.hibernate.transaction.jtatransactionfactory </property> <property name="jta.usertransaction">java:comp/usertransaction</property> <!-- mapping files --> <mapping resource="org/hibernate/auction/item.hbm.xml"/> <mapping resource="org/hibernate/auction/bid.hbm.xml"/> <!-- cache settings --> <class-cache class="org.hibernate.auction.item" usage="read-write"/> <class-cache class="org.hibernate.auction.bid" usage="read-only"/> <collection-cache collection="org.hibernate.auction.item.bids" usage="read-write"/> </session-factory> </hibernate-configuration> The advantage of this approach is the externalization of the mapping file names to configuration. The hibernate.cfg.xml is also more convenient once you have to tune the Hibernate cache. It is your choice to use either hibernate.properties or hibernate.cfg.xml. Both are equivalent, except for the above mentioned benefits of using the XML syntax. 46

59 Java EE Application Server integration With the XML configuration, starting Hibernate is then as simple as: SessionFactory sf = new Configuration().configure().buildSessionFactory(); You can select a different XML configuration file using: SessionFactory sf = new Configuration().configure("catdb.cfg.xml").buildSessionFactory(); 3.9. Java EE Application Server integration Hibernate has the following integration points for J2EE infrastructure: Container-managed datasources: Hibernate can use JDBC connections managed by the container and provided through JNDI. Usually, a JTA compatible TransactionManager and a ResourceManager take care of transaction management (CMT), especially distributed transaction handling across several datasources. You can also demarcate transaction boundaries programmatically (BMT), or you might want to use the optional Hibernate Transaction API for this to keep your code portable. Automatic JNDI binding: Hibernate can bind its SessionFactory to JNDI after startup. JTA Session binding: the Hibernate Session can be automatically bound to the scope of JTA transactions. Simply lookup the SessionFactory from JNDI and get the current Session. Let Hibernate manage flushing and closing the Session when your JTA transaction completes. Transaction demarcation is either declarative (CMT) or programmatic (BMT/UserTransaction). JMX deployment: if you have a JMX capable application server (e.g. JBoss AS), you can choose to deploy Hibernate as a managed MBean. This saves you the one line startup code to build your SessionFactory from a Configuration. The container will startup your HibernateService and also take care of service dependencies (datasource has to be available before Hibernate starts, etc). Depending on your environment, you might have to set the configuration option hibernate.connection.aggressive_release to true if your application server shows "connection containment" exceptions Transaction strategy configuration The Hibernate Session API is independent of any transaction demarcation system in your architecture. If you let Hibernate use JDBC directly through a connection pool, you can begin and end your transactions by calling the JDBC API. If you run in a J2EE application server, you 47

60 Chapter 3. Configuration might want to use bean-managed transactions and call the JTA API and UserTransaction when needed. To keep your code portable between these two (and other) environments we recommend the optional Hibernate Transaction API, which wraps and hides the underlying system. You have to specify a factory class for Transaction instances by setting the Hibernate configuration property hibernate.transaction.factory_class. There are three standard, or built-in, choices: org.hibernate.transaction.jdbctransactionfactory delegates to database (JDBC) transactions (default) org.hibernate.transaction.jtatransactionfactory delegates to container-managed transactions if an existing transaction is underway in this context (for example, EJB session bean method). Otherwise, a new transaction is started and bean-managed transactions are used. org.hibernate.transaction.cmttransactionfactory delegates to container-managed JTA transactions You can also define your own transaction strategies (for a CORBA transaction service, for example). Some features in Hibernate (i.e., the second level cache, Contextual Sessions with JTA, etc.) require access to the JTA TransactionManager in a managed environment. In an application server, since J2EE does not standardize a single mechanism, you have to specify how Hibernate should obtain a reference to the TransactionManager: Table JTA TransactionManagers Transaction Factory org.hibernate.transaction.jbosstransactionmanagerlookup org.hibernate.transaction.weblogictransactionmanagerlookup Application Server JBoss AS Weblogic org.hibernate.transaction.webspheretransactionmanagerlookup WebSphere org.hibernate.transaction.websphereextendedjtatransactionlookup WebSphere 6 org.hibernate.transaction.oriontransactionmanagerlookup org.hibernate.transaction.resintransactionmanagerlookup org.hibernate.transaction.jotmtransactionmanagerlookup org.hibernate.transaction.jonastransactionmanagerlookup org.hibernate.transaction.jrun4transactionmanagerlookup org.hibernate.transaction.bestransactionmanagerlookup Orion Resin JOTM JOnAS JRun4 Borland ES org.hibernate.transaction.jbosstsstandalonetransactionmanagerlookup TS used standalone (ie. outside 48

61 JNDI-bound SessionFactory Transaction Factory Application Server JBoss AS and a JNDI environment generally). Known to work for org.jboss.jbossts:jbossjta: final JNDI-bound SessionFactory A JNDI-bound Hibernate SessionFactory can simplify the lookup function of the factory and create new Sessions. This is not, however, related to a JNDI bound Datasource; both simply use the same registry. If you wish to have the SessionFactory bound to a JNDI namespace, specify a name (e.g. java:hibernate/sessionfactory) using the property hibernate.session_factory_name. If this property is omitted, the SessionFactory will not be bound to JNDI. This is especially useful in environments with a read-only JNDI default implementation (in Tomcat, for example). When binding the SessionFactory to JNDI, Hibernate will use the values of hibernate.jndi.url, hibernate.jndi.class to instantiate an initial context. If they are not specified, the default InitialContext will be used. Hibernate will automatically place the SessionFactory in JNDI after you call cfg.buildsessionfactory(). This means you will have this call in some startup code, or utility class in your application, unless you use JMX deployment with the HibernateService (this is discussed later in greater detail). If you use a JNDI SessionFactory, an EJB or any other class, you can obtain the SessionFactory using a JNDI lookup. It is recommended that you bind the SessionFactory to JNDI in a managed environment and use a static singleton otherwise. To shield your application code from these details, we also recommend to hide the actual lookup code for a SessionFactory in a helper class, such as HibernateUtil.getSessionFactory(). Note that such a class is also a convenient way to startup Hibernate see chapter Current Session context management with JTA The easiest way to handle Sessions and transactions is Hibernate's automatic "current" Session management. For a discussion of contextual sessions see Section 2.3, Contextual sessions. Using the "jta" session context, if there is no Hibernate Session associated with the current JTA transaction, one will be started and associated with that JTA transaction the first time you call sessionfactory.getcurrentsession(). The Sessions retrieved via getcurrentsession() in the "jta" context are set to automatically flush before the transaction completes, close after the transaction completes, and aggressively release JDBC connections after each statement. This allows the Sessions to be managed by the life cycle of the JTA transaction to which it is associated, keeping user code clean of such management concerns. Your code can either 49

62 Chapter 3. Configuration use JTA programmatically through UserTransaction, or (recommended for portable code) use the Hibernate Transaction API to set transaction boundaries. If you run in an EJB container, declarative transaction demarcation with CMT is preferred JMX deployment The line cfg.buildsessionfactory() still has to be executed somewhere to get a SessionFactory into JNDI. You can do this either in a static initializer block, like the one in HibernateUtil, or you can deploy Hibernate as a managed service. Hibernate is distributed with org.hibernate.jmx.hibernateservice for deployment on an application server with JMX capabilities, such as JBoss AS. The actual deployment and configuration is vendor-specific. Here is an example jboss-service.xml for JBoss 4.0.x: <?xml version="1.0"?> <server> <mbean code="org.hibernate.jmx.hibernateservice" name="jboss.jca:service=hibernatefactory,name=hibernatefactory"> <!-- Required services --> <depends>jboss.jca:service=rardeployer</depends> <depends>jboss.jca:service=localtxcm,name=hsqlds</depends> <!-- Bind the Hibernate service to JNDI --> <attribute name="jndiname">java:/hibernate/sessionfactory</attribute> <!-- Datasource settings --> <attribute name="datasource">java:hsqlds</attribute> <attribute name="dialect">org.hibernate.dialect.hsqldialect</attribute> <!-- Transaction integration --> <attribute name="transactionstrategy"> org.hibernate.transaction.jtatransactionfactory</attribute> <attribute name="transactionmanagerlookupstrategy"> org.hibernate.transaction.jbosstransactionmanagerlookup</attribute> <attribute name="flushbeforecompletionenabled">true</attribute> <attribute name="autoclosesessionenabled">true</attribute> <!-- Fetching options --> <attribute name="maximumfetchdepth">5</attribute> <!-- Second-level caching --> <attribute name="secondlevelcacheenabled">true</attribute> <attribute name="cacheproviderclass">org.hibernate.cache.ehcacheprovider</attribute> <attribute name="querycacheenabled">true</attribute> <!-- Logging --> <attribute name="showsqlenabled">true</attribute> <!-- Mapping files --> <attribute name="mapresources">auction/item.hbm.xml,auction/category.hbm.xml</attribute> </mbean> 50

63 JMX deployment </server> This file is deployed in a directory called META-INF and packaged in a JAR file with the extension.sar (service archive). You also need to package Hibernate, its required third-party libraries, your compiled persistent classes, as well as your mapping files in the same archive. Your enterprise beans (usually session beans) can be kept in their own JAR file, but you can include this EJB JAR file in the main service archive to get a single (hot-)deployable unit. Consult the JBoss AS documentation for more information about JMX service and EJB deployment. 51

64 52

65 Chapter 4. Persistent Classes Persistent classes are classes in an application that implement the entities of the business problem (e.g. Customer and Order in an E-commerce application). The term "persistent" here means that the classes are able to be persisted, not that they are in the persistent state (see Section 11.1, Hibernate object states for discussion). Hibernate works best if these classes follow some simple rules, also known as the Plain Old Java Object (POJO) programming model. However, none of these rules are hard requirements. Indeed, Hibernate assumes very little about the nature of your persistent objects. You can express a domain model in other ways (using trees of java.util.map instances, for example) A simple POJO example Example 4.1. Simple POJO representing a cat package eg; import java.util.set; import java.util.date; public class Cat { private Long id; // identifier private Date birthdate; private Color color; private char sex; private float weight; private int litterid; private Cat mother; private Set kittens = new HashSet(); private void setid(long id) { this.id=id; public Long getid() { return id; void setbirthdate(date date) { birthdate = date; public Date getbirthdate() { return birthdate; void setweight(float weight) { this.weight = weight; public float getweight() { return weight; 53

66 Chapter 4. Persistent Classes public Color getcolor() { return color; void setcolor(color color) { this.color = color; void setsex(char sex) { this.sex=sex; public char getsex() { return sex; void setlitterid(int id) { this.litterid = id; public int getlitterid() { return litterid; void setmother(cat mother) { this.mother = mother; public Cat getmother() { return mother; void setkittens(set kittens) { this.kittens = kittens; public Set getkittens() { return kittens; // addkitten not needed by Hibernate public void addkitten(cat kitten) { kitten.setmother(this); kitten.setlitterid( kittens.size() ); kittens.add(kitten); The four main rules of persistent classes are explored in more detail in the following sections Implement a no-argument constructor Cat has a no-argument constructor. All persistent classes must have a default constructor (which can be non-public) so that Hibernate can instantiate them using java.lang.reflect.constructor.newinstance(). It is recommended that this constructor be defined with at least package visibility in order for runtime proxy generation to work properly. 54

67 Provide an identifier property Provide an identifier property Note Historically this was considered option. While still not (yet) enforced, this should be considered a deprecated feature as it will be completely required to provide a identifier property in an upcoming release. Cat has a property named id. This property maps to the primary key column(s) of the underlying database table. The type of the identifier property can be any "basic" type (see???). See Section 9.4, Components as composite identifiers for information on mapping composite (multicolumn) identifiers. Note Identifiers do not necessarily need to identify column(s) in the database physically defined as a primary key. They should just identify columns that can be used to uniquely identify rows in the underlying table. We recommend that you declare consistently-named identifier properties on persistent classes and that you use a nullable (i.e., non-primitive) type Prefer non-final classes (semi-optional) A central feature of Hibernate, proxies (lazy loading), depends upon the persistent class being either non-final, or the implementation of an interface that declares all public methods. You can persist final classes that do not implement an interface with Hibernate; you will not, however, be able to use proxies for lazy association fetching which will ultimately limit your options for performance tuning. To persist a final class which does not implement a "full" interface you must disable proxy generation. See Example 4.2, Disabling proxies in hbm.xml and Example 4.3, Disabling proxies in annotations. Example 4.2. Disabling proxies in hbm.xml <class name="cat" lazy="false"...>...</class> Example 4.3. Disabling proxies public class Cat {... 55

68 Chapter 4. Persistent Classes If the final class does implement a proper interface, you could alternatively tell Hibernate to use the interface instead when generating the proxies. See Example 4.4, Proxying an interface in hbm.xml and Example 4.5, Proxying an interface in annotations. Example 4.4. Proxying an interface in hbm.xml <class name="cat" proxy="icat"...>...</class> Example 4.5. Proxying an interface public class Cat implements ICat {... You should also avoid declaring public final methods as this will again limit the ability to generate proxies from this class. If you want to use a class with public final methods, you must explicitly disable proxying. Again, see Example 4.2, Disabling proxies in hbm.xml and Example 4.3, Disabling proxies in annotations Declare accessors and mutators for persistent fields (optional) Cat declares accessor methods for all its persistent fields. Many other ORM tools directly persist instance variables. It is better to provide an indirection between the relational schema and internal data structures of the class. By default, Hibernate persists JavaBeans style properties and recognizes method names of the form getfoo, isfoo and setfoo. If required, you can switch to direct field access for particular properties. Properties need not be declared public. Hibernate can persist a property declared with package, protected or private visibility as well Implementing inheritance A subclass must also observe the first and second rules. It inherits its identifier property from the superclass, Cat. For example: package eg; public class DomesticCat extends Cat { private String name; public String getname() { return name; protected void setname(string name) { this.name=name; 56

69 Implementing equals() and hashcode() 4.3. Implementing equals() and hashcode() You have to override the equals() and hashcode() methods if you: intend to put instances of persistent classes in a Set (the recommended way to represent manyvalued associations); and intend to use reattachment of detached instances Hibernate guarantees equivalence of persistent identity (database row) and Java identity only inside a particular session scope. When you mix instances retrieved in different sessions, you must implement equals() and hashcode() if you wish to have meaningful semantics for Sets. The most obvious way is to implement equals()/hashcode() by comparing the identifier value of both objects. If the value is the same, both must be the same database row, because they are equal. If both are added to a Set, you will only have one element in the Set). Unfortunately, you cannot use that approach with generated identifiers. Hibernate will only assign identifier values to objects that are persistent; a newly created instance will not have any identifier value. Furthermore, if an instance is unsaved and currently in a Set, saving it will assign an identifier value to the object. If equals() and hashcode() are based on the identifier value, the hash code would change, breaking the contract of the Set. See the Hibernate website for a full discussion of this problem. This is not a Hibernate issue, but normal Java semantics of object identity and equality. It is recommended that you implement equals() and hashcode() using Business key equality. Business key equality means that the equals() method compares only the properties that form the business key. It is a key that would identify our instance in the real world (a natural candidate key): public class Cat {... public boolean equals(object other) { if (this == other) return true; if (!(other instanceof Cat) ) return false; final Cat cat = (Cat) other; if (!cat.getlitterid().equals( getlitterid() ) ) return false; if (!cat.getmother().equals( getmother() ) ) return false; return true; public int hashcode() { int result; result = getmother().hashcode(); result = 29 * result + getlitterid(); return result; 57

70 Chapter 4. Persistent Classes A business key does not have to be as solid as a database primary key candidate (see Section , Considering object identity ). Immutable or unique properties are usually good candidates for a business key Dynamic models Note The following features are currently considered experimental and may change in the near future. Persistent entities do not necessarily have to be represented as POJO classes or as JavaBean objects at runtime. Hibernate also supports dynamic models (using Maps of Maps at runtime) and the representation of entities as DOM4J trees. With this approach, you do not write persistent classes, only mapping files. By default, Hibernate works in normal POJO mode. You can set a default entity representation mode for a particular SessionFactory using the default_entity_mode configuration option (see Table 3.3, Hibernate Configuration Properties ). The following examples demonstrate the representation using Maps. First, in the mapping file an entity-name has to be declared instead of, or in addition to, a class name: <hibernate-mapping> <class entity-name="customer"> <id name="id" type="long" column="id"> <generator class="sequence"/> </id> <property name="name" column="name" type="string"/> <property name="address" column="address" type="string"/> <many-to-one name="organization" column="organization_id" class="organization"/> 58

71 Dynamic models <bag name="orders" inverse="true" lazy="false" cascade="all"> <key column="customer_id"/> <one-to-many class="order"/> </bag> </class> </hibernate-mapping> Even though associations are declared using target class names, the target type of associations can also be a dynamic entity instead of a POJO. After setting the default entity mode to dynamic-map for the SessionFactory, you can, at runtime, work with Maps of Maps: Session s = opensession(); Transaction tx = s.begintransaction(); // Create a customer Map david = new HashMap(); david.put("name", "David"); // Create an organization Map foobar = new HashMap(); foobar.put("name", "Foobar Inc."); // Link both david.put("organization", foobar); // Save both s.save("customer", david); s.save("organization", foobar); tx.commit(); s.close(); One of the main advantages of dynamic mapping is quick turnaround time for prototyping, without the need for entity class implementation. However, you lose compile-time type checking and will likely deal with many exceptions at runtime. As a result of the Hibernate mapping, the database schema can easily be normalized and sound, allowing to add a proper domain model implementation on top later on. Entity representation modes can also be set on a per Session basis: Session dynamicsession = pojosession.getsession(entitymode.map); // Create a customer Map david = new HashMap(); david.put("name", "David"); 59

72 Chapter 4. Persistent Classes dynamicsession.save("customer", david);... dynamicsession.flush(); dynamicsession.close()... // Continue on pojosession Please note that the call to getsession() using an EntityMode is on the Session API, not the SessionFactory. That way, the new Session shares the underlying JDBC connection, transaction, and other context information. This means you do not have to call flush() and close() on the secondary Session, and also leave the transaction and connection handling to the primary unit of work. More information about the XML representation capabilities can be found in Chapter 20, XML Mapping Tuplizers org.hibernate.tuple.tuplizer and its sub-interfaces are responsible for managing a particular representation of a piece of data given that representation's org.hibernate.entitymode. If a given piece of data is thought of as a data structure, then a tuplizer is the thing that knows how to create such a data structure, how to extract values from such a data structure and how to inject values into such a data structure. For example, for the POJO entity mode, the corresponding tuplizer knows how create the POJO through its constructor. It also knows how to access the POJO properties using the defined property accessors. There are two (high-level) types of Tuplizers: org.hibernate.tuple.entity.entitytuplizer which is responsible for managing the above mentioned contracts in regards to entities org.hibernate.tuple.component.componenttuplizer which does the same for components Users can also plug in their own tuplizers. Perhaps you require that java.util.map implementation other than java.util.hashmap be used while in the dynamic-map entity-mode. Or perhaps you need to define a different proxy generation strategy than the one used by default. Both would be achieved by defining a custom tuplizer implementation. Tuplizer definitions are attached to the entity or component mapping they are meant to manage. Going back to the example of our Customer entity, Example 4.6, Specify custom tuplizers in annotations shows how to specify a custom org.hibernate.tuple.entity.entitytuplizer using annotations while Example 4.7, Specify custom tuplizers in hbm.xml shows how to do the same in hbm.xml Example 4.6. Specify custom tuplizers in 60

73 = DynamicEntityTuplizer.class) public interface public Long getid(); public void setid(long id); public String getname(); public void setname(string = DynamicComponentTuplizer.class) public Country getcountry(); public void setcountry(country country); Example 4.7. Specify custom tuplizers in hbm.xml <hibernate-mapping> <class entity-name="customer"> <!-- Override the dynamic-map entity-mode tuplizer for the customer entity --> <tuplizer entity-mode="dynamic-map" class="custommaptuplizerimpl"/> <id name="id" type="long" column="id"> </id> <generator class="sequence"/> <!-- other properties -->... </class> </hibernate-mapping> 4.6. EntityNameResolvers org.hibernate.entitynameresolver is a contract for resolving the entity name of a given entity instance. The interface defines a single method resolveentityname which is passed the entity instance and is expected to return the appropriate entity name (null is allowed and would indicate that the resolver does not know how to resolve the entity name of the given entity instance). Generally speaking, an org.hibernate.entitynameresolver is going to be most useful in the case of dynamic models. One example might be using proxied interfaces as your domain model. The hibernate test suite has an example of this exact style of usage under the org.hibernate.test.dynamicentity.tuplizer2. Here is some of the code from that package for illustration. /** * A very trivial JDK Proxy InvocationHandler implementation where we proxy an * interface as the domain model and simply store persistent state in an internal 61

74 Chapter 4. Persistent Classes * Map. This is an extremely trivial example meant only for illustration. */ public final class DataProxyHandler implements InvocationHandler { private String entityname; private HashMap data = new HashMap(); public DataProxyHandler(String entityname, Serializable id) { this.entityname = entityname; data.put( "Id", id ); public Object invoke(object proxy, Method method, Object[] args) throws Throwable { String methodname = method.getname(); if ( methodname.startswith( "set" ) ) { String propertyname = methodname.substring( 3 ); data.put( propertyname, args[0] ); else if ( methodname.startswith( "get" ) ) { String propertyname = methodname.substring( 3 ); return data.get( propertyname ); else if ( "tostring".equals( methodname ) ) { return entityname + "#" + data.get( "Id" ); else if ( "hashcode".equals( methodname ) ) { return new Integer( this.hashcode() ); return null; public String getentityname() { return entityname; public HashMap getdata() { return data; public class ProxyHelper { public static String extractentityname(object object) { // Our custom java.lang.reflect.proxy instances actually bundle // their appropriate entity name, so we simply extract it from there // if this represents one of our proxies; otherwise, we return null if ( Proxy.isProxyClass( object.getclass() ) ) { InvocationHandler handler = Proxy.getInvocationHandler( object ); if ( DataProxyHandler.class.isAssignableFrom( handler.getclass() ) ) { DataProxyHandler myhandler = ( DataProxyHandler ) handler; return myhandler.getentityname(); return null; // various other utility methods... /** 62

75 EntityNameResolvers * The EntityNameResolver implementation. * * IMPL NOTE : An EntityNameResolver really defines a strategy for how entity names * should be resolved. Since this particular impl can handle resolution for all of our * entities we want to take advantage of the fact that SessionFactoryImpl keeps these * in a Set so that we only ever have one instance registered. Why? Well, when it * comes time to resolve an entity name, Hibernate must iterate over all the registered * resolvers. So keeping that number down helps that process be as speedy as possible. * Hence the equals and hashcode implementations as is */ public class MyEntityNameResolver implements EntityNameResolver { public static final MyEntityNameResolver INSTANCE = new MyEntityNameResolver(); public String resolveentityname(object entity) { return ProxyHelper.extractEntityName( entity ); public boolean equals(object obj) { return getclass().equals( obj.getclass() ); public int hashcode() { return getclass().hashcode(); public class MyEntityTuplizer extends PojoEntityTuplizer { public MyEntityTuplizer(EntityMetamodel entitymetamodel, PersistentClass mappedentity) { super( entitymetamodel, mappedentity ); public EntityNameResolver[] getentitynameresolvers() { return new EntityNameResolver[] { MyEntityNameResolver.INSTANCE ; public String determineconcretesubclassentityname(object entityinstance, SessionFactoryImplementor factory) { String entityname = ProxyHelper.extractEntityName( entityinstance ); if ( entityname == null ) { entityname = super.determineconcretesubclassentityname( entityinstance, factory ); return entityname;... In order to register an org.hibernate.entitynameresolver users must either: 1. Implement a custom tuplizer (see Section 4.5, Tuplizers ), implementing the getentitynameresolvers method 2. Register it with the org.hibernate.impl.sessionfactoryimpl (which is the implementation class for org.hibernate.sessionfactory) using the registerentitynameresolver method. 63

76 64

77 Chapter 5. Basic O/R Mapping 5.1. Mapping declaration Object/relational mappings can be defined in three approaches: using Java 5 annotations (via the Java Persistence 2 annotations) using JPA 2 XML deployment descriptors (described in chapter XXX) using the Hibernate legacy XML files approach known as hbm.xml Annotations are split in two categories, the logical mapping annotations (describing the object model, the association between two entities etc.) and the physical mapping annotations (describing the physical schema, tables, columns, indexes, etc). We will mix annotations from both categories in the following code examples. JPA annotations are in the javax.persistence.* package. Hibernate specific extensions are in org.hibernate.annotations.*. You favorite IDE can auto-complete annotations and their attributes for you (even without a specific "JPA" plugin, since JPA annotations are plain Java 5 annotations). Here is an example of mapping @DiscriminatorColumn(name="subclass", discriminatortype=char) public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private Integer id; public BigDecimal getweight() { return weight; public void setweight(bigdecimal weight) { this.weight = weight; private @Column(updatable=false) public Date getbirthdate() { return birthdate; public void setbirthdate(date birthdate) { this.birthdate = birthdate; private @Column(updatable=false) public ColorType getcolor() { return color; public void setcolor(colortype color) { this.color = color; private ColorType color; 65

78 Chapter 5. Basic public String getsex() { return sex; public void setsex(string sex) { this.sex = sex; private public Integer getlitterid() { return litterid; public void setlitterid(integer litterid) { this.litterid = litterid; private updatable=false) public Cat getmother() { return mother; public void setmother(cat mother) { this.mother = mother; private public Set<Cat> getkittens() { return kittens; public void setkittens(set<cat> kittens) { this.kittens = kittens; private Set<Cat> kittens = public class DomesticCat extends Cat { public String getname() { return name; public void setname(string name) { this.name = name private String public class Dog {... The legacy hbm.xml approach uses an XML schema designed to be readable and hand-editable. The mapping language is Java-centric, meaning that mappings are constructed around persistent class declarations and not table declarations. Please note that even though many Hibernate users choose to write the XML by hand, a number of tools exist to generate the mapping document. These include XDoclet, Middlegen and AndroMDA. Here is an example mapping: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" " <hibernate-mapping package="eg"> <class name="cat" table="cats" discriminator-value="c"> <id name="id"> </id> <generator class="native"/> 66

79 Mapping declaration <discriminator column="subclass" type="character"/> <property name="weight"/> <property name="birthdate" type="date" not-null="true" update="false"/> <property name="color" type="eg.types.colorusertype" not-null="true" update="false"/> <property name="sex" not-null="true" update="false"/> <property name="litterid" column="litterid" update="false"/> <many-to-one name="mother" column="mother_id" update="false"/> <set name="kittens" inverse="true" order-by="litter_id"> <key column="mother_id"/> <one-to-many class="cat"/> </set> <subclass name="domesticcat" discriminator-value="d"> <property name="name" type="string"/> </subclass> </class> <class name="dog"> </class> <!-- mapping for Dog could go here --> </hibernate-mapping> We will now discuss the concepts of the mapping documents (both annotations and XML). We will only describe, however, the document elements and attributes that are used by Hibernate at runtime. The mapping document also contains some extra optional attributes and elements that affect the database schemas exported by the schema export tool (for example, the not-null attribute). 67

80 Chapter 5. Basic O/R Mapping Entity An entity is a regular Java object (aka POJO) which will be persisted by Hibernate. To mark an object as an entity in annotations, use public class Flight implements Serializable { Long public Long getid() { return id; public void setid(long id) { this.id = id; That's pretty much it, the rest is optional. There are however any options to tweak your entity mapping, let's explore lets you define the table the entity will be persisted into. If undefined, the table name is the unqualified class name of the entity. You can also optionally define the catalog, the schema as well as unique constraints on schema="air_command", name="flight_number", columnnames={"comp_prefix", "flight_number" ) ) public class Flight implements Serializable public String getcompagnyprefix() { return public String getnumber() { return number; The constraint name is optional (generated if left undefined). The column names composing the constraint correspond to the column names as defined before the Hibernate NamingStrategy is lets you define the shortcut name of the entity you can used in JP-QL and HQL queries. It defaults to the unqualified class name of the class. Hibernate goes beyond the JPA specification and provide additional configurations. Some of them are hosted dynamicinsert / dynamicupdate (defaults to false): specifies that INSERT / UPDATE SQL should be generated at runtime and contain only the columns whose values are not null. The dynamic- 68

81 Entity update and dynamic-insert settings are not inherited by subclasses. Although these settings can increase performance in some cases, they can actually decrease performance in others. selectbeforeupdate (defaults to false): specifies that Hibernate should never perform an SQL UPDATE unless it is certain that an object is actually modified. Only when a transient object has been associated with a new session using update(), will Hibernate perform an extra SQL SELECT to determine if an UPDATE is actually required. Use of select-before-update will usually decrease performance. It is useful to prevent a database update trigger being called unnecessarily if you reattach a graph of detached instances to a Session. polymorphisms (defaults to IMPLICIT): determines whether implicit or explicit query polymorphisms is used. Implicit polymorphisms means that instances of the class will be returned by a query that names any superclass or implemented interface or class, and that instances of any subclass of the class will be returned by a query that names the class itself. Explicit polymorphisms means that class instances will be returned only by queries that explicitly name that class. Queries that name the class will return only instances of subclasses mapped. For most purposes, the default polymorphisms=implicit is appropriate. Explicit polymorphisms 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. persister: specifies a custom ClassPersister. The persister attribute lets you customize the persistence strategy used for the class. You can, for example, specify your own subclass of org.hibernate.persister.entitypersister, or you can even provide a completely new implementation of the interface org.hibernate.persister.classpersister that implements, for example, persistence via stored procedure calls, serialization to flat files or LDAP. See org.hibernate.test.custompersister for a simple example of "persistence" to a Hashtable. optimisticlock (defaults to VERSION): determines the optimistic locking strategy. If you enable dynamicupdate, you will have a choice of optimistic locking strategies: version: check the version/timestamp columns all: check all columns dirty: check the changed columns, allowing some concurrent updates none: do not use optimistic locking It is strongly recommended that you use version/timestamp columns for optimistic locking with Hibernate. This strategy optimizes performance and correctly handles modifications made to detached instances (i.e. when Session.merge() is used). Tip Be sure to to mark a class as an entity. It's a common mistake to by accident. 69

82 Chapter 5. Basic O/R Mapping Some entities are not mutable. They cannot be updated or deleted by the application. This allows Hibernate to make some minor performance optimizations.. Use annotation. You can also alter how Hibernate deals with lazy initialization for this class. use lazy=false to disable lazy fetching (not recommended). You can also specify an interface to use for lazy initializing proxies (defaults to the class itself): use proxyclass Hibernate will initially return proxies (Javassist or CGLIB) that implement the named interface. The persistent object will load when a method of the proxy is invoked. See "Initializing collections and proxies" specifies a "batch size" for fetching instances of this class by identifier. Not yet loaded instances are loaded batch-size at a time (default 1). You can specific an arbitrary SQL WHERE condition to be used when retrieving objects of this class. for that. In the same lets you define an SQL expression used to generate a multi-row check constraint for automatic schema generation. There is no difference between a view and a base table for a Hibernate mapping. This is transparent at the database level, although some DBMS do not support views properly, especially with updates. Sometimes you want to use a view, but you cannot create one in the database (i.e. with a legacy schema). In this case, you can map an immutable and read-only entity to a given SQL subselect @Subselect("select item.name, max(bid.amount), count(*) " + "from item " + "join bid on bid.item_id = item.id " + "group by {"item", "bid" ) //tables impacted public class Summary public String getid() { return id;... Declare the tables to synchronize this entity with, ensuring that auto-flush happens correctly and that queries against the derived entity do not return stale data. The <subselect> is available both as an attribute and a nested mapping element. We will now explore the same options using the hbm.xml structure. You can declare a persistent class using the class element. For example: <class name="classname" table="tablename" discriminator-value="discriminator_value" 70

83 Entity mutable="true false" schema="owner" catalog="catalog" proxy="proxyinterface" dynamic-update="true false" dynamic-insert="true false" select-before-update="true false" polymorphism="implicit explicit" where="arbitrary sql where condition" persister="persisterclass" batch-size="n" /> optimistic-lock="none version dirty all" lazy="true false" (16) entity-name="entityname" (17) check="arbitrary sql check condition" (18) rowid="rowid" (19) subselect="sql expression" (20) abstract="true false" (21) node="element-name" name (optional): the fully qualified Java class name of the persistent class or interface. If this attribute is missing, it is assumed that the mapping is for a non-pojo entity. table (optional - defaults to the unqualified class name): the name of its database table. discriminator-value (optional - defaults to the class name): a value that distinguishes individual subclasses that is used for polymorphic behavior. Acceptable values include null and not null. mutable (optional - defaults to true): specifies that instances of the class are (not) mutable. schema (optional): overrides the schema name specified by the root <hibernate-mapping> element. catalog (optional): overrides the catalog name specified by the root <hibernate-mapping> element. proxy (optional): specifies an interface to use for lazy initializing proxies. You can specify the name of the class itself. dynamic-update (optional - defaults to false): specifies that UPDATE SQL should be generated at runtime and can contain only those columns whose values have changed. dynamic-insert (optional - defaults to false): specifies that INSERT SQL should be generated at runtime and contain only the columns whose values are not null. select-before-update (optional - defaults to false): specifies that Hibernate should never perform an SQL UPDATE unless it is certain that an object is actually modified. Only when a transient object has been associated with a new session using update(), will Hibernate perform an extra SQL SELECT to determine if an UPDATE is actually required. polymorphisms (optional - defaults to implicit): determines whether implicit or explicit query polymorphisms is used. 71

84 Chapter 5. Basic O/R Mapping where (optional): specifies an arbitrary SQL WHERE condition to be used when retrieving objects of this class. persister (optional): specifies a custom ClassPersister. batch-size (optional - defaults to 1): specifies a "batch size" for fetching instances of this class by identifier. optimistic-lock (optional - defaults to version): determines the optimistic locking strategy. 16 lazy (optional): lazy fetching can be disabled by setting lazy="false". 17 entity-name (optional - defaults to the class name): Hibernate3 allows a class to be mapped multiple times, potentially to different tables. It also allows entity mappings that are represented by Maps or XML at the Java level. In these cases, you should provide an explicit arbitrary name for the entity. See Section 4.4, Dynamic models and Chapter 20, XML Mapping for more information. 18 check (optional): an SQL expression used to generate a multi-row check constraint for automatic schema generation. 19 rowid (optional): Hibernate can use ROWIDs on databases. On Oracle, for example, Hibernate can use the rowid extra column for fast updates once this option has been set to rowid. A ROWID is an implementation detail and represents the physical location of a stored tuple. 20 subselect (optional): maps an immutable and read-only entity to a database subselect. This is useful if you want to have a view instead of a base table. See below for more information. 21 abstract (optional): is used to mark abstract superclasses in <union-subclass> hierarchies. It is acceptable for the named persistent class to be an interface. You can declare implementing classes of that interface using the <subclass> element. You can persist any static inner class. Specify the class name using the standard form i.e. e.g.foo$bar. Here is how to do a virtual view (subselect) in XML: <class name="summary"> <subselect> select item.name, max(bid.amount), count(*) from item join bid on bid.item_id = item.id group by item.name </subselect> <synchronize table="item"/> <synchronize table="bid"/> <id name="name"/>... </class> The <subselect> is available both as an attribute and a nested mapping element. 72

85 Identifiers Identifiers Mapped classes must declare the primary key column of the database table. Most classes will also have a JavaBeans-style property holding the unique identifier of an instance. Mark the identifier public class Person Integer getid() { In hbm.xml, use the <id> element which defines the mapping from that property to the primary key column. <id name="propertyname" type="typename" column="column_name" unsaved-value="null any none undefined id_value" access="field property ClassName"> element/@attribute." </id> <generator class="generatorclass"/> name (optional): the name of the identifier property. type (optional): a name that indicates the Hibernate type. column (optional - defaults to the property name): the name of the primary key column. unsaved-value (optional - defaults to a "sensible" value): an identifier property value that indicates an instance is newly instantiated (unsaved), distinguishing it from detached instances that were saved or loaded in a previous session. access (optional - defaults to property): the strategy Hibernate should use for accessing the property value. If the name attribute is missing, it is assumed that the class has no identifier property. The unsaved-value attribute is almost never needed in Hibernate3 and indeed has no corresponding element in annotations. You can also declare the identifier as a composite identifier. This allows access to legacy data with composite keys. Its use is strongly discouraged for anything else. 73

86 Chapter 5. Basic O/R Mapping Composite identifier You can define a composite primary key through several syntaxes: use a component type to represent the identifier and map it as a property in the entity: you then annotated the property The component type has to be Serializable. map multiple properties properties: the identifier type is then the entity class itself and needs to be Serializable. This approach is unfortunately not standard and only supported by Hibernate. map multiple properties properties and declare an external class to be the identifier type. This class, which needs to be Serializable, is declared on the entity via annotation. The identifier type must contain the same properties as the identifier properties of the entity: each property name must be the same, its type must be the same as well if the entity property is of a basic type, its type must be the type of the primary key of the associated entity if the entity property is an association (either or As you can see the last case is far from obvious. It has been inherited from the dark ages of EJB 2 for backward compatibilities and we recommend you not to use it (for simplicity sake). Let's explore all three cases using examples id as a property using a component type Here is a simple class column=@column(name="fld_firstname") UserId id; Integer class UserId implements Serializable { String firstname; String lastname; You can notice that the UserId class is serializable. To override the column mapping, An embedded id can itself contains the primary key of an associated 74

87 Identifiers class Customer CustomerId id; @JoinColumn(name="userfirstname_fk", referencedcolumnname="lastname") User class CustomerId implements Serializable { UserId userid; String customernumber; //implements equals and class User UserId id; Integer class UserId implements Serializable { String firstname; String lastname; //implements equals and hashcode In the embedded id object, the association is represented as the identifier of the associated entity. But you can link its value to a regular association in the entity via annotation. value correspond to the property name of the embedded id object containing the associated entity's identifier. In the database, it means that the Customer.user and the CustomerId.userId properties share the same underlying column (user_fk in this case). Tip The component type used as identifier must implement equals() and hashcode(). In practice, your code only sets the Customer.user property and the user id value is copied by Hibernate into the CustomerId.userId property. Warning The id value can be copied as late as flush time, don't rely on it until after flush time. 75

88 Chapter 5. Basic O/R Mapping While not supported in JPA, Hibernate lets you place your association directly in the embedded id component (instead of having to use class Customer CustomerId id; boolean class CustomerId implements @JoinColumn(name="userfirstname_fk", referencedcolumnname="lastname") ) User user; String customernumber; //implements equals and class User UserId id; Integer class UserId implements Serializable { String firstname; String lastname; //implements equals and hashcode Let's now rewrite these examples using the hbm.xml syntax. <composite-id name="propertyname" class="classname" mapped="true false" access="field property ClassName" node="element-name."> <key-property name="propertyname" type="typename" column="column_name"/> <key-many-to-one name="propertyname" class="classname" column="column_name"/>... </composite-id> First a simple example: 76

89 Identifiers <class name="user"> <composite-id name="id" class="userid"> <key-property name="firstname" column="fld_firstname"/> <key-property name="lastname"/> </composite-id> </class> Then an example showing how an association can be mapped. <class name="customer"> <composite-id name="id" class="customerid"> <key-property name="firstname" column="userfirstname_fk"/> <key-property name="lastname" column="userfirstname_fk"/> <key-property name="customernumber"/> </composite-id> <property name="preferredcustomer"/> <many-to-one name="user"> <column name="userfirstname_fk" updatable="false" insertable="false"/> <column name="userlastname_fk" updatable="false" insertable="false"/> </many-to-one> </class> <class name="user"> <composite-id name="id" class="userid"> <key-property name="firstname"/> <key-property name="lastname"/> </composite-id> <property name="age"/> </class> Notice a few things in the previous example: the order of the properties (and column) matters. It must be the same between the association and the primary key of the associated entity the many to one uses the same columns as the primary key and thus must be marked as read only (insertable and updatable to false). unlike the id value of the associated entity is not transparently copied, check the foreign id generator for more information. The last example shows how to map association directly in the embedded id component. <class name="customer"> <composite-id name="id" class="customerid"> <key-many-to-one name="user"> <column name="userfirstname_fk"/> <column name="userlastname_fk"/> 77

90 Chapter 5. Basic O/R Mapping </key-many-to-one> <key-property name="customernumber"/> </composite-id> <property name="preferredcustomer"/> </class> <class name="user"> <composite-id name="id" class="userid"> <key-property name="firstname"/> <key-property name="lastname"/> </composite-id> <property name="age"/> </class> This is the recommended approach to map composite identifier. The following options should not be considered unless some constraint are present Multiple id properties without identifier type Another, arguably more natural, approach is to on multiple properties of your entity. This approach is only supported by Hibernate (not JPA compliant) but does not require an extra embeddable class Customer implements referencedcolumnname="lastname") ) User String customernumber; boolean preferredcustomer; //implements equals and class User UserId id; Integer class UserId implements Serializable { String firstname; String lastname; //implements equals and hashcode 78

91 Identifiers In this case Customer is its own identifier representation: it must implement Serializable and must implement equals() and hashcode(). In hbm.xml, the same mapping is: <class name="customer"> <composite-id> <key-many-to-one name="user"> <column name="userfirstname_fk"/> <column name="userlastname_fk"/> </key-many-to-one> <key-property name="customernumber"/> </composite-id> <property name="preferredcustomer"/> </class> <class name="user"> <composite-id name="id" class="userid"> <key-property name="firstname"/> <key-property name="lastname"/> </composite-id> <property name="age"/> </class> Multiple id properties with with a dedicated identifier on an entity points to the class (component) representing the identifier of the class. The properties on the entity must have their corresponding property on The return type of search twin property must be either identical for basic properties or must correspond to the identifier class of the associated entity for an association. Warning This approach is inherited from the EJB 2 days and we recommend against its use. But, after all it's your application and Hibernate class Customer implements referencedcolumnname="lastname") ) User String customernumber; 79

92 Chapter 5. Basic O/R Mapping boolean preferredcustomer; class CustomerId implements Serializable { UserId user; String customernumber; //implements equals and class User UserId id; Integer age; //implements equals and class UserId implements Serializable { String firstname; String lastname; //implements equals and hashcode Customer and CustomerId do have the same properties customernumber as well as user. CustomerId must be Serializable and implement equals() and hashcode(). While not JPA standard, Hibernate let's you declare the vanilla associated property @IdClass(CustomerId.class) class Customer implements referencedcolumnname="lastname") ) User String customernumber; boolean preferredcustomer; class CustomerId implements Serializable User user; String customernumber; //implements equals and class User { 80

93 UserId id; Integer age; //implements equals and class UserId implements Serializable { String firstname; String lastname; This feature is of limited interest though as you are likely to have chosen approach to stay JPA compliant or you have a quite twisted mind. Here are the equivalent on hbm.xml files: <class name="customer"> <composite-id class="customerid" mapped="true"> <key-many-to-one name="user"> <column name="userfirstname_fk"/> <column name="userlastname_fk"/> </key-many-to-one> <key-property name="customernumber"/> </composite-id> <property name="preferredcustomer"/> </class> <class name="user"> <composite-id name="id" class="userid"> <key-property name="firstname"/> <key-property name="lastname"/> </composite-id> <property name="age"/> </class> Identifier generator Hibernate can generate and populate identifier values for you automatically. This is the recommended approach over "business" or "natural" id (especially composite ids). Hibernate offers various generation strategies, let's explore the most common ones first that happens to be standardized by JPA: IDENTITY: supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The returned identifier is of type long, short or int. SEQUENCE (called seqhilo in Hibernate): uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a named database sequence. 81

94 Chapter 5. Basic O/R Mapping TABLE (called MultipleHiLoPerTableGenerator in Hibernate) : uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a table and column as a source of hi values. The hi/lo algorithm generates identifiers that are unique only for a particular database. AUTO: selects IDENTITY, SEQUENCE or TABLE depending upon the capabilities of the underlying database. Important We recommend all new projects to use the new enhanced identifier generators. They are deactivated by default for entities using annotations but can be activated using hibernate.id.new_generator_mappings=true. These new generators are more efficient and closer to the JPA 2 specification semantic. However they are not backward compatible with existing Hibernate based application (if a sequence or a table is used for id generation). See XXXXXXX??? for more information on how to activate them. To mark an id property as generated, use annotation. You can specify the strategy used (default to AUTO) by setting public class Integer getid() {... public class Integer getid() {... ; SEQUENCE and TABLE require additional configurations that you can set name: name of the generator table / sequencename: name of the table or the sequence (defaulting respectively to hibernate_sequences and hibernate_sequence) catalog / schema: initialvalue: the value from which the id is to start generating allocationsize: the amount to increment by when allocating id numbers from the generator 82

95 Identifiers In addition, the TABLE strategy also let you customize: pkcolumnname: the column name containing the entity identifier valuecolumnname: the column name containing the identifier value pkcolumnvalue: the entity identifier uniqueconstraints: any potential column constraint on the table containing the ids To link a table or sequence generator definition with an actual generated property, use the same name in both the definition name and the generator value generator as strategy=generationtype.sequence, name="seq_gen", sequencename="my_sequence", allocationsize=20 ) public Integer getid() {... The scope of a generator definition can be the application or the class. Class-defined generators are not visible outside the class and can override application level generators. Application level generators are defined in JPA's XML deployment descriptors (see XXXXXX???): <table-generator name="emp_gen" table="generator_table" pk-column-name="key" value-column-name="hi" pk-column-value="emp" allocation-size="20"/> //and the annotation name="emp_gen", table="generator_table", pkcolumnname = "key", valuecolumnname = "hi" pkcolumnvalue="emp", allocationsize=20 ) <sequence-generator name="seq_gen" sequence-name="my_sequence" allocation-size="20"/> //and the annotation 83

96 Chapter 5. Basic O/R Mapping ) name="seq_gen", sequencename="my_sequence", allocationsize=20 If a JPA XML descriptor (like META-INF/orm.xml) is used to define the generators, EMP_GEN and SEQ_GEN are application level generators. Note Package level definition is not supported by the JPA specification. However, you can use at the package level (see???). These are the four standard JPA generators. Hibernate goes beyond that and provide additional generators or additional options as we will see below. You can also write your own custom identifier generator by implementing org.hibernate.id.identifiergenerator. To define a custom generator, use annotation (and its plural counter that describes the class of the identifier generator or its short cut name (as described below) and a list of key/value parameters. When and assigning it is ignored: leave @GenericGenerator(name="system-uuid", strategy = "uuid") public String @GenericGenerator( name="trigger-generated", strategy = "select", parameters value = "socialsecuritynumber") ) public String getid() { The hbm.xml approach uses the optional <generator> child element inside <id>. If any parameters are required to configure or initialize the generator instance, they are passed using the <param> element. <id name="id" type="long" column="cat_id"> <generator class="org.hibernate.id.tablehilogenerator"> <param name="table">uid_table</param> <param name="column">next_hi_value_column</param> </generator> </id> 84

97 Identifiers Various additional generators All generators implement the interface org.hibernate.id.identifiergenerator. This is a very simple interface. Some applications can choose to provide their own specialized implementations, however, Hibernate provides a range of built-in implementations. The shortcut names for the builtin generators are as follows: increment generates identifiers of type long, short or int that are unique only when no other process is inserting data into the same table. Do not use in a cluster. identity supports identity columns in DB2, MySQL, MS SQL Server, Sybase and HypersonicSQL. The returned identifier is of type long, short or int. sequence uses a sequence in DB2, PostgreSQL, Oracle, SAP DB, McKoi or a generator in Interbase. The returned identifier is of type long, short or int hilo uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a table and column (by default hibernate_unique_key and next_hi respectively) as a source of hi values. The hi/lo algorithm generates identifiers that are unique only for a particular database. seqhilo uses a hi/lo algorithm to efficiently generate identifiers of type long, short or int, given a named database sequence. uuid Generates a 128-bit UUID based on a custom algorithm. The value generated is represented as a string of 32 hexidecimal digits. Users can also configure it to use a separator (config parameter "separator") which separates the hexidecimal digits into 8{sep8{sep4{sep8{sep4. Note specifically that this is different than the IETF RFC 4122 representation of If you need RFC 4122 compliant UUIDs, consider using "uuid2" generator discussed below. uuid2 Generates a IETF RFC 4122 compliant (variant 2) 128-bit UUID. The exact "version" (the RFC term) generated depends on the pluggable "generation strategy" used (see below). Capable of generating values as java.util.uuid, java.lang.string or as a byte array of length 16 (byte[16]). The "generation strategy" is defined by the interface org.hibernate.id.uuidgenerationstrategy. The generator defines 2 configuration parameters for defining which generation strategy to use: uuid_gen_strategy_class Names the UUIDGenerationStrategy class to use uuid_gen_strategy Names the UUIDGenerationStrategy instance to use 85

98 Chapter 5. Basic O/R Mapping Out of the box, comes with the following strategies: org.hibernate.id.uuid.standardrandomstrategy (the default) - generates "version 3" (aka, "random") UUID values via the randomuuid method of java.util.uuid org.hibernate.id.uuid.customversiononestrategy - generates "version 1" UUID values, using IP address since mac address not available. If you need mac address to be used, consider leveraging one of the existing third party UUID generators which sniff out mac address and integrating it via the org.hibernate.id.uuidgenerationstrategy contract. Two such libraries known at time of this writing include software/uuid/ and guid uses a database-generated GUID string on MS SQL Server and MySQL. native selects identity, sequence or hilo depending upon the capabilities of the underlying database. assigned lets the application assign an identifier to the object before save() is called. This is the default strategy if no <generator> element is specified. select retrieves a primary key, assigned by a database trigger, by selecting the row by some unique key and retrieving the primary key value. foreign uses the identifier of another associated object. It is usually used in conjunction with a <oneto-one> primary key association. sequence-identity a specialized sequence generation strategy that utilizes a database sequence for the actual value generation, but combines this with JDBC3 getgeneratedkeys to return the generated identifier value as part of the insert statement execution. This strategy is only supported on Oracle 10g drivers targeted for JDK 1.4. Comments on these insert statements are disabled due to a bug in the Oracle drivers Hi/lo algorithm The hilo and seqhilo generators provide two alternate implementations of the hi/lo algorithm. The first implementation requires a "special" database table to hold the next available "hi" value. Where supported, the second uses an Oracle-style sequence. <id name="id" type="long" column="cat_id"> <generator class="hilo"> <param name="table">hi_value</param> <param name="column">next_value</param> <param name="max_lo">100</param> 86

99 Identifiers </id> </generator> <id name="id" type="long" column="cat_id"> <generator class="seqhilo"> <param name="sequence">hi_value</param> <param name="max_lo">100</param> </generator> </id> Unfortunately, you cannot use hilo when supplying your own Connection to Hibernate. When Hibernate uses an application server datasource to obtain connections enlisted with JTA, you must configure the hibernate.transaction.manager_lookup_class UUID algorithm The UUID contains: IP address, startup time of the JVM that is accurate to a quarter second, system time and a counter value that is unique within the JVM. It is not possible to obtain a MAC address or memory address from Java code, so this is the best option without using JNI Identity columns and sequences For databases that support identity columns (DB2, MySQL, Sybase, MS SQL), you can use identity key generation. For databases that support sequences (DB2, Oracle, PostgreSQL, Interbase, McKoi, SAP DB) you can use sequence style key generation. Both of these strategies require two SQL queries to insert a new object. For example: <id name="id" type="long" column="person_id"> <generator class="sequence"> <param name="sequence">person_id_sequence</param> </generator> </id> <id name="id" type="long" column="person_id" unsaved-value="0"> </id> <generator class="identity"/> For cross-platform development, the native strategy will, depending on the capabilities of the underlying database, choose from the identity, sequence and hilo strategies Assigned identifiers If you want the application to assign identifiers, as opposed to having Hibernate generate them, you can use the assigned generator. This special generator uses the identifier value already assigned to the object's identifier property. The generator is used when the primary key is a natural 87

100 Chapter 5. Basic O/R Mapping key instead of a surrogate key. This is the default behavior if you do not nor <generator> elements. The assigned generator makes Hibernate use unsaved-value="undefined". This forces Hibernate to go to the database to determine if an instance is transient or detached, unless there is a version or timestamp property, or you define Interceptor.isUnsaved() Primary keys assigned by triggers Hibernate does not generate DDL with triggers. It is for legacy schemas only. <id name="id" type="long" column="person_id"> <generator class="select"> <param name="key">socialsecuritynumber</param> </generator> </id> In the above example, there is a unique valued property named socialsecuritynumber. It is defined by the class, as a natural key and a surrogate key named person_id, whose value is generated by a trigger Identity copy (foreign generator) Finally, you can ask Hibernate to copy the identifier from another associated entity. In the Hibernate jargon, it is known as a foreign generator but the JPA mapping reads better and is class MedicalHistory implements @JoinColumn(name = "person_id") Person public class Person implements Integer id; Or class MedicalHistory implements Serializable @JoinColumn(name = "patient_id") Person patient; 88

101 class Integer id; In hbm.xml use the following approach: <class name="medicalhistory"> <id name="id"> <generator class="foreign"> <param name="property">patient</param> </generator> </id> <one-to-one name="patient" class="person" constrained="true"/> </class> Enhanced identifier generators Starting with release 3.2.3, there are 2 new generators which represent a re-thinking of 2 different aspects of identifier generation. The first aspect is database portability; the second is optimization Optimization means that you do not have to query the database for every request for a new identifier value. These two new generators are intended to take the place of some of the named generators described above, starting in 3.3.x. However, they are included in the current releases and can be referenced by FQN. The first of these new generators is org.hibernate.id.enhanced.sequencestylegenerator which is intended, firstly, as a replacement for the sequence generator and, secondly, as a better portability generator than native. This is because native generally chooses between identity and sequence which have largely different semantics that can cause subtle issues in applications eyeing portability. org.hibernate.id.enhanced.sequencestylegenerator, however, achieves portability in a different manner. It chooses between a table or a sequence in the database to store its incrementing values, depending on the capabilities of the dialect being used. The difference between this and native is that table-based and sequence-based storage have the same exact semantic. In fact, sequences are exactly what Hibernate tries to emulate with its table-based generators. This generator has a number of configuration parameters: sequence_name (optional, defaults to hibernate_sequence): the name of the sequence or table to be used. initial_value (optional, defaults to 1): the initial value to be retrieved from the sequence/table. In sequence creation terms, this is analogous to the clause typically named "STARTS WITH". increment_size (optional - defaults to 1): the value by which subsequent calls to the sequence/ table should differ. In sequence creation terms, this is analogous to the clause typically named "INCREMENT BY". force_table_use (optional - defaults to false): should we force the use of a table as the backing structure even though the dialect might support sequence? 89

102 Chapter 5. Basic O/R Mapping value_column (optional - defaults to next_val): only relevant for table structures, it is the name of the column on the table which is used to hold the value. optimizer (optional - defaults to none): See Section , Identifier generator optimization The second of these new generators is org.hibernate.id.enhanced.tablegenerator, which is intended, firstly, as a replacement for the table generator, even though it actually functions much more like org.hibernate.id.multiplehilopertablegenerator, and secondly, as a reimplementation of org.hibernate.id.multiplehilopertablegenerator that utilizes the notion of pluggable optimizers. Essentially this generator defines a table capable of holding a number of different increment values simultaneously by using multiple distinctly keyed rows. This generator has a number of configuration parameters: table_name (optional - defaults to hibernate_sequences): the name of the table to be used. value_column_name (optional - defaults to next_val): the name of the column on the table that is used to hold the value. segment_column_name (optional - defaults to sequence_name): the name of the column on the table that is used to hold the "segment key". This is the value which identifies which increment value to use. segment_value (optional - defaults to default): The "segment key" value for the segment from which we want to pull increment values for this generator. segment_value_length (optional - defaults to 255): Used for schema generation; the column size to create this segment key column. initial_value (optional - defaults to 1): The initial value to be retrieved from the table. increment_size (optional - defaults to 1): The value by which subsequent calls to the table should differ. optimizer (optional - defaults to??): See Section , Identifier generator optimization Identifier generator optimization For identifier generators that store values in the database, it is inefficient for them to hit the database on each and every call to generate a new identifier value. Instead, you can group a bunch of them in memory and only hit the database when you have exhausted your in-memory value group. This is the role of the pluggable optimizers. Currently only the two enhanced generators (Section , Enhanced identifier generators support this operation. none (generally this is the default if no optimizer was specified): this will not perform any optimizations and hit the database for each and every request. hilo: applies a hi/lo algorithm around the database retrieved values. The values from the database for this optimizer are expected to be sequential. The values retrieved from the database structure for this optimizer indicates the "group number". The increment_size is multiplied by that value in memory to define a group "hi value". pooled: as with the case of hilo, this optimizer attempts to minimize the number of hits to the database. Here, however, we simply store the starting value for the "next group" into the database structure rather than a sequential value in combination with an in-memory grouping algorithm. Here, increment_size refers to the values coming from the database. 90

103 Optimistic locking properties (optional) Partial identifier generation Hibernate supports the automatic generation of some of the identifier properties. Simply use annotation on one or several id properties. Warning The Hibernate team has always felt such a construct as fundamentally wrong. Try hard to fix your data model before using this public class CustomerInventory implements = "inventory", table = "U_SEQUENCES", pkcolumnname = "S_ID", valuecolumnname = "S_NEXTNUM", pkcolumnvalue = "inventory", allocationsize = = GenerationType.TABLE, generator = "inventory") = CascadeType.MERGE) Customer public class Customer implements Serializable private int id; You can also generate properties inside class Optimistic locking properties (optional) When using long transactions or conversations that span several database transactions, it is useful to store versioning data to ensure that if the same entity is updated by two conversations, the last to commit changes will be informed and not override the other conversation's work. It guarantees some isolation while still allowing for good scalability and works particularly well in read-often write-sometimes situations. You can use two approaches: a dedicated version number or a timestamp. A version or timestamp property should never be null for a detached instance. Hibernate will detect any instance with a null version or timestamp as transient, irrespective of what other unsavedvalue strategies are specified. Declaring a nullable version or timestamp property is an easy way 91

104 Chapter 5. Basic O/R Mapping to avoid problems with transitive reattachment in Hibernate. It is especially useful for people using assigned identifiers or composite keys Version number You can add optimistic locking capability to an entity using public class Flight implements public Integer getversion() {... The version property will be mapped to the OPTLOCK column, and the entity manager will use it to detect conflicting updates (preventing lost updates you might otherwise see with the last-commitwins strategy). The version column may be a numeric. Hibernate supports any kind of type provided that you define and implement the appropriate UserVersionType. The application must not alter the version number set up by Hibernate in any way. To artificially increase the version number, check in Hibernate Entity Manager's reference documentation LockModeType.OPTIMISTIC_FORCE_INCREMENT or LockModeType.PESSIMISTIC_FORCE_INCREMENT. If the version number is generated by the database (via a trigger for example), make sure to To declare a version property in hbm.xml, use: <version column="version_column" name="propertyname" type="typename" access="field property ClassName" unsaved-value="null negative undefined" generated="never always" /> insert="true false" element/@attribute." column (optional - defaults to the property name): the name of the column holding the version number. name: the name of a property of the persistent class. 92

105 Optimistic locking properties (optional) type (optional - defaults to integer): the type of the version number. access (optional - defaults to property): the strategy Hibernate uses to access the property value. unsaved-value (optional - defaults to undefined): a version property value that indicates that an instance is newly instantiated (unsaved), distinguishing it from detached instances that were saved or loaded in a previous session. Undefined specifies that the identifier property value should be used. generated (optional - defaults to never): specifies that this version property value is generated by the database. See the discussion of generated properties for more information. insert (optional - defaults to true): specifies whether the version column should be included in SQL insert statements. It can be set to false if the database column is defined with a default value of Timestamp Alternatively, you can use a timestamp. Timestamps are a less safe implementation of optimistic locking. However, sometimes an application might use the timestamps in other ways as well. Simply mark a property of type Date or public class Flight implements Serializable public Date getlastupdate() {... When using timestamp versioning you can tell Hibernate where to retrieve the timestamp value from - database or JVM - by optionally adding annotation to the property. Possible values for the value attribute of the annotation are org.hibernate.annotations.sourcetype.vm and org.hibernate.annotations.sourcetype.db. The default is SourceType.DB which is also used in case there is annotation at all. Like in the case of version numbers, the timestamp can also be generated by the database instead of Hibernate. To do that, In hbm.xml, use the <timestamp> element: <timestamp column="timestamp_column" name="propertyname" access="field property ClassName" unsaved-value="null undefined" 93

106 Chapter 5. Basic O/R Mapping source="vm db" /> generated="never always" column (optional - defaults to the property name): the name of a column holding the timestamp. name: the name of a JavaBeans style property of Java type Date or Timestamp of the persistent class. access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. unsaved-value (optional - defaults to null): a version property value that indicates that an instance is newly instantiated (unsaved), distinguishing it from detached instances that were saved or loaded in a previous session. Undefined specifies that the identifier property value should be used. source (optional - defaults to vm): Where should Hibernate retrieve the timestamp value from? From the database, or from the current JVM? Database-based timestamps incur an overhead because Hibernate must hit the database in order to determine the "next value". It is safer to use in clustered environments. Not all Dialects are known to support the retrieval of the database's current timestamp. Others may also be unsafe for usage in locking due to lack of precision (Oracle 8, for example). generated (optional - defaults to never): specifies that this timestamp property value is actually generated by the database. See the discussion of generated properties for more information. Note <Timestamp> is equivalent to <version type="timestamp">. And <timestamp source="db"> is equivalent to <version type="dbtimestamp"> Property You need to decide which property needs to be made persistent in a given entity. This differs slightly between the annotation driven metadata and the hbm.xml files Property mapping with annotations In the annotations world, every non static non transient property (field or method depending on the access type) of an entity is considered persistent, unless you annotate it Not having an annotation for your property is equivalent to the annotation. annotation allows you to declare the fetching strategy for a property. If set to LAZY, specifies that this property should be fetched lazily when the instance variable is first accessed. It requires build-time bytecode instrumentation, if your classes are not instrumented, property level 94

107 Property lazy loading is silently ignored. The default is EAGER. You can also mark a property as not optional thanks to attribute. This will ensure that the underlying column are not nullable (if possible). Note that a better approach is to use annotation of the Bean Validation specification. Let's look at a few examples: public transient int counter; //transient property private String firstname; //persistent String getlengthinmeter() {... //transient property String getname() {... // persistent int getlength() {... // persistent = FetchType.LAZY) String getdetailedcomment() {... // persistent java.util.date getdeparturetime() {... // persistent Starred getnote() {... //enum persisted as String in database counter, a transient field, and lengthinmeter, a method annotated and will be ignored by the Hibernate. name, length, and firstname properties are mapped persistent and eagerly fetched (the default for simple properties). The detailedcomment property value will be lazily fetched from the database once a lazy property of the entity is accessed for the first time. Usually you don't need to lazy simple properties (not to be confused with lazy association fetching). The recommended alternative is to use the projection capability of JP-QL (Java Persistence Query Language) or Criteria queries. JPA support property mapping of all basic types supported by Hibernate (all basic Java types, their respective wrappers and serializable classes). Hibernate Annotations supports out of the box enum type mapping either into a ordinal column (saving the enum ordinal) or a string based column (saving the enum string representation): the persistence representation, defaulted to ordinal, can be overridden through annotation as shown in the note property example. In plain Java APIs, the temporal precision of time is not defined. When dealing with temporal data you might want to describe the expected precision in database. Temporal data can have DATE, TIME, or TIMESTAMP precision (ie the actual date, only the time, or both). Use annotation to fine tune indicates that the property should be persisted in a Blob or a Clob depending on the property type: java.sql.clob, Character[], char[] and java.lang.string will be persisted in a Clob. java.sql.blob, Byte[], byte[] and Serializable type will be persisted in a Blob. 95

108 Chapter 5. Basic O/R public String getfulltext() { return public byte[] getfullcode() { return fullcode; If the property type implements java.io.serializable and is not a basic type, and if the property is not annotated then the Hibernate serializable type is used Type You can also manually specify a type using and some parameters if could be: 1. The name of a Hibernate basic type: integer, string, character, date, timestamp, float, binary, serializable, object, blob etc. 2. The name of a Java class with a default basic type: int, float, char, java.lang.string, java.util.date, java.lang.integer, java.sql.clob etc. 3. The name of a serializable Java class. 4. The class name of a custom type: com.illflow.type.mycustomtype etc. If you do not specify a type, Hibernate will use reflection upon the named property and guess the correct Hibernate type. Hibernate will attempt to interpret the name of the return class of the property getter using, in order, rules 2, 3, and allows you to declare type definitions. These annotations can be placed at the class or package level. Note that these definitions are global for the session factory (even when defined at the class level). If the type is used on a single entity, you can place the definition on the entity itself. Otherwise, it is recommended to place the definition at the package level. In the example below, when Hibernate encounters a property of class PhoneNumer, it delegates the persistence strategy to the custom mapping type PhoneNumberType. However, properties belonging to other classes, too, can delegate their persistence strategy to PhoneNumberType, by explicitly using annotation. Note Package level annotations are placed in a file named package-info.java in the appropriate package. Place your annotations before the package name = "phonenumber", defaultfortype = PhoneNumber.class, 96

109 Property ) typeclass = public class ContactDetails { [...] private PhoneNumber private OverseasPhoneNumber overseasphonenumber; [...] The following example shows the usage of the parameters attribute to customize the TypeDef. //in name="caster", typeclass = CasterStringType.class, parameters = value="lower") ) ) package org.hibernate.test.annotations.entity; //in org/hibernate/test/annotations/entity/forest.java public class Forest public String getsmalltext() {... When using composite user type, you will have to express column definitions. has been introduced for ) public MonetaryAmount getamount() { return amount; public class MonetaryAmount implements Serializable { private BigDecimal amount; private Currency currency;... 97

110 Chapter 5. Basic O/R Mapping Access type By default the access type of a class hierarchy is defined by the position of annotations. If these annotations are on a field, then only fields are considered for persistence and the state is accessed via the field. If there annotations are on a getter, then only the getters are considered for persistence and the state is accessed via the getter/setter. That works well in practice and is the recommended approach. Note The placement of annotations within a class hierarchy has to be consistent (either field or on property) to be able to determine the default access type. It is recommended to stick to one single annotation placement strategy throughout your whole application. However in some situations, you need to: force the access type of the entity hierarchy override the access type of a specific entity in the class hierarchy override the access type of an embeddable type The best use case is an embeddable class used by several entities that might not use the same access type. In this case it is better to force the access type at the embeddable class level. To force the access type on a given class, use annotation as showed public class Order private Long id; public Long getid() { return id; public void setid(long id) { this.id = private Address address; public Address getaddress() { return address; public void setaddress() { this.address = public class User { private Long public Long getid() { return id; public void setid(long id) { this.id = id; 98

111 Property private Address public Address getaddress() { return address; public void setaddress() { this.address public class Address { private String street1; public String getstreet1() { return street1; public void setstreet1() { this.street1 = street1; private hashcode; //not persistent You can also override the access type of a single property while keeping the other properties public class Order private Long id; public Long getid() { return id; public void setid(long id) { this.id = private String private String public String getordernumber() { return userid + ":" + orderid; public void setordernumber() { this.userid =...; this.orderid =...; In this example, the default access type is FIELD except for the ordernumber property. Note that the corresponding field, if any must be marked or The should be considered deprecated for FIELD and PROPERTY access. It is still useful however if you need to use a custom access type Optimistic lock It is sometimes useful to avoid increasing the version number even if a given property is dirty (particularly collections). You can do that by annotating the property (or collection) More formally, specifies that updates to this property do not require acquisition of the optimistic lock. 99

112 Chapter 5. Basic O/R Mapping Declaring column attributes The column(s) used for a property mapping can be defined using annotation. Use it to override default values (see the JPA specification for more information on the defaults). You can use this annotation at the property level for properties that are: not annotated at all annotated annotated annotated public class Flight implements Serializable = false, name = "flight_name", nullable = false, length=50) public String getname() {... The name property is mapped to the flight_name column, which is not nullable, has a length of 50 and is not updatable (making the property immutable). This annotation can be applied to regular properties as well name="columnname"; boolean unique() default false; boolean nullable() default true; boolean insertable() default true; boolean updatable() default true; String columndefinition() default ""; String table() default ""; int length() default 255; int precision() default 0; // decimal precision int scale() default 0; // decimal scale name (optional): the column name (default to the property name) unique (optional): set a unique constraint on this column or not (default false) nullable (optional): set the column as nullable (default true). 100

113 Property insertable (optional): whether or not the column will be part of the insert statement (default true) updatable (optional): whether or not the column will be part of the update statement (default true) columndefinition (optional): override the sql DDL fragment for this particular column (non portable) table (optional): define the targeted table (default primary table) length (optional): column length (default 255) precision (optional): column decimal precision (default 0) scale (optional): column decimal scale if useful (default 0) Formula Sometimes, you want the Database to do some computation for you rather than in the JVM, you might also create some kind of virtual column. You can use a SQL fragment (aka formula) instead of mapping a property into a column. This kind of property is read only (its value is calculated by your formula * obj_height * obj_width") public long getobjectvolume() The SQL fragment can be as complex as you want and even include subselects Non-annotated property defaults If a property is not annotated, the following rules apply: If the property is of a single type, it is mapped Otherwise, if the type of the property is annotated it is mapped Otherwise, if the type of the property is Serializable, it is mapped in a column holding the object in its serialized version Otherwise, if the type of the property is java.sql.clob or java.sql.blob, it is mapped with the appropriate LobType Property mapping with hbm.xml The <property> element declares a persistent JavaBean style property of the class. <property name="propertyname" column="column_name" 101

114 Chapter 5. Basic O/R Mapping type="typename" update="true false" insert="true false" formula="arbitrary SQL expression" access="field property ClassName" lazy="true false" unique="true false" not-null="true false" optimistic-lock="true false" /> generated="never insert always" index="index_name" unique_key="unique_key_id" length="l" precision="p" scale="s" name: the name of the property, with an initial lowercase letter. column (optional - defaults to the property name): the name of the mapped database table column. This can also be specified by nested <column> element(s). type (optional): a name that indicates the Hibernate type. update, insert (optional - defaults to true): specifies that the mapped columns should be included in SQL UPDATE and/or INSERT statements. Setting both to false allows a pure "derived" property whose value is initialized from some other property that maps to the same column(s), or by a trigger or other application. formula (optional): an SQL expression that defines the value for a computed property. Computed properties do not have a column mapping of their own. access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. lazy (optional - defaults to false): specifies that this property should be fetched lazily when the instance variable is first accessed. It requires build-time bytecode instrumentation. unique (optional): enables the DDL generation of a unique constraint for the columns. Also, allow this to be the target of a property-ref. not-null (optional): enables the DDL generation of a nullability constraint for the columns. optimistic-lock (optional - defaults to true): specifies that updates to this property do or do not require acquisition of the optimistic lock. In other words, it determines if a version increment should occur when this property is dirty. generated (optional - defaults to never): specifies that this property value is actually generated by the database. See the discussion of generated properties for more information. typename could be: 1. The name of a Hibernate basic type: integer, string, character, date, timestamp, float, binary, serializable, object, blob etc. 102

115 Embedded objects (aka components) 2. The name of a Java class with a default basic type: int, float, char, java.lang.string, java.util.date, java.lang.integer, java.sql.clob etc. 3. The name of a serializable Java class. 4. The class name of a custom type: com.illflow.type.mycustomtype etc. If you do not specify a type, Hibernate will use reflection upon the named property and guess the correct Hibernate type. Hibernate will attempt to interpret the name of the return class of the property getter using, in order, rules 2, 3, and 4. In certain cases you will need the type attribute. For example, to distinguish between Hibernate.DATE and Hibernate.TIMESTAMP, or to specify a custom type. The access attribute allows you to control how Hibernate accesses the property at runtime. By default, Hibernate will call the property get/set pair. If you specify access="field", Hibernate will bypass the get/set pair and access the field directly using reflection. You can specify your own strategy for property access by naming a class that implements the interface org.hibernate.property.propertyaccessor. A powerful feature is derived properties. These properties are by definition read-only. The property value is computed at load time. You declare the computation as an SQL expression. This then translates to a SELECT clause subquery in the SQL query that loads an instance: <property name="totalprice" formula="( SELECT SUM (li.quantity*p.price) FROM LineItem li, Product p WHERE li.productid = p.productid AND li.customerid = customerid AND li.ordernumber = ordernumber )"/> You can reference the entity table by not declaring an alias on a particular column. This would be customerid in the given example. You can also use the nested <formula> mapping element if you do not want to use the attribute Embedded objects (aka components) Embeddable objects (or components) are objects whose properties are mapped to the same table as the owning entity's table. Components can, in turn, declare their own properties, components or collections It is possible to declare an embedded component inside an entity and even override its column mapping. Component classes have to be annotated at the class level with annotation. It is possible to override the column mapping of an embedded object for a particular entity using annotation in the associated public class Person implements Serializable { // Persistent component using defaults 103

116 Chapter 5. Basic O/R Mapping column column ) ) Country public class Address implements Serializable { String city; Country nationality; //no overriding public class Country implements Serializable { private String private String name; public String getiso2() { return iso2; public void setiso2(string iso2) { this.iso2 = iso2; public String getname() { return name; public void setname(string name) { this.name = name;... An embeddable object inherits the access type of its owning entity (note that you can override that using annotation). The Person entity has two component properties, homeaddress and bornin. homeaddress property has not been annotated, but Hibernate will guess that it is a persistent component by looking for annotation in the Address class. We also override the mapping of a column name (to borncountryname) with annotations for each mapped attribute of Country. As you can see, Country is also a nested component of Address, again using auto-detection by Hibernate and JPA defaults. Overriding columns of embedded objects of embedded objects is through column column column ) //nationality columns in homeaddress are overridden ) 104

117 Embedded objects (aka components) Address homeaddress; Hibernate Annotations supports something that is not explicitly supported by the JPA specification. You can annotate a embedded object with annotation to make the superclass properties persistent for more informations). You can also use association annotations in an embeddable @OneToMany To override the association columns you can If you want to have the same embeddable object type twice in the same entity, the column name defaulting will not work as several embedded objects would share the same set of columns. In plain JPA, you need to override at least one set of columns. Hibernate, however, allows you to enhance the default naming mechanism through the NamingStrategy interface. You can write a strategy that prevent name clashing in such a situation. DefaultComponentSafeNamingStrategy is an example of this. If a property of the embedded object points back to the owning entity, annotate it with annotation. Hibernate will make sure this property is properly loaded with the entity reference. In XML, use the <component> element. <component name="propertyname" class="classname" insert="true false" update="true false" access="field property ClassName" lazy="true false" optimistic-lock="true false" > unique="true false" node="element-name." <property.../> <many-to-one... />... </component> name: the name of the property. class (optional - defaults to the property type determined by reflection): the name of the component (child) class. insert: do the mapped columns appear in SQL INSERTs? update: do the mapped columns appear in SQL UPDATEs? 105

118 Chapter 5. Basic O/R Mapping access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. lazy (optional - defaults to false): specifies that this component should be fetched lazily when the instance variable is first accessed. It requires build-time bytecode instrumentation. optimistic-lock (optional - defaults to true): specifies that updates to this component either do or do not require acquisition of the optimistic lock. It determines if a version increment should occur when this property is dirty. unique (optional - defaults to false): specifies that a unique constraint exists upon all mapped columns of the component. The child <property> tags map properties of the child class to table columns. The <component> element allows a <parent> subelement that maps a property of the component class as a reference back to the containing entity. The <dynamic-component> element allows a Map to be mapped as a component, where the property names refer to keys of the map. See Section 9.5, Dynamic components for more information. This feature is not supported in annotations Inheritance strategy Java is a language supporting polymorphism: a class can inherit from another. Several strategies are possible to persist a class hierarchy: Single table per class hierarchy strategy: a single table hosts all the instances of a class hierarchy Joined subclass strategy: one table per class and subclass is present and each table persist the properties specific to a given subclass. The state of the entity is then stored in its corresponding class table and all its superclasses Table per class strategy: one table per concrete class and subclass is present and each table persist the properties of the class and its superclasses. The state of the entity is then stored entirely in the dedicated table for its class Single table per class hierarchy strategy With this approach the properties of all the subclasses in a given mapped class hierarchy are stored in a single table. Each subclass declares its own persistent properties and subclasses. Version and id properties are assumed to be inherited from the root class. Each subclass in a hierarchy must define a unique discriminator value. If this is not specified, the fully qualified Java class name is 106

119 name="planetype", discriminatortype=discriminatortype.string public class public class A320 extends Plane {... In hbm.xml, for the table-per-class-hierarchy mapping strategy, the <subclass> declaration is used. For example: <subclass name="classname" discriminator-value="discriminator_value" proxy="proxyinterface" lazy="true false" dynamic-update="true false" dynamic-insert="true false" entity-name="entityname" node="element-name" extends="superclassname"> <property... />... </subclass> name: the fully qualified class name of the subclass. discriminator-value (optional - defaults to the class name): a value that distinguishes individual subclasses. proxy (optional): specifies a class or interface used for lazy initializing proxies. lazy (optional - defaults to true): setting lazy="false" disables the use of lazy fetching. For information about inheritance mappings see Chapter 10, Inheritance mapping Discriminator Discriminators are required for polymorphic persistence using the table-per-class-hierarchy mapping strategy. It declares a discriminator column of the table. The discriminator column contains marker values that tell the persistence layer what subclass to instantiate for a particular row. Hibernate Core supports the follwoing restricted set of types as discriminator column: string, character, integer, byte, short, boolean, yes_no, true_false. Use to define the discriminator column as well as the discriminator type. 107

120 Chapter 5. Basic O/R Mapping Note The enum DiscriminatorType used in javax.persitence.discriminatorcolumn only contains the values STRING, CHAR and INTEGER which means that not all Hibernate supported types are available via annotation. You can also to express in SQL a virtual discriminator column. This is particularly useful when the discriminator value can be extracted from one or more columns of the table. are to be set on the root entity (once per persisted allows to optionally specify Hibernate specific discriminator options which are not standardized in JPA. The available options are force and insert. The force attribute is useful if the table contains rows with "extra" discriminator values that are not mapped to a persistent class. This could for example occur when working with a legacy database. If force is set to true Hibernate will specify the allowed discriminator values in the SELECT query, even when retrieving all instances of the root class. The second option - insert - tells Hibernate whether or not to include the discriminator column in SQL INSERTs. Usually the column should be part of the INSERT statement, but if your discriminator column is also part of a mapped composite identifier you have to set this option to false. Tip There is also annotation which is deprecated since version 3.6. instead. Finally, on each class of the hierarchy to specify the value stored in the discriminator column for a given entity. If you do not on a class, the fully qualified class name @DiscriminatorColumn( name="planetype", discriminatortype=discriminatortype.string public class public class A320 extends Plane {... In hbm.xml, the <discriminator> element is used to define the discriminator column or formula: 108

121 Inheritance strategy <discriminator column="discriminator_column" type="discriminator_type" force="true false" insert="true false" /> formula="arbitrary sql expression" column (optional - defaults to class): the name of the discriminator column. type (optional - defaults to string): a name that indicates the Hibernate type force (optional - defaults to false): "forces" Hibernate to specify the allowed discriminator values, even when retrieving all instances of the root class. insert (optional - defaults to true): set this to false if your discriminator column is also part of a mapped composite identifier. It tells Hibernate not to include the column in SQL INSERTs. formula (optional): an arbitrary SQL expression that is executed when a type has to be evaluated. It allows content-based discrimination. Actual values of the discriminator column are specified by the discriminator-value attribute of the <class> and <subclass> elements. The formula attribute allows you to declare an arbitrary SQL expression that will be used to evaluate the type of a row. For example: <discriminator formula="case when CLASS_TYPE in ('a', 'b', 'c') then 0 else 1 end" type="integer"/> Joined subclass strategy Each subclass can also be mapped to its own table. This is called the table-per-subclass mapping strategy. An inherited state is retrieved by joining with the table of the superclass. A discriminator column is not required for this mapping strategy. Each subclass must, however, declare a table column holding the object identifier. The primary key of this table is also a foreign key to the superclass table and described by or the @Inheritance(strategy=InheritanceType.JOINED) public class Cat implements @GenericGenerator(name="cat-uuid", strategy="uuid") String getid() { return id;

122 Chapter 5. Basic @PrimaryKeyJoinColumn(name="CAT") public class DomesticCat extends Cat { public String getname() { return name; Note The table name still defaults to the non qualified class name. Also is not set, the primary key / foreign key columns are assumed to have the same names as the primary key columns of the primary table of the superclass. In hbm.xml, use the <joined-subclass> element. For example: <joined-subclass name="classname" table="tablename" proxy="proxyinterface" lazy="true false" dynamic-update="true false" dynamic-insert="true false" schema="schema" catalog="catalog" extends="superclassname" persister="classname" subselect="sql expression" entity-name="entityname" node="element-name"> <key... > <property... />... </joined-subclass> name: the fully qualified class name of the subclass. table: the name of the subclass table. proxy (optional): specifies a class or interface to use for lazy initializing proxies. lazy (optional, defaults to true): setting lazy="false" disables the use of lazy fetching. Use the <key> element to declare the primary key / foreign key column. The mapping at the start of the chapter would then be re-written as: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC 110

123 Inheritance strategy "-//Hibernate/Hibernate Mapping DTD//EN" " <hibernate-mapping package="eg"> <class name="cat" table="cats"> <id name="id" column="uid" type="long"> <generator class="hilo"/> </id> <property name="birthdate" type="date"/> <property name="color" not-null="true"/> <property name="sex" not-null="true"/> <property name="weight"/> <many-to-one name="mate"/> <set name="kittens"> <key column="mother"/> <one-to-many class="cat"/> </set> <joined-subclass name="domesticcat" table="domestic_cats"> <key column="cat"/> <property name="name" type="string"/> </joined-subclass> </class> <class name="eg.dog"> </class> <!-- mapping for Dog could go here --> </hibernate-mapping> For information about inheritance mappings see Chapter 10, Inheritance mapping Table per class strategy A third option is to map only the concrete classes of an inheritance hierarchy to tables. This is called the table-per-concrete-class strategy. Each table defines all persistent states of the class, including the inherited state. In Hibernate, it is not necessary to explicitly map such inheritance hierarchies. You can map each class as a separate entity root. However, if you wish use polymorphic associations (e.g. an association to the superclass of your hierarchy), you need to use the union = InheritanceType.TABLE_PER_CLASS) public class Flight implements Serializable {... Or in hbm.xml: <union-subclass name="classname" table="tablename" 111

124 Chapter 5. Basic O/R Mapping proxy="proxyinterface" lazy="true false" dynamic-update="true false" dynamic-insert="true false" schema="schema" catalog="catalog" extends="superclassname" abstract="true false" persister="classname" subselect="sql expression" entity-name="entityname" node="element-name"> <property... />... </union-subclass> name: the fully qualified class name of the subclass. table: the name of the subclass table. proxy (optional): specifies a class or interface to use for lazy initializing proxies. lazy (optional, defaults to true): setting lazy="false" disables the use of lazy fetching. No discriminator column or key column is required for this mapping strategy. For information about inheritance mappings see Chapter 10, Inheritance mapping Inherit properties from superclasses This is sometimes useful to share common properties through a technical or a business superclass without including it as a regular mapped entity (ie no specific table for this entity). For that purpose you can map public class public Date getlastupdate() {... public String getlastupdater() class Order extends BaseEntity public Integer getid() { In database, this hierarchy will be represented as an Order table having the id, lastupdate and lastupdater columns. The embedded superclass property mappings are copied into their entity subclasses. Remember that the embeddable superclass is not the root of the hierarchy though. 112

125 Inheritance strategy Note Properties from superclasses not mapped are ignored. Note The default access type (field or methods) is used, unless you use annotation. Note The same notion can be applied objects to persist properties from their superclasses. You also need to to do that (this should not be considered as a standard EJB3 feature though) Note It is allowed to mark a class in the middle of the mapped inheritance hierarchy. Note Any class in the hierarchy non annotated will be ignored. You can override columns defined in entity superclasses at the root entity level using public class FlyingObject implements Serializable { public int getaltitude() { return public int getmetricaltitude() { return public PropulsionType getpropulsion() { 113

126 Chapter 5. Basic O/R Mapping... name="altitude", column name="propulsion", joincolumns ) public class Plane extends FlyingObject {... The altitude property will be persisted in an fld_altitude column of table Plane and the propulsion association will be materialized in a fld_propulsion_fk foreign key column. You can classes and properties pointing to object. In hbm.xml, simply map the properties of the superclass in the <class> element of the entity that needs to inherit them Mapping one entity to several tables While not recommended for a fresh schema, some legacy databases force your to map a single entity on several tables. Using class level annotations. To express that a column is in a particular table, use the table parameter referencedcolumnname="id") uniqueconstraints={@uniqueconstraint(columnnames={"storypart2")) ) public class Cat implements Serializable { private Integer id; private String name; private String storypart1; private public Integer getid() { return id; public String getname() { return name; 114

127 Inheritance public String getstorypart1() { return public String getstorypart2() { return storypart2; In this example, name will be in MainCat. storypart1 will be in Cat1 and storypart2 will be in Cat2. Cat1 will be joined to MainCat using the cat_id as a foreign key, and Cat2 using id (ie the same column name, the MainCat id column has). Plus a unique constraint on storypart2 has been set. There is also additional tuning accessible via annotation: fetch: If set to JOIN, the default, Hibernate will use an inner join to retrieve a secondary table defined by a class or its superclasses and an outer join for a secondary table defined by a subclass. If set to SELECT then Hibernate will use a sequential select for a secondary table defined on a subclass, which will be issued only if a row turns out to represent an instance of the subclass. Inner joins will still be used to retrieve a secondary defined by the class and its superclasses. inverse: If true, Hibernate will not try to insert or update the properties defined by this join. Default to false. optional: If enabled (the default), Hibernate will insert a row only if the properties defined by this join are non-null and will always use an outer join to retrieve the properties. foreignkey: defines the Foreign Key name of a secondary table pointing back to the primary table. Make sure to use the secondary table name in the appliesto="cat1", fetch=fetchmode.select, optional=true) public class Cat implements Serializable { private Integer id; private String name; private String storypart1; private String storypart2; 115

128 Chapter 5. Basic public Integer getid() { return id; public String getname() { return public String getstorypart1() { return public String getstorypart2() { return storypart2; In hbm.xml, use the <join> element. <join table="tablename" schema="owner" catalog="catalog" fetch="join select" inverse="true false" optional="true false"> <key... /> </join> <property... />... table: the name of the joined table. schema (optional): overrides the schema name specified by the root <hibernate-mapping> element. catalog (optional): overrides the catalog name specified by the root <hibernate-mapping> element. fetch (optional - defaults to join): if set to join, the default, Hibernate will use an inner join to retrieve a <join> defined by a class or its superclasses. It will use an outer join for a <join> defined by a subclass. If set to select then Hibernate will use a sequential select for a <join> defined on a subclass. This will be issued only if a row represents an instance of the subclass. Inner joins will still be used to retrieve a <join> defined by the class and its superclasses. 116

129 Mapping one to one and one to many associations inverse (optional - defaults to false): if enabled, Hibernate will not insert or update the properties defined by this join. optional (optional - defaults to false): if enabled, Hibernate will insert a row only if the properties defined by this join are non-null. It will always use an outer join to retrieve the properties. For example, address information for a person can be mapped to a separate table while preserving value type semantics for all properties: <class name="person" table="person"> <id name="id" column="person_id">...</id> <join table="address"> <key column="address_id"/> <property name="address"/> <property name="zip"/> <property name="country"/> </join>... This feature is often only useful for legacy data models. We recommend fewer tables than classes and a fine-grained domain model. However, it is useful for switching between inheritance mapping strategies in a single hierarchy, as explained later Mapping one to one and one to many associations To link one entity to an other, you need to map the association property as a to one association. In the relational model, you can either use a foreign key or an association table, or (a bit less common) share the same primary key value between the two entities. To mark an association, use or have a parameter named targetentity which describes the target entity name. You usually don't need this parameter since the default value (the type of the property that stores the association) is good in almost all cases. However this is useful when you want to use interfaces as the return type instead of the regular entity. Setting a value of the cascade attribute to any meaningful value other than nothing will propagate certain operations to the associated object. The meaningful values are divided into three categories. 1. basic operations, which include: persist, merge, delete, save-update, evict, replicate, lock and refresh; 2. special values: delete-orphan or all ; 117

130 Chapter 5. Basic O/R Mapping 3. comma-separated combinations of operation names: cascade="persist,merge,evict" or cascade="all,delete-orphan". See Section 11.11, Transitive persistence for a full explanation. Note that single valued many-to-one associations do not support orphan delete. By default, single point associations are eagerly fetched in JPA 2. You can mark it as lazily fetched by in which case Hibernate will proxy the association and load it when the state of the associated entity is reached. You can force Hibernate not to use a proxy by In this case, the property is fetched lazily when the instance variable is first accessed. This requires build-time bytecode instrumentation. lazy="false" specifies that the association will always be eagerly fetched. With the default JPA options, single-ended associations are loaded with a subsequent select if set to LAZY, or a SQL JOIN is used for EAGER associations. You can however adjust the fetching strategy, ie how data is fetched by FetchMode can be SELECT (a select is triggered when the association needs to be loaded) or JOIN (use a SQL JOIN to load the association while loading the owner entity). JOIN overrides any lazy attribute (an association loaded through a JOIN strategy cannot be lazy) Using a foreign key or an association table An ordinary association to another persistent class is declared using if several entities can point to the the target if only a single entity can point to the the target entity and a foreign key in one table is referencing the primary key column(s) of the target public class Flight implements Serializable cascade = {CascadeType.PERSIST, CascadeType.MERGE public Company getcompany() { return company;... attribute is optional, the default value(s) is the concatenation of the name of the relationship in the owner side, _ (underscore), and the name of the primary key column in the owned side. In this example company_id because the property name is company and the column id of Company is public class Flight implements Serializable cascade = {CascadeType.PERSIST, CascadeType.MERGE, targetentity=companyimpl.class public Company getcompany() { return company; 118

131 Mapping one to one and one to many associations... public interface Company {... You can also map a to one association through an association table. This association table described by annotation will contains a foreign key referencing back the entity table and a a foreign key referencing the target entity public class Flight implements Serializable cascade = {CascadeType.PERSIST, CascadeType.MERGE joincolumns inversejoincolumns ) public Company getcompany() { return company;... Note You can use a SQL fragment to simulate a physical join column using annotations (just like you can use a SQL fragment to simulate a property column via public class Ticket implements + ' ' + lastname)") public Person getowner() { return person;... You can mark an association as mandatory by using the optional=false attribute. We recommend to use Bean annotation as a better alternative however. As a consequence, the foreign key column(s) will be marked as not nullable (if possible). 119

132 Chapter 5. Basic O/R Mapping When Hibernate cannot resolve the association because the expected associated element is not in database (wrong id on the association column), an exception is raised. This might be inconvenient for legacy and badly maintained schemas. You can ask Hibernate to ignore such elements instead of raising an exception using annotation. Example public class public Parent getparent() { Sometimes you want to delegate to your database the deletion of cascade when a given entity is deleted. In this case Hibernate generates a cascade delete constraint at the database level. Example public class public Parent getparent() { Foreign key constraints, while generated by Hibernate, have a fairly unreadable name. You can override the constraint name Example public class public Parent getparent() { alter table Child add constraint FK_PARENT foreign key (parent_id) references Parent 120

133 Mapping one to one and one to many associations Sometimes, you want to link one entity to an other not by the target entity primary key but by a different unique key. You can achieve that by referencing the unique key class Person Integer personnumber; String String initial; String class @JoinColumn(name="first_name", referencedcolumnname="lastname"), ) Person owner This is not encouraged however and should be reserved to legacy mappings. In hbm.xml, mapping an association is similar. The main difference is that is mapped as <many-to-one unique="true"/>, let's dive into the subject. <many-to-one name="propertyname" column="column_name" class="classname" cascade="cascade_style" fetch="join select" update="true false" insert="true false" property-ref="propertynamefromassociatedclass" access="field property ClassName" unique="true false" not-null="true false" optimistic-lock="true false" lazy="proxy no-proxy false" not-found="ignore exception" entity-name="entityname" formula="arbitrary SQL expression" 121

134 Chapter 5. Basic O/R Mapping /> embed-xml="true false" index="index_name" unique_key="unique_key_id" foreign-key="foreign_key_name" name: the name of the property. column (optional): the name of the foreign key column. This can also be specified by nested <column> element(s). class (optional - defaults to the property type determined by reflection): the name of the associated class. cascade (optional): specifies which operations should be cascaded from the parent object to the associated object. fetch (optional - defaults to select): chooses between outer-join fetching or sequential select fetching. update, insert (optional - defaults to true): specifies that the mapped columns should be included in SQL UPDATE and/or INSERT statements. Setting both to false allows a pure "derived" association whose value is initialized from another property that maps to the same column(s), or by a trigger or other application. property-ref (optional): the name of a property of the associated class that is joined to this foreign key. If not specified, the primary key of the associated class is used. access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. unique (optional): enables the DDL generation of a unique constraint for the foreign-key column. By allowing this to be the target of a property-ref, you can make the association multiplicity one-to-one. not-null (optional): enables the DDL generation of a nullability constraint for the foreign key columns. optimistic-lock (optional - defaults to true): specifies that updates to this property do or do not require acquisition of the optimistic lock. In other words, it determines if a version increment should occur when this property is dirty. lazy (optional - defaults to proxy): by default, single point associations are proxied. lazy="no-proxy" specifies that the property should be fetched lazily when the instance variable is first accessed. This requires build-time bytecode instrumentation. lazy="false" specifies that the association will always be eagerly fetched. not-found (optional - defaults to exception): specifies how foreign keys that reference missing rows will be handled. ignore will treat a missing row as a null association. entity-name (optional): the entity name of the associated class. formula (optional): an SQL expression that defines the value for a computed foreign key. Setting a value of the cascade attribute to any meaningful value other than none will propagate certain operations to the associated object. The meaningful values are divided into three categories. First, basic operations, which include: persist, merge, delete, save-update, evict, replicate, lock and refresh; second, special values: delete-orphan; and third,all 122

135 Mapping one to one and one to many associations comma-separated combinations of operation names: cascade="persist,merge,evict" or cascade="all,delete-orphan". See Section 11.11, Transitive persistence for a full explanation. Note that single valued, many-to-one and one-to-one, associations do not support orphan delete. Here is an example of a typical many-to-one declaration: <many-to-one name="product" class="product" column="product_id"/> The property-ref attribute should only be used for mapping legacy data where a foreign key refers to a unique key of the associated table other than the primary key. This is a complicated and confusing relational model. For example, if the Product class had a unique serial number that is not the primary key. The unique attribute controls Hibernate's DDL generation with the SchemaExport tool. <property name="serialnumber" unique="true" type="string" column="serial_number"/> Then the mapping for OrderItem might use: <many-to-one name="product" property-ref="serialnumber" column="product_serial_number"/> This is not encouraged, however. If the referenced unique key comprises multiple properties of the associated entity, you should map the referenced properties inside a named <properties> element. If the referenced unique key is the property of a component, you can specify a property path: <many-to-one name="owner" property-ref="identity.ssn" column="owner_ssn"/> Sharing the primary key with the associated entity The second approach is to ensure an entity and its associated entity share the same primary key. In this case the primary key column is also a foreign key and there is no extra column. These associations are always one to one. Example 5.4. One to One public class Body public Long getid() { return id; 123

136 Chapter 5. Basic O/R = public Heart getheart() { return public class Heart public Long getid() {... Note Many people got confused by these primary key based one to one associations. They can only be lazily loaded if Hibernate knows that the other side of the association is always present. To indicate to Hibernate that it is the case, In hbm.xml, use the following mapping. <one-to-one name="propertyname" class="classname" cascade="cascade_style" constrained="true false" fetch="join select" property-ref="propertynamefromassociatedclass" access="field property ClassName" formula="any SQL expression" lazy="proxy no-proxy false" /> entity-name="entityname" element/@attribute." embed-xml="true false" foreign-key="foreign_key_name" name: the name of the property. class (optional - defaults to the property type determined by reflection): the name of the associated class. cascade (optional): specifies which operations should be cascaded from the parent object to the associated object. 124

137 Mapping one to one and one to many associations constrained (optional): specifies that a foreign key constraint on the primary key of the mapped table and references the table of the associated class. This option affects the order in which save() and delete() are cascaded, and determines whether the association can be proxied. It is also used by the schema export tool. fetch (optional - defaults to select): chooses between outer-join fetching or sequential select fetching. property-ref (optional): the name of a property of the associated class that is joined to the primary key of this class. If not specified, the primary key of the associated class is used. access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. formula (optional): almost all one-to-one associations map to the primary key of the owning entity. If this is not the case, you can specify another column, columns or expression to join on using an SQL formula. See org.hibernate.test.onetooneformula for an example. lazy (optional - defaults to proxy): by default, single point associations are proxied. lazy="no-proxy" specifies that the property should be fetched lazily when the instance variable is first accessed. It requires build-time bytecode instrumentation. lazy="false" specifies that the association will always be eagerly fetched. Note that if constrained="false", proxying is impossible and Hibernate will eagerly fetch the association. entity-name (optional): the entity name of the associated class. Primary key associations do not need an extra table column. If two rows are related by the association, then the two table rows share the same primary key value. To relate two objects by a primary key association, ensure that they are assigned the same identifier value. For a primary key association, add the following mappings to Employee and Person respectively: <one-to-one name="person" class="person"/> <one-to-one name="employee" class="employee" constrained="true"/> Ensure that the primary keys of the related rows in the PERSON and EMPLOYEE tables are equal. You use a special Hibernate identifier generation strategy called foreign: <class name="person" table="person"> <id name="id" column="person_id"> <generator class="foreign"> <param name="property">employee</param> </generator> </id>... <one-to-one name="employee" class="employee" constrained="true"/> 125

138 Chapter 5. Basic O/R Mapping </class> A newly saved instance of Person is assigned the same primary key value as the Employee instance referred with the employee property of that Person Natural-id Although we recommend the use of surrogate keys as primary keys, you should try to identify natural keys for all entities. A natural key is a property or combination of properties that is unique and non-null. It is also immutable. Map the properties of the natural key or map them inside the <natural-id> element. Hibernate will generate the necessary unique key and nullability constraints and, as a result, your mapping will be more public class private Integer id; private String firstname; private private State private String ssn;... //and later on query List results = s.createcriteria( Citizen.class ).add( Restrictions.naturalId().set( "ssn", "1234" ).set( "state", ste ) ).list(); Or in XML, <natural-id mutable="true false"/> <property... /> <many-to-one... />... </natural-id> It is recommended that you implement equals() and hashcode() to compare the natural key properties of the entity. This mapping is not intended for use with entities that have natural primary keys. 126

139 Any mutable (optional - defaults to false): by default, natural identifier properties are assumed to be immutable (constant) Any There is one more type of property mapping. mapping defines a polymorphic association to classes from multiple tables. This type of mapping requires more than one column. The first column contains the type of the associated entity. The remaining columns contain the identifier. It is impossible to specify a foreign key constraint for this kind of association. This is not the usual way of mapping polymorphic associations and you should use this only in special cases. For example, for audit logs, user session data, etc. annotation describes the column holding the metadata information. To link the value of the metadata information and an actual entity type, annotations are used. The metatype attribute allows the application to specify a custom type that maps database column values to persistent classes that have identifier properties of the type specified by idtype. You must specify the mapping from values of the metatype to class metacolumn name = "property_type" ), fetch=fetchtype.eager idtype = "integer", metatype = "string", metavalues = value = "S", targetentity = StringProperty.class value = "I", targetentity = IntegerProperty.class ) name = "property_id" ) public Property getmainproperty() { return mainproperty; Note can be mutualized and reused. It is recommended to place it as a package metadata in this case. //on a name="property" idtype = "integer", metatype = "string", metavalues = value = "S", targetentity = StringProperty.class value = "I", targetentity = IntegerProperty.class ) ) package org.hibernate.test.annotations.any; //in a metadef="property", metacolumn name = "property_type" ), fetch=fetchtype.eager name = "property_id" ) public Property getmainproperty() { return mainproperty; 127

140 Chapter 5. Basic O/R Mapping The hbm.xml equivalent is: <any name="being" id-type="long" meta-type="string"> <meta-value value="tbl_animal" class="animal"/> <meta-value value="tbl_human" class="human"/> <meta-value value="tbl_alien" class="alien"/> <column name="table_name"/> <column name="id"/> </any> Note You cannot mutualize the metadata in hbm.xml as you can in annotations. <any name="propertyname" id-type="idtypename" meta-type="metatypename" cascade="cascade_style" access="field property ClassName" > </any> optimistic-lock="true false" <meta-value... /> <meta-value... />... <column... /> <column... />... name: the property name. id-type: the identifier type. meta-type (optional - defaults to string): any type that is allowed for a discriminator mapping. cascade (optional- defaults to none): the cascade style. access (optional - defaults to property): the strategy Hibernate uses for accessing the property value. optimistic-lock (optional - defaults to true): specifies that updates to this property either do or do not require acquisition of the optimistic lock. It defines whether a version increment should occur if this property is dirty. 128

141 Properties Properties The <properties> element allows the definition of a named, logical grouping of the properties of a class. The most important use of the construct is that it allows a combination of properties to be the target of a property-ref. It is also a convenient way to define a multi-column unique constraint. For example: <properties name="logicalname" insert="true false" update="true false" optimistic-lock="true false" > unique="true false" <property.../> <many-to-one... />... </properties> name: the logical name of the grouping. It is not an actual property name. insert: do the mapped columns appear in SQL INSERTs? update: do the mapped columns appear in SQL UPDATEs? optimistic-lock (optional - defaults to true): specifies that updates to these properties either do or do not require acquisition of the optimistic lock. It determines if a version increment should occur when these properties are dirty. unique (optional - defaults to false): specifies that a unique constraint exists upon all mapped columns of the component. For example, if we have the following <properties> mapping: <class name="person"> <id name="personnumber"/>... <properties name="name" unique="true" update="false"> <property name="firstname"/> <property name="initial"/> <property name="lastname"/> </properties> </class> You might have some legacy data association that refers to this unique key of the Person table, instead of to the primary key: 129

142 Chapter 5. Basic O/R Mapping <many-to-one name="owner" class="person" property-ref="name"> <column name="firstname"/> <column name="initial"/> <column name="lastname"/> </many-to-one> Note When using annotations as a mapping strategy, such construct is not necessary as the binding between a column and its related column on the associated table is done class Person Integer personnumber; String String initial; String class @JoinColumn(name="first_name", referencedcolumnname="lastname"), ) Person owner The use of this outside the context of mapping legacy data is not recommended Some hbm.xml specificities The hbm.xml structure has some specificities naturally not present when using annotations, let's describe them briefly Doctype All XML mappings should declare the doctype shown. The actual DTD can be found at the URL above, in the directory hibernate-x.x.x/src/org/hibernate, or in hibernate3.jar. Hibernate will always look for the DTD in its classpath first. If you experience lookups of the DTD using an Internet connection, check the DTD declaration against the contents of your classpath. 130

143 Some hbm.xml specificities EntityResolver Hibernate will first attempt to resolve DTDs in its classpath. It does this is by registering a custom org.xml.sax.entityresolver implementation with the SAXReader it uses to read in the xml files. This custom EntityResolver recognizes two different systemid namespaces: a hibernate namespace is recognized whenever the resolver encounters a systemid starting with The resolver attempts to resolve these entities via the classloader which loaded the Hibernate classes. a user namespace is recognized whenever the resolver encounters a systemid using a classpath:// URL protocol. The resolver will attempt to resolve these entities via (1) the current thread context classloader and (2) the classloader which loaded the Hibernate classes. The following is an example of utilizing user namespacing: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" " [ <!ENTITY types SYSTEM "classpath://your/domain/types.xml"> ]> <hibernate-mapping package="your.domain"> <class name="myentity"> <id name="id" type="my-custom-id-type">... </id> <class> &types; </hibernate-mapping> Where types.xml is a resource in the your.domain package and contains a custom typedef Hibernate-mapping This element has several optional attributes. The schema and catalog attributes specify that tables referred to in this mapping belong to the named schema and/or catalog. If they are specified, tablenames will be qualified by the given schema and catalog names. If they are missing, tablenames will be unqualified. The default-cascade attribute specifies what cascade style should be assumed for properties and collections that do not specify a cascade attribute. By default, the auto-import attribute allows you to use unqualified class names in the query language. <hibernate-mapping schema="schemaname" catalog="catalogname" 131

144 Chapter 5. Basic O/R Mapping default-cascade="cascade_style" default-access="field property ClassName" default-lazy="true false" auto-import="true false" /> package="package.name" schema (optional): the name of a database schema. catalog (optional): the name of a database catalog. default-cascade (optional - defaults to none): a default cascade style. default-access (optional - defaults to property): the strategy Hibernate should use for accessing all properties. It can be a custom implementation of PropertyAccessor. default-lazy (optional - defaults to true): the default value for unspecified lazy attributes of class and collection mappings. auto-import (optional - defaults to true): specifies whether we can use unqualified class names of classes in this mapping in the query language. package (optional): specifies a package prefix to use for unqualified class names in the mapping document. If you have two persistent classes with the same unqualified name, you should set autoimport="false". An exception will result if you attempt to assign two classes to the same "imported" name. The hibernate-mapping element allows you to nest several persistent <class> mappings, as shown above. It is, however, good practice (and expected by some tools) to map only a single persistent class, or a single class hierarchy, in one mapping file and name it after the persistent superclass. For example, Cat.hbm.xml, Dog.hbm.xml, or if using inheritance, Animal.hbm.xml Key The <key> element is featured a few times within this guide. It appears anywhere the parent mapping element defines a join to a new table that references the primary key of the original table. It also defines the foreign key in the joined table: <key column="columnname" on-delete="noaction cascade" property-ref="propertyname" not-null="true false" update="true false" /> unique="true false" 132

145 Some hbm.xml specificities column (optional): the name of the foreign key column. This can also be specified by nested <column> element(s). on-delete (optional - defaults to noaction): specifies whether the foreign key constraint has database-level cascade delete enabled. property-ref (optional): specifies that the foreign key refers to columns that are not the primary key of the original table. It is provided for legacy data. not-null (optional): specifies that the foreign key columns are not nullable. This is implied whenever the foreign key is also part of the primary key. update (optional): specifies that the foreign key should never be updated. This is implied whenever the foreign key is also part of the primary key. unique (optional): specifies that the foreign key should have a unique constraint. This is implied whenever the foreign key is also the primary key. For systems where delete performance is important, we recommend that all keys should be defined on-delete="cascade". Hibernate uses a database-level ON CASCADE DELETE constraint, instead of many individual DELETE statements. Be aware that this feature bypasses Hibernate's usual optimistic locking strategy for versioned data. The not-null and update attributes are useful when mapping a unidirectional one-to-many association. If you map a unidirectional one-to-many association to a non-nullable foreign key, you must declare the key column using <key not-null="true"> Import If your application has two persistent classes with the same name, and you do not want to specify the fully qualified package name in Hibernate queries, classes can be "imported" explicitly, rather than relying upon auto-import="true". You can also import classes and interfaces that are not explicitly mapped: <import class="java.lang.object" rename="universe"/> <import class="classname" /> rename="shortname" class: the fully qualified class name of any Java class. rename (optional - defaults to the unqualified class name): a name that can be used in the query language. 133

146 Chapter 5. Basic O/R Mapping Note This feature is unique to hbm.xml and is not supported in annotations Column and formula elements Mapping elements which accept a column attribute will alternatively accept a <column> subelement. Likewise, <formula> is an alternative to the formula attribute. For example: <column name="column_name" length="n" precision="n" scale="n" not-null="true false" unique="true false" unique-key="multicolumn_unique_key_name" index="index_name" sql-type="sql_type_name" check="sql expression" default="sql expression" read="sql expression" write="sql expression"/> <formula>sql expression</formula> Most of the attributes on column provide a means of tailoring the DDL during automatic schema generation. The read and write attributes allow you to specify custom SQL that Hibernate will use to access the column's value. For more on this, see the discussion of column read and write expressions. The column and formula elements can even be combined within the same property or association mapping to express, for example, exotic join conditions. <many-to-one name="homeaddress" class="address" insert="false" update="false"> <column name="person_id" not-null="true" length="10"/> <formula>'mailing'</formula> </many-to-one> 5.2. Hibernate types Entities and values In relation to the persistence service, Java language-level objects are classified into two groups: 134

147 Basic value types An entity exists independently of any other objects holding references to the entity. Contrast this with the usual Java model, where an unreferenced object is garbage collected. Entities must be explicitly saved and deleted. Saves and deletions, however, can be cascaded from a parent entity to its children. This is different from the ODMG model of object persistence by reachability and corresponds more closely to how application objects are usually used in large systems. Entities support circular and shared references. They can also be versioned. An entity's persistent state consists of references to other entities and instances of value types. Values are primitives: collections (not what is inside a collection), components and certain immutable objects. Unlike entities, values in particular collections and components, are persisted and deleted by reachability. Since value objects and primitives are persisted and deleted along with their containing entity, they cannot be independently versioned. Values have no independent identity, so they cannot be shared by two entities or collections. Until now, we have been using the term "persistent class" to refer to entities. We will continue to do that. Not all user-defined classes with a persistent state, however, are entities. A component is a user-defined class with value semantics. A Java property of type java.lang.string also has value semantics. Given this definition, all types (classes) provided by the JDK have value type semantics in Java, while user-defined types can be mapped with entity or value type semantics. This decision is up to the application developer. An entity class in a domain model will normally have shared references to a single instance of that class, while composition or aggregation usually translates to a value type. We will revisit both concepts throughout this reference guide. The challenge is to map the Java type system, and the developers' definition of entities and value types, to the SQL/database type system. The bridge between both systems is provided by Hibernate. For entities, <class>, <subclass> and so on are used. For value types we use <property>, <component>etc., that usually have a type attribute. The value of this attribute is the name of a Hibernate mapping type. Hibernate provides a range of mappings for standard JDK value types out of the box. You can write your own mapping types and implement your own custom conversion strategies. With the exception of collections, all built-in Hibernate types support null semantics Basic value types The built-in basic mapping types can be roughly categorized into the following: 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). 135

148 Chapter 5. Basic O/R Mapping date, time, timestamp Type mappings from java.util.date and its subclasses to SQL types DATE, TIME and TIMESTAMP (or equivalent). calendar, calendar_date Type mappings from java.util.calendar to SQL types TIMESTAMP and DATE (or equivalent). big_decimal, big_integer Type mappings from java.math.bigdecimal and java.math.biginteger to NUMERIC (or Oracle NUMBER). locale, timezone, currency Type mappings from java.util.locale, java.util.timezone and java.util.currency to VARCHAR (or Oracle VARCHAR2). Instances of Locale and Currency are mapped to their ISO codes. Instances of TimeZone are mapped to their ID. 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 LONGVARCHAR or TEXT type. image Maps long byte arrays to a SQL LONGVARBINARY. serializable Maps serializable Java types to an appropriate SQL binary type. You can also indicate the Hibernate type serializable with the name of a serializable Java class or interface that does not default to a basic type. clob, blob Type mappings for the JDBC classes java.sql.clob and java.sql.blob. These types can be inconvenient for some applications, since the blob or clob object cannot be reused outside of a transaction. Driver support is patchy and inconsistent. materialized_clob Maps long Java strings to a SQL CLOB type. When read, the CLOB value is immediately materialized into a Java string. Some drivers require the CLOB value to be read within a transaction. Once materialized, the Java string is available outside of the transaction. materialized_blob Maps long Java byte arrays to a SQL BLOB type. When read, the BLOB value is immediately materialized into a byte array. Some drivers require the BLOB value to be read within a transaction. Once materialized, the byte array is available outside of the transaction. 136

149 Custom value types imm_date, imm_time, imm_timestamp, imm_calendar, imm_calendar_date, imm_serializable, imm_binary Type mappings for what are considered mutable Java types. This is where Hibernate makes certain optimizations appropriate only for immutable Java types, and the application treats the object as immutable. For example, you should not call Date.setTime() for an instance mapped as imm_timestamp. To change the value of the property, and have that change made persistent, the application must assign a new, nonidentical, object to the property. Unique identifiers of entities and collections can be of any basic type except binary, blob and clob. Composite identifiers are also allowed. See below for more information. The basic value types have corresponding Type constants defined on org.hibernate.hibernate. For example, Hibernate.STRING represents the string type Custom value types It is relatively easy for developers to create their own value types. For example, you might want to persist properties of type java.lang.biginteger to VARCHAR columns. Hibernate does not provide a built-in type for this. Custom types are not limited to mapping a property, or collection element, to a single table column. So, for example, you might have a Java property getname()/ setname() of type java.lang.string that is persisted to the columns FIRST_NAME, INITIAL, SURNAME. To implement a custom type, implement either org.hibernate.usertype or org.hibernate.compositeusertype and declare properties using the fully qualified classname of the type. View org.hibernate.test.doublestringtype to see the kind of things that are possible. <property name="twostrings" type="org.hibernate.test.doublestringtype"> <column name="first_string"/> <column name="second_string"/> </property> Notice the use of <column> tags to map a property to multiple columns. The CompositeUserType, EnhancedUserType, UserCollectionType, and UserVersionType interfaces provide support for more specialized uses. You can even supply parameters to a UserType in the mapping file. To do this, your UserType must implement the org.hibernate.usertype.parameterizedtype interface. To supply parameters to your custom type, you can use the <type> element in your mapping files. <property name="priority"> <type name="com.mycompany.usertypes.defaultvalueintegertype"> <param name="default">0</param> </type> </property> 137

150 Chapter 5. Basic O/R Mapping The UserType can now retrieve the value for the parameter named default from the Properties object passed to it. If you regularly use a certain UserType, it is useful to define a shorter name for it. You can do this using the <typedef> element. Typedefs assign a name to a custom type, and can also contain a list of default parameter values if the type is parameterized. <typedef class="com.mycompany.usertypes.defaultvalueintegertype" name="default_zero"> <param name="default">0</param> </typedef> <property name="priority" type="default_zero"/> It is also possible to override the parameters supplied in a typedef on a case-by-case basis by using type parameters on the property mapping. Even though Hibernate's rich range of built-in types and support for components means you will rarely need to use a custom type, it is considered good practice to use custom types for nonentity classes that occur frequently in your application. For example, a MonetaryAmount class is a good candidate for a CompositeUserType, even though it could be mapped as a component. One reason for this is abstraction. With a custom type, your mapping documents would be protected against changes to the way monetary values are represented Mapping a class more than once It is possible to provide more than one mapping for a particular persistent class. In this case, you must specify an entity name to disambiguate between instances of the two mapped entities. By default, the entity name is the same as the class name. Hibernate lets you specify the entity name when working with persistent objects, when writing queries, or when mapping associations to the named entity. <class name="contract" table="contracts" entity-name="currentcontract">... <set name="history" inverse="true" order-by="effectiveenddate desc"> <key column="currentcontractid"/> <one-to-many entity-name="historicalcontract"/> </set> </class> <class name="contract" table="contracthistory" entity-name="historicalcontract">... <many-to-one name="currentcontract" column="currentcontractid" entity-name="currentcontract"/> 138

151 SQL quoted identifiers </class> Associations are now specified using entity-name instead of class. Note This feature is not supported in Annotations 5.4. SQL quoted identifiers You can 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. This is usually double quotes, but the SQL Server uses brackets and MySQL Item`") class Id`") Integer #`") int itemnumber <class name="lineitem" table="`line Item`"> <id name="id" column="`item Id`"/><generator class="assigned"/></id> <property name="itemnumber" column="`item #`"/>... </class> 5.5. Generated properties Generated properties are properties that have their values generated by the database. Typically, Hibernate applications needed to refresh objects that contain any properties for which the database was generating values. Marking properties as generated, however, lets the application delegate this responsibility to Hibernate. When Hibernate issues an SQL INSERT or UPDATE for an entity that has defined generated properties, it immediately issues a select afterwards to retrieve the generated values. Properties marked as generated must additionally be non-insertable and non-updateable. Only versions, timestamps, and simple properties, can be marked as generated. never (the default): the given property value is not generated within the database. insert: the given property value is generated on insert, but is not regenerated on subsequent updates. Properties like created-date fall into this category. Even though version and timestamp properties can be marked as generated, this option is not available. always: the property value is generated both on insert and on update. 139

152 Chapter 5. Basic O/R Mapping To mark a property as generated, 5.6. Column transformers: read and write expressions Hibernate allows you to customize the SQL it uses to read and write the values of columns mapped to simple properties. For example, if your database provides a set of data encryption functions, you can invoke them for individual columns like class read="decrypt(credit_card_num)", write="encrypt(?)") public String getcreditcardnumber() { return creditcardnumber; public void setcreditcardnumber(string number) { this.creditcardnumber = number; private String creditcardnumber; or in XML <property name="creditcardnumber"> <column name="credit_card_num" read="decrypt(credit_card_num)" write="encrypt(?)"/> </property> Note You can use the plural if more than one columns need to define either of these rules. If a property uses more that one column, you must use the forcolumn attribute to specify which column, the expressions are class @Column(name="exp_date") forcolumn="credit_card_num", read="decrypt(credit_card_num)", write="encrypt(?)") public CreditCard getcreditcard() { return creditcard; 140

153 Auxiliary database objects public void setcreditcard(creditcard card) { this.creditcard = card; private CreditCard creditcard; Hibernate applies the custom expressions automatically whenever the property is referenced in a query. This functionality is similar to a derived-property formula with two differences: The property is backed by one or more columns that are exported as part of automatic schema generation. The property is read-write, not read-only. The write expression, if specified, must contain exactly one '?' placeholder for the value Auxiliary database objects Auxiliary database objects allow for the CREATE and DROP of arbitrary database objects. In conjunction with Hibernate's schema evolution tools, they have the ability to fully define a user schema within the Hibernate mapping files. Although designed specifically for creating and dropping things like triggers or stored procedures, any SQL command that can be run via a java.sql.statement.execute() method is valid (for example, ALTERs, INSERTS, etc.). There are essentially two modes for defining auxiliary database objects: The first mode is to explicitly list the CREATE and DROP commands in the mapping file: <hibernate-mapping>... <database-object> <create>create TRIGGER my_trigger...</create> <drop>drop TRIGGER my_trigger</drop> </database-object> </hibernate-mapping> The second mode is to supply a custom class that constructs the CREATE and DROP commands. This custom class must implement the org.hibernate.mapping.auxiliarydatabaseobject interface. <hibernate-mapping>... <database-object> <definition class="mytriggerdefinition"/> </database-object> </hibernate-mapping> Additionally, these database objects can be optionally scoped so that they only apply when certain dialects are used. 141

154 Chapter 5. Basic O/R Mapping <hibernate-mapping>... <database-object> <definition class="mytriggerdefinition"/> <dialect-scope name="org.hibernate.dialect.oracle9idialect"/> <dialect-scope name="org.hibernate.dialect.oracle10gdialect"/> </database-object> </hibernate-mapping> Note This feature is not supported in Annotations 142

155 Chapter 6. Types As an Object/Relational Mapping solution, Hibernate deals with both the Java and JDBC representations of application data. An online catalog application, for example, most likely has Product object with a number of attributes such as a sku, name, etc. For these individual attributes, Hibernate must be able to read the values out of the database and write them back. This 'marshalling' is the function of a Hibernate type, which is an implementation of the org.hibernate.type.type interface. In addition, a Hibernate type describes various aspects of behavior of the Java type such as "how is equality checked?" or "how are values cloned?". Important A Hibernate type is neither a Java type nor a SQL datatype; it provides a information about both. When you encounter the term type in regards to Hibernate be aware that usage might refer to the Java type, the SQL/JDBC type or the Hibernate type. Hibernate categorizes types into two high-level groups: value types (see Section 6.1, Value types ) and entity types (see Section 6.2, Entity types ) Value types The main distinguishing characteristic of a value type is the fact that they do not define their own lifecycle. We say that they are "owned" by something else (specifically an entity, as we will see later) which defines their lifecycle. Value types are further classified into 3 sub-categories: basic types (see Section 6.1.1, Basic value types ), composite types (see Section 6.1.2, Composite types ) amd collection types (see Section 6.1.3, Collection types ) Basic value types The norm for basic value types is that they map a single database value (column) to a single, nonaggregated Java type. Hibernate provides a number of built-in basic types, which we will present in the following sections by the Java type. Mainly these follow the natural mappings recommended in the JDBC specification. We will later cover how to override these mapping and how to provide and use alternative type mappings java.lang.string org.hibernate.type.stringtype Maps a string to the JDBC VARCHAR type. This is the standard mapping for a string if no Hibernate type is specified. Registered under string and java.lang.string in the type registry (see Section 6.5, Type registry ). 143

156 Chapter 6. Types org.hibernate.type.materializedclob Maps a string to a JDBC CLOB type Registered under materialized_clob in the type registry (see Section 6.5, Type registry ). org.hibernate.type.texttype Maps a string to a JDBC LONGVARCHAR type Registered under text in the type registry (see Section 6.5, Type registry ) java.lang.character (or char primitive) org.hibernate.type.charactertype Maps a char or java.lang.character to a JDBC CHAR Registered under char and java.lang.character in the type registry (see Section 6.5, Type registry ) java.lang.boolean (or boolean primitive) org.hibernate.type.booleantype Maps a boolean to a JDBC BIT type Registered under boolean and java.lang.boolean in the type registry (see Section 6.5, Type registry ). org.hibernate.type.numericbooleantype Maps a boolean to a JDBC INTEGER type as 0 = false, 1 = true Registered under numeric_boolean in the type registry (see Section 6.5, Type registry ). org.hibernate.type.yesnotype Maps a boolean to a JDBC CHAR type as ('N' 'n') = false, ( 'Y' 'y' ) = true Registered under yes_no in the type registry (see Section 6.5, Type registry ). org.hibernate.type.truefalsetype Maps a boolean to a JDBC CHAR type as ('F' 'f') = false, ( 'T' 't' ) = true Registered under true_false in the type registry (see Section 6.5, Type registry ) java.lang.byte (or byte primitive) org.hibernate.type.bytetype Maps a byte or java.lang.byte to a JDBC TINYINT Registered under byte and java.lang.byte in the type registry (see Section 6.5, Type registry ). 144

157 Basic value types java.lang.short (or short primitive) org.hibernate.type.shorttype Maps a short or java.lang.short to a JDBC SMALLINT Registered under short and java.lang.short in the type registry (see Section 6.5, Type registry ) java.lang.integer (or int primitive) org.hibernate.type.integertypes Maps an int or java.lang.integer to a JDBC INTEGER Registered under int and java.lang.integerin the type registry (see Section 6.5, Type registry ) java.lang.long (or long primitive) org.hibernate.type.longtype Maps a long or java.lang.long to a JDBC BIGINT Registered under long and java.lang.long in the type registry (see Section 6.5, Type registry ) java.lang.float (or float primitive) org.hibernate.type.floattype Maps a float or java.lang.float to a JDBC FLOAT Registered under float and java.lang.float in the type registry (see Section 6.5, Type registry ) java.lang.double (or double primitive) org.hibernate.type.doubletype Maps a double or java.lang.double to a JDBC DOUBLE Registered under double and java.lang.double in the type registry (see Section 6.5, Type registry ) java.math.biginteger org.hibernate.type.bigintegertype Maps a java.math.biginteger to a JDBC NUMERIC Registered under big_integer and java.math.biginteger in the type registry (see Section 6.5, Type registry ). 145

158 Chapter 6. Types java.math.bigdecimal org.hibernate.type.bigdecimaltype Maps a java.math.bigdecimal to a JDBC NUMERIC Registered under big_decimal and java.math.bigdecimal in the type registry (see Section 6.5, Type registry ) java.util.date or java.sql.timestamp org.hibernate.type.timestamptype Maps a java.sql.timestamp to a JDBC TIMESTAMP Registered under timestamp, java.sql.timestamp and java.util.date in the type registry (see Section 6.5, Type registry ) java.sql.time org.hibernate.type.timetype Maps a java.sql.time to a JDBC TIME Registered under time and java.sql.time in the type registry (see Section 6.5, Type registry ) java.sql.date org.hibernate.type.datetype Maps a java.sql.date to a JDBC DATE Registered under date and java.sql.date in the type registry (see Section 6.5, Type registry ) java.util.calendar org.hibernate.type.calendartype Maps a java.util.calendar to a JDBC TIMESTAMP Registered under calendar, java.util.calendar and java.util.gregoriancalendar in the type registry (see Section 6.5, Type registry ). org.hibernate.type.calendardatetype Maps a java.util.calendar to a JDBC DATE Registered under calendar_date in the type registry (see Section 6.5, Type registry ) java.util.currency org.hibernate.type.currencytype Maps a java.util.currency to a JDBC VARCHAR (using the Currency code) 146

159 Basic value types Registered under currency and java.util.currency in the type registry (see Section 6.5, Type registry ) java.util.locale org.hibernate.type.localetype Maps a java.util.locale to a JDBC VARCHAR (using the Locale code) Registered under locale and java.util.locale in the type registry (see Section 6.5, Type registry ) java.util.timezone org.hibernate.type.timezonetype Maps a java.util.timezone to a JDBC VARCHAR (using the TimeZone ID) Registered under timezone and java.util.timezone in the type registry (see Section 6.5, Type registry ) java.net.url org.hibernate.type.urltype Maps a java.net.url to a JDBC VARCHAR (using the external form) Registered under url and java.net.url in the type registry (see Section 6.5, Type registry ) java.lang.class org.hibernate.type.classtype Maps a java.lang.class to a JDBC VARCHAR (using the Class name) Registered under class and java.lang.class in the type registry (see Section 6.5, Type registry ) java.sql.blob org.hibernate.type.blobtype Maps a java.sql.blob to a JDBC BLOB Registered under blob and java.sql.blob in the type registry (see Section 6.5, Type registry ) java.sql.clob org.hibernate.type.clobtype Maps a java.sql.clob to a JDBC CLOB Registered under clob and java.sql.clob in the type registry (see Section 6.5, Type registry ). 147

160 Chapter 6. Types byte[] org.hibernate.type.binarytype Maps a primitive byte[] to a JDBC VARBINARY Registered under binary and byte[] in the type registry (see Section 6.5, Type registry ). org.hibernate.type.materializedblobtype Maps a primitive byte[] to a JDBC BLOB Registered under materialized_blob in the type registry (see Section 6.5, Type registry ). org.hibernate.type.imagetype Maps a primitive byte[] to a JDBC LONGVARBINARY Registered under image in the type registry (see Section 6.5, Type registry ) Byte[] org.hibernate.type.binarytype Maps a java.lang.byte[] to a JDBC VARBINARY Registered under wrapper-binary, Byte[] and java.lang.byte[] in the type registry (see Section 6.5, Type registry ) char[] org.hibernate.type.chararraytype Maps a char[] to a JDBC VARCHAR Registered under characters and char[] in the type registry (see Section 6.5, Type registry ) Character[] org.hibernate.type.characterarraytype Maps a java.lang.character[] to a JDBC VARCHAR Registered under wrapper-characters, Character[] and java.lang.character[] in the type registry (see Section 6.5, Type registry ) java.util.uuid org.hibernate.type.uuidbinarytype Maps a java.util.uuid to a JDBC BINARY Registered under uuid-binary and java.util.uuid in the type registry (see Section 6.5, Type registry ). 148

161 Composite types org.hibernate.type.uuidchartype Maps a java.util.uuid to a JDBC CHAR (though VARCHAR is fine too for existing schemas) Registered under uuid-char in the type registry (see Section 6.5, Type registry ). org.hibernate.type.postgresuuidtype Maps a java.util.uuid to the PostgreSQL UUID data type (through Types#OTHER which is how the PostgreSQL JDBC driver defines it). Registered under pg-uuid in the type registry (see Section 6.5, Type registry ) java.io.serializable org.hibernate.type.serializabletype Maps implementors of java.lang.serializable to a JDBC VARBINARY Unlike the other value types, there are multiple instances of this type. It gets registered once under java.io.serializable. Additionally it gets registered under the specific java.io.serializable implementation class names Composite types Note The Java Persistence API calls these embedded types, while Hibernate traditionally called them components. Just be aware that both terms are used and mean the same thing in the scope of discussing Hibernate. Components represent aggregations of values into a single Java type. For example, you might have an Address class that aggregates street, city, state, etc information or a Name class that aggregates the parts of a person's Name. In many ways a component looks exactly like an entity. They are both (generally speaking) classes written specifically for the application. They both might have references to other application-specific classes, as well as to collections and simple JDK types. As discussed before, the only distinguishing factory is the fact that a component does not own its own lifecycle nor does it define an identifier Collection types Important It is critical understand that we mean the collection itself, not its contents. The contents of the collection can in turn be basic, component or entity types (though not collections), but the collection itself is owned. Collections are covered in Chapter 7, Collection mapping. 149

162 Chapter 6. Types 6.2. Entity types The definition of entities is covered in detail in Chapter 4, Persistent Classes. For the purpose of this discussion, it is enough to say that entities are (generally application-specific) classes which correlate to rows in a table. Specifically they correlate to the row by means of a unique identifier. Because of this unique identifier, entities exist independently and define their own lifecycle. As an example, when we delete a Membership, both the User and Group entities remain. Note This notion of entity independence can be modified by the application developer using the concept of cascades. Cascades allow certain operations to continue (or "cascade") across an association from one entity to another. Cascades are covered in detail in Chapter 8, Association Mappings Significance of type categories Why do we spend so much time categorizing the various types of types? What is the significance of the distinction? The main categorization was between entity types and value types. To review we said that entities, by nature of their unique identifier, exist independently of other objects whereas values do not. An application cannot "delete" a Product sku; instead, the sku is removed when the Product itself is deleted (obviously you can update the sku of that Product to null to make it "go away", but even there the access is done through the Product). Nor can you define an association to that Product sku. You can define an association to Product based on its sku, assuming sku is unique, but that is totally different. TBC Custom types Hibernate makes it relatively easy for developers to create their own value types. For example, you might want to persist properties of type java.lang.biginteger to VARCHAR columns. Custom types are not limited to mapping values to a single table column. So, for example, you might want to concatenate together FIRST_NAME, INITIAL and SURNAME columns into a java.lang.string. There are 3 approaches to developing a custom Hibernate type. As a means of illustrating the different approaches, lets consider a use case where we need to compose a java.math.bigdecimal and java.util.currency together into a custom Money class Custom types using org.hibernate.type.type The first approach is to directly implement the org.hibernate.type.type interface (or one of its derivatives). Probably, you will be more interested in the more specific 150

163 Custom types using org.hibernate.type.type org.hibernate.type.basictype contract which would allow registration of the type (see Section 6.5, Type registry ). The benefit of this registration is that whenever the metadata for a particular property does not specify the Hibernate type to use, Hibernate will consult the registry for the exposed property type. In our example, the property type would be Money, which is the key we would use to register our type in the registry: Example 6.1. Defining and registering the custom Type public class MoneyType implements BasicType { public String[] getregistrationkeys() { return new String[] { Money.class.getName() ; public int[] sqltypes(mapping mapping) { // We will simply use delegation to the standard basic types for BigDecimal and Currency for many of the // Type methods... return new int[] { BigDecimalType.INSTANCE.sqlType(), CurrencyType.INSTANCE.sqlType(), ; // we could also have honored any registry overrides via... //return new int[] { // mappings.gettyperesolver().basic( BigDecimal.class.getName() ).sqltypes( mappings )[0], // mappings.gettyperesolver().basic( Currency.class.getName() ).sqltypes( mappings ) [0] //; public Class getreturnedclass() { return Money.class; public Object nullsafeget(resultset rs, String[] names, SessionImplementor session, Object owner) throws SQLEx assert names.length == 2; BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check return amount == null && currency == null? null : new Money( amount, currency ); public void nullsafeset(preparedstatement st, Object value, int index, boolean[] settable, SessionImplementor throws SQLException { if ( value == null ) { BigDecimalType.INSTANCE.set( st, null, index ); CurrencyType.INSTANCE.set( st, null, index+1 ); else { final Money money = (Money) value; BigDecimalType.INSTANCE.set( st, money.getamount(), index ); CurrencyType.INSTANCE.set( st, money.getcurrency(), index+1 ); 151

164 Chapter 6. Types... Configuration cfg = new Configuration(); cfg.registertypeoverride( new MoneyType() ); cfg...; Important It is important that we registered the type before adding mappings Custom types using org.hibernate.usertype.usertype Note Both org.hibernate.usertype.usertype and org.hibernate.usertype.compositeusertype were originally added to isolate user code from internal changes to the org.hibernate.type.type interfaces. The second approach is the use the org.hibernate.usertype.usertype interface, which presents a somewhat simplified view of the org.hibernate.type.type interface. Using a org.hibernate.usertype.usertype, our Money custom type would look as follows: Example 6.2. Defining the custom UserType public class MoneyType implements UserType { public int[] sqltypes() { return new int[] { BigDecimalType.INSTANCE.sqlType(), CurrencyType.INSTANCE.sqlType(), ; public Class getreturnedclass() { return Money.class; public Object nullsafeget(resultset rs, String[] names, Object owner) throws SQLException { assert names.length == 2; BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check return amount == null && currency == null? null : new Money( amount, currency ); public void nullsafeset(preparedstatement st, Object value, int index) throws SQLException { if ( value == null ) { BigDecimalType.INSTANCE.set( st, null, index ); 152

165 Custom types using org.hibernate.usertype.compositeusertype CurrencyType.INSTANCE.set( st, null, index+1 ); else { final Money money = (Money) value; BigDecimalType.INSTANCE.set( st, money.getamount(), index ); CurrencyType.INSTANCE.set( st, money.getcurrency(), index+1 );... There is not much difference between the org.hibernate.type.type example and the org.hibernate.usertype.usertype example, but that is only because of the snippets shown. If you choose the org.hibernate.type.type approach there are quite a few more methods you would need to implement as compared to the org.hibernate.usertype.usertype Custom types using org.hibernate.usertype.compositeusertype The third and final approach is the use the org.hibernate.usertype.compositeusertype interface, which differs from org.hibernate.usertype.usertype in that it gives us the ability to provide Hibernate the information to handle the composition within the Money class (specifically the 2 attributes). This would give us the capability, for example, to reference the amount attribute in an HQL query. Using a org.hibernate.usertype.compositeusertype, our Money custom type would look as follows: Example 6.3. Defining the custom CompositeUserType public class MoneyType implements CompositeUserType { public String[] getpropertynames() { // ORDER IS IMPORTANT! it must match the order the columns are defined in the property mapping return new String[] { "amount", "currency" ; public Type[] getpropertytypes() { return new Type[] { BigDecimalType.INSTANCE, CurrencyType.INSTANCE ; public Class getreturnedclass() { return Money.class; public Object getpropertyvalue(object component, int propertyindex) { if ( component == null ) { return null; final Money money = (Money) component; switch ( propertyindex ) { case 0: { return money.getamount(); 153

166 Chapter 6. Types case 1: { return money.getcurrency(); default: { throw new HibernateException( "Invalid property index [" + propertyindex + "]" ); public void setpropertyvalue(object component, int propertyindex, Object value) throws HibernateException { if ( component == null ) { return; final Money money = (Money) component; switch ( propertyindex ) { case 0: { money.setamount( (BigDecimal) value ); break; case 1: { money.setcurrency( (Currency) value ); break; default: { throw new HibernateException( "Invalid property index [" + propertyindex + "]" ); public Object nullsafeget(resultset rs, String[] names, SessionImplementor session, Object owner) throws SQLEx assert names.length == 2; BigDecimal amount = BigDecimalType.INSTANCE.get( names[0] ); // already handles null check Currency currency = CurrencyType.INSTANCE.get( names[1] ); // already handles null check return amount == null && currency == null? null : new Money( amount, currency ); public void nullsafeset(preparedstatement st, Object value, int index, SessionImplementor session) throws SQLE if ( value == null ) { BigDecimalType.INSTANCE.set( st, null, index ); CurrencyType.INSTANCE.set( st, null, index+1 ); else { final Money money = (Money) value; BigDecimalType.INSTANCE.set( st, money.getamount(), index ); CurrencyType.INSTANCE.set( st, money.getcurrency(), index+1 );

167 Type registry 6.5. Type registry Internally Hibernate uses a registry of basic types (see Section 6.1.1, Basic value types ) when it needs to resolve the specific org.hibernate.type.type to use in certain situations. It also provides a way for applications to add extra basic type registrations as well as override the standard basic type registrations. To register a new type or to override an existing type registration, applications would make use of the registertypeoverride method of the org.hibernate.cfg.configuration class when bootstrapping Hibernate. For example, lets say you want Hibernate to use your custom SuperDuperStringType; during bootstrap you would call: Example 6.4. Overriding the standard StringType Configuration cfg =...; cfg.registertypeoverride( new SuperDuperStringType() ); The argument to registertypeoverride is a org.hibernate.type.basictype which is a specialization of the org.hibernate.type.type we saw before. It adds a single method: Example 6.5. Snippet from BasicType.java /** * Get the names under which this type should be registered in the type registry. * The keys under which to register this type. */ public String[] getregistrationkeys(); One approach is to use inheritance (SuperDuperStringType extends org.hibernate.type.stringtype); another is to use delegation. 155

168 156

169 Chapter 7. Collection mapping 7.1. Persistent collections Naturally Hibernate also allows to persist collections. These persistent collections can contain almost any other Hibernate type, including: basic types, custom types, components and references to other entities. The distinction between value and reference semantics is in this context very important. An object in a collection might be handled with "value" semantics (its life cycle fully depends on the collection owner), or it might be a reference to another entity with its own life cycle. In the latter case, only the "link" between the two objects is considered to be a state held by the collection. As a requirement persistent collection-valued fields must be declared as an interface type (see Example 7.2, Collection mapping ). The actual interface might be java.util.set, java.util.collection, java.util.list, java.util.map, java.util.sortedset, java.util.sortedmap or anything you like ("anything you like" means you will have to write an implementation of org.hibernate.usertype.usercollectiontype). Notice how in Example 7.2, Collection mapping the instance variable parts was initialized with an instance of HashSet. This is the best way to initialize collection valued properties of newly instantiated (non-persistent) instances. When you make the instance persistent, by calling persist(), Hibernate will actually replace the HashSet with an instance of Hibernate's own implementation of Set. Be aware of the following error: Example 7.1. Hibernate uses its own collection implementations Cat cat = new DomesticCat(); Cat kitten = new DomesticCat();... Set kittens = new HashSet(); kittens.add(kitten); cat.setkittens(kittens); session.persist(cat); kittens = cat.getkittens(); // Okay, kittens collection is a Set (HashSet) cat.getkittens(); // Error! The persistent collections injected by Hibernate behave like HashMap, HashSet, TreeMap, TreeSet or ArrayList, depending on the interface type. Collections instances have the usual behavior of value types. They are automatically persisted when referenced by a persistent object and are automatically deleted when unreferenced. If a collection is passed from one persistent object to another, its elements might be moved from one table to another. Two entities cannot share a reference to the same collection instance. Due to the underlying relational model, collection-valued properties do not support null value semantics. Hibernate does not distinguish between a null collection reference and an empty collection. 157

170 Chapter 7. Collection mapping Note Use persistent collections the same way you use ordinary Java collections. However, ensure you understand the semantics of bidirectional associations (see Section 7.3.2, Bidirectional associations ) How to map collections Using annotations you can map Collections, Lists, Maps and Sets of associated entities For collections of a basic or embeddable type In the simplest case a collection mapping looks like this: Example 7.2. Collection mapping and public class Product { private String serialnumber; private Set<Part> parts = new public String getserialnumber() { return serialnumber; void setserialnumber(string sn) { serialnumber public Set<Part> getparts() { return parts; void setparts(set parts) { this.parts = public class Part {... Product describes a unidirectional relationship with Part using the join column PART_ID. In this unidirectional one to many scenario you can also use a join table as seen in Example 7.3, Collection mapping Example 7.3. Collection mapping and public class Product { private String serialnumber; private Set<Part> parts = new HashSet<Part>(); 158

171 How to map public String getserialnumber() { return serialnumber; void setserialnumber(string sn) { serialnumber name="product_parts", joincolumns name="product_id"), inversejoincolumns name="part_id") ) public Set<Part> getparts() { return parts; void setparts(set parts) { this.parts = public class Part {... Without describing any physical mapping a unidirectional one to many with join table is used. The table name is the concatenation of the owner table name, _, and the other side table name. The foreign key name(s) referencing the owner table is the concatenation of the owner table, _, and the owner primary key column(s) name. The foreign key name(s) referencing the other side is the concatenation of the owner property name, _, and the other side primary key column(s) name. A unique constraint is added to the foreign key referencing the other side table to reflect the one to many. Lets have a look now how collections are mapped using Hibernate mapping files. In this case the first step is to chose the right mapping element. It depends on the type of interface. For example, a <set> element is used for mapping properties of type Set. Example 7.4. Mapping a Set using <set> <class name="product"> <id name="serialnumber" column="productserialnumber"/> <set name="parts"> <key column="productserialnumber" not-null="true"/> <one-to-many class="part"/> </set> </class> In Example 7.4, Mapping a Set using <set> a one-to-many association links the Product and Part entities. This association requires the existence of a foreign key column and possibly an index column to the Part table. This mapping loses certain semantics of normal Java collections: An instance of the contained entity class cannot belong to more than one instance of the collection. An instance of the contained entity class cannot appear at more than one value of the collection index. 159

172 Chapter 7. Collection mapping Looking closer at the used <one-to-many> tag we see that it has the following options. Example 7.5. options of <one-to-many> element <one-to-many class="classname" not-found="ignore exception" /> entity-name="entityname" node="element-name" embed-xml="true false" class (required): the name of the associated class. not-found (optional - defaults to exception): specifies how cached identifiers that reference missing rows will be handled. ignore will treat a missing row as a null association. entity-name (optional): the entity name of the associated class, as an alternative to class. The <one-to-many> element does not need to declare any columns. Nor is it necessary to specify the table name anywhere. Warning If the foreign key column of a <one-to-many> association is declared NOT NULL, you must declare the <key> mapping not-null="true" or use a bidirectional association with the collection mapping marked inverse="true". See Section 7.3.2, Bidirectional associations. Apart from the <set> tag as shown in Example 7.4, Mapping a Set using <set>, there is also <list>, <map>, <bag>, <array> and <primitive-array> mapping elements. The <map> element is representative: Example 7.6. Elements of the <map> mapping <map name="propertyname" table="table_name" schema="schema_name" lazy="true extra false" inverse="true false" cascade="all none save-update delete all-delete-orphan delete-orphan" sort="unsorted natural comparatorclass" order-by="column_name asc desc" 160

173 How to map collections where="arbitrary sql where condition" fetch="join select subselect" batch-size="n" access="field property ClassName" optimistic-lock="true false" > mutable="true false" node="element-name." embed-xml="true false" <key... /> <map-key... /> <element... /> </map> name: the collection property name table (optional - defaults to property name): the name of the collection table. It is not used for one-to-many associations. schema (optional): the name of a table schema to override the schema declared on the root element lazy (optional - defaults to true): disables lazy fetching and specifies that the association is always eagerly fetched. It can also be used to enable "extra-lazy" fetching where most operations do not initialize the collection. This is suitable for large collections. inverse (optional - defaults to false): marks this collection as the "inverse" end of a bidirectional association. cascade (optional - defaults to none): enables operations to cascade to child entities. sort (optional): specifies a sorted collection with natural sort order or a given comparator class. order-by (optional): specifies a table column or columns that define the iteration order of the Map, Set or bag, together with an optional asc or desc. where (optional): specifies an arbitrary SQL WHERE condition that is used when retrieving or removing the collection. This is useful if the collection needs to contain only a subset of the available data. fetch (optional, defaults to select): chooses between outer-join fetching, fetching by sequential select, and fetching by sequential subselect. batch-size (optional, defaults to 1): specifies a "batch size" for lazily fetching instances of this collection. access (optional - defaults to property): the strategy Hibernate uses for accessing the collection property value. optimistic-lock (optional - defaults to true): specifies that changes to the state of the collection results in increments of the owning entity's version. For one-to-many associations you may want to disable this setting. mutable (optional - defaults to true): a value of false specifies that the elements of the collection never change. This allows for minor performance optimization in some cases. 161

174 Chapter 7. Collection mapping After exploring the basic mapping of collections in the preceding paragraphs we will now focus details like physical mapping considerations, indexed collections and collections of value types Collection foreign keys On the database level collection instances are distinguished by the foreign key of the entity that owns the collection. This foreign key is referred to as the collection key column, or columns, of the collection table. The collection key column is mapped by annotation respectively the <key> XML element. There can be a nullability constraint on the foreign key column. For most collections, this is implied. For unidirectional one-to-many associations, the foreign key column is nullable by default, so you may need to or <key column="productserialnumber" not-null="true"/> The foreign key constraint can use ON DELETE CASCADE. In XML this can be expressed via: <key column="productserialnumber" on-delete="cascade"/> In annotations the Hibernate specific has to be See Section , Key for more information about the <key> element Indexed collections In the following paragraphs we have a closer at the indexed collections List and Map how the their index can be mapped in Hibernate Lists Lists can be mapped in two different ways: as ordered lists, where the order is not materialized in the database 162

175 Indexed collections as indexed lists, where the order is materialized in the database To order lists in memory, to your property. This annotation takes as parameter a list of comma separated properties (of the target entity) and orders the collection accordingly (eg firstname asc, age desc), if the string is empty, the collection will be ordered by the primary key of the target entity. Example 7.7. Ordered public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private public List<Order> getorders() { return orders; public void setorders(list<order> orders) { this.orders = orders; private List<Order> public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private Integer id; public String getnumber() { return number; public void setnumber(string number) { this.number = number; private String public Customer getcustomer() { return customer; public void setcustomer(customer customer) { this.customer = customer; private Customer number; -- Table schema Order Customer id id number customer_id To store the index value in a dedicated column, use annotation on your property. This annotations describes the column name and attributes of the column keeping the index value. This column is hosted on the table containing the association foreign key. If the column name is not specified, the default is the name of the referencing property, followed by underscore, followed by ORDER (in the following example, it would be orders_order). 163

176 Chapter 7. Collection mapping Example 7.8. Explicit index public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private public List<Order> getorders() { return orders; public void setorders(list<order> orders) { this.orders = orders; private List<Order> public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private Integer id; public String getnumber() { return number; public void setnumber(string number) { this.number = number; private String public Customer getcustomer() { return customer; public void setcustomer(customer customer) { this.customer = customer; private Customer number; -- Table schema Order Customer id id number customer_id orders_order Note We recommend you to convert the usages unless you are making use of the base property. The base property lets you define the index value of the first element (aka as base index). The usual value is 0 or 1. The default is 0 like in Java. 164

177 Indexed collections Looking again at the Hibernate mapping file equivalent, the index of an array or list is always of type integer and is mapped using the <list-index> element. The mapped column contains sequential integers that are numbered from zero by default. Example 7.9. index-list element for indexed collections in xml mapping <list-index column="column_name" base="0 1..."/> column_name (required): the name of the column holding the collection index values. base (optional - defaults to 0): the value of the index column that corresponds to the first element of the list or array. If your table does not have an index column, and you still wish to use List as the property type, you can map the property as a Hibernate <bag>. A bag does not retain its order when it is retrieved from the database, but it can be optionally sorted or ordered Maps The question with Maps is where the key value is stored. There are everal options. Maps can borrow their keys from one of the associated entity properties or have dedicated columns to store an explicit key. To use one of the target entity property as a key of the map, where myproperty is a property name in the target entity. When without the name attribuate, the target entity primary key is used. The map key uses the same column as the property pointed out. There is no additional column defined to hold the map key, because the map key represent a target property. Be aware that once loaded, the key is no longer kept in sync with the property. In other words, if you change the property value, the key will not change automatically in your Java model. Example Use of target entity property as map public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private public Map<String,Order> getorders() { return orders; public void setorders(map<string,order> order) { this.orders = orders; private Map<String,Order> 165

178 Chapter 7. Collection mapping public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private Integer id; public String getnumber() { return number; public void setnumber(string number) { this.number = number; private String public Customer getcustomer() { return customer; public void setcustomer(customer customer) { this.customer = customer; private Customer number; -- Table schema Order Customer id id number customer_id Alternatively the map key is mapped to a dedicated column or columns. In order to customize the mapping use one of the following if the map key is a basic type. If you don't specify the column name, the name of the property followed by underscore followed by KEY is used (for example if the map key type is respectively an enum or a if the map key type is another when the map key is a embeddable object. Use key. as a prefix for your embeddable object property names. You can also to define the type of the key if you don't use generics. Example Map key as basic public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private @MapKeyColumn(name="orders_number") public Map<String,Order> getorders() { return orders; public void setorders(map<string,order> orders) { this.orders = orders; private Map<String,Order> 166

179 Indexed collections public class public Integer getid() { return id; public void setid(integer id) { this.id = id; private Integer id; public String getnumber() { return number; public void setnumber(string number) { this.number = number; private String public Customer getcustomer() { return customer; public void setcustomer(customer customer) { this.customer = customer; private Customer number; -- Table schema Order Customer Cust_Order id id customer_id number order_id customer_id orders_number Note We recommend you to migrate to the new standard approach described above Using Hibernate mapping files there exists equivalent concepts to the descibed annotations. You have to use <map-key>, <map-key-many-to-many> and <composite-map-key>. <map-key> is used for any basic type, <map-key-many-to-many> for an entity reference and <composite-mapkey> for a composite type. Example map-key xml mapping element <map-key column="column_name" formula="any SQL expression" type="type_name" node="@attribute-name" length="n"/> column (optional): the name of the column holding the collection index values. formula (optional): a SQL formula used to evaluate the key of the map. type (required): the type of the map keys. 167

180 Chapter 7. Collection mapping Example map-key-many-to-many <map-key-many-to-many column="column_name" /> formula="any SQL expression" class="classname" column (optional): the name of the foreign key column for the collection index values. formula (optional): a SQ formula used to evaluate the foreign key of the map key. class (required): the entity class used as the map key Collections of basic types and embeddable objects In some situations you don't need to associate two entities but simply create a collection of basic types or embeddable objects. Use for this case. Example Collection of basic types public class User { [...] public String public Set<String> getnicknames() {... The collection table holding the collection data is set using annotation. If omitted the collection table name defaults to the concatenation of the name of the containing entity and the name of the collection attribute, separated by an underscore. In our example, it would be User_nicknames. The column holding the basic type is set using annotation. If omitted, the column name defaults to the property name: in our example, it would be nicknames. But you are not limited to basic types, the collection type can be any embeddable object. To override the columns of the embeddable object in the collection table, use annotation. Example for embeddable public class User { 168

181 Collections of basic types and embeddable objects [...] public String ) public Set<Address> getaddresses() public class Address { public String getstreet1() {... [...] Such an embeddable object cannot contains a collection itself. Note you must use the value. prefix to override properties of the embeddable object used in the map value and the key. prefix to override properties of the embeddable object used in the map public class @AttributeOverride(name="key.street1", column=@column(name="fld_note")) ) public Map<Address,Rating> getfavhomes() {... Note We recommend you to migrate to the annotation. Using the mapping file approach a collection of values is mapped using the <element> tag. For example: Example <element> tag for collection values using mapping files <element 169

182 Chapter 7. Collection mapping column="column_name" formula="any SQL expression" /> type="typename" length="l" precision="p" scale="s" not-null="true false" unique="true false" node="element-name" column (optional): the name of the column holding the collection element values. formula (optional): an SQL formula used to evaluate the element. type (required): the type of the collection element Advanced collection mappings Sorted collections Hibernate supports collections implementing java.util.sortedmap and java.util.sortedset. With annotations you declare a sort comparator You chose between the comparator types unsorted, natural or custom. If you want to use your own comparator implementation, you'll also have to specify the implementation class using the comparator attribute. Note that you need to use either a SortedSet or a SortedMap interface. Example Sorted @Sort(type = SortType.COMPARATOR, comparator = TicketComparator.class) public SortedSet<Ticket> gettickets() { return tickets; Using Hibernate mapping files you specify a comparator in the mapping file with <sort>: Example Sorted collection using xml mapping <set name="aliases" table="person_aliases" sort="natural"> <key column="person"/> <element column="name" type="string"/> </set> <map name="holidays" sort="my.custom.holidaycomparator"> <key column="year_id"/> 170

183 Bidirectional associations </map> <map-key column="hol_name" type="string"/> <element column="hol_date" type="date"/> Allowed values of the sort attribute are unsorted, natural and the name of a class implementing java.util.comparator. Tip Sorted collections actually behave like java.util.treeset or java.util.treemap. If you want the database itself to order the collection elements, use the order-by attribute of set, bag or map mappings. This solution is implemented using LinkedHashSet or LinkedHashMap and performs the ordering in the SQL query and not in the memory. Example Sorting in database using order-by <set name="aliases" table="person_aliases" order-by="lower(name) asc"> <key column="person"/> <element column="name" type="string"/> </set> <map name="holidays" order-by="hol_date, hol_name"> <key column="year_id"/> <map-key column="hol_name" type="string"/> <element column="hol_date type="date"/> </map> Note The value of the order-by attribute is an SQL ordering, not an HQL ordering. Associations can even be sorted by arbitrary criteria at runtime using a collection filter(): Example Sorting via a query filter sortedusers = s.createfilter( group.getusers(), "order by this.name" ).list(); Bidirectional associations A bidirectional association allows navigation from both "ends" of the association. Two kinds of bidirectional association are supported: 171

184 Chapter 7. Collection mapping one-to-many set or bag valued at one end and single-valued at the other many-to-many set or bag valued at both ends Often there exists a many to one association which is the owner side of a bidirectional relationship. The corresponding one to many association is in this case annotated Example Bidirectional one to many with many to one side as association public class Troop public Set<Soldier> getsoldiers() public class public Troop gettroop() {... Troop has a bidirectional one to many relationship with Soldier through the troop property. You don't have to (must not) define any physical mapping in the mappedby side. To map a bidirectional one to many, with the one-to-many side as the owning side, you have to remove the mappedby element and set the many to as insertable and updatable to false. This solution is not optimized and will produce additional UPDATE statements. Example Bidirectional associtaion with one to many side as public class //we need to duplicate the physical information public Set<Soldier> getsoldiers() public class insertable=false, updatable=false) public Troop gettroop() {

185 Bidirectional associations How does the mappping of a bidirectional mapping look like in Hibernate mapping xml? There you define a bidirectional one-to-many association by mapping a one-to-many association to the same table column(s) as a many-to-one association and declaring the many-valued end inverse="true". Example Bidirectional one to many via Hibernate mapping files <class name="parent"> <id name="id" column="parent_id"/>... <set name="children" inverse="true"> <key column="parent_id"/> <one-to-many class="child"/> </set> </class> <class name="child"> <id name="id" column="child_id"/>... <many-to-one name="parent" class="parent" column="parent_id" not-null="true"/> </class> Mapping one end of an association with inverse="true" does not affect the operation of cascades as these are orthogonal concepts. A many-to-many association is defined logically using annotation. You also have to describe the association table and the join conditions using annotation. If the association is bidirectional, one side has to be the owner and one side has to be the inverse end (ie. it will be ignored when updating the relationship values in the association table): Example Many to many public class Employer implements Serializable targetentity=org.hibernate.test.metadata.manytomany.employee.class, cascade={cascadetype.persist, CascadeType.MERGE name="employer_employee", joincolumns=@joincolumn(name="emper_id"), inversejoincolumns=@joincolumn(name="empee_id") ) public Collection getemployees() { return employees; 173

186 Chapter 7. Collection public class Employee implements Serializable cascade = {CascadeType.PERSIST, CascadeType.MERGE, mappedby = "employees", targetentity = Employer.class ) public Collection getemployers() { return employers; In this defines a name, an array of join columns, and an array of inverse join columns. The latter ones are the columns of the association table which refer to the Employee primary key (the "other side"). As seen previously, the other side don't have to (must not) describe the physical mapping: a simple mappedby argument containing the owner side property name bind the two. As any other annotations, most values are guessed in a many to many relationship. Without describing any physical mapping in a unidirectional many to many the following rules applied. The table name is the concatenation of the owner table name, _ and the other side table name. The foreign key name(s) referencing the owner table is the concatenation of the owner table name, _ and the owner primary key column(s). The foreign key name(s) referencing the other side is the concatenation of the owner property name, _, and the other side primary key column(s). These are the same rules used for a unidirectional one to many relationship. Example Default values public class Store = CascadeType.PERSIST) public Set<City> getimplantedin() public class City {... //no bidirectional relationship A Store_City is used as the join table. The Store_id column is a foreign key to the Store table. The implantedin_id column is a foreign key to the City table. 174

187 Bidirectional associations Without describing any physical mapping in a bidirectional many to many the following rules applied. The table name is the concatenation of the owner table name, _ and the other side table name. The foreign key name(s) referencing the owner table is the concatenation of the other side property name, _, and the owner primary key column(s). The foreign key name(s) referencing the other side is the concatenation of the owner property name, _, and the other side primary key column(s). These are the same rules used for a unidirectional one to many relationship. Example Default values public class Store = {CascadeType.PERSIST, CascadeType.MERGE) public Set<Customer> getcustomers() public class Customer public Set<Store> getstores() {... A Store_Customer is used as the join table. The stores_id column is a foreign key to the Store table. The customers_id column is a foreign key to the Customer table. Using Hibernate mapping files you can map a bidirectional many-to-many association by mapping two many-to-many associations to the same database table and declaring one end as inverse. Note You cannot select an indexed collection. Example 7.27, Many to many association using Hibernate mapping files shows a bidirectional many-to-many association that illustrates how each category can have many items and each item can be in many categories: Example Many to many association using Hibernate mapping files <class name="category"> <id name="id" column="category_id"/>... <bag name="items" table="category_item"> <key column="category_id"/> <many-to-many class="item" column="item_id"/> 175

188 Chapter 7. Collection mapping </bag> </class> <class name="item"> <id name="id" column="item_id"/>... <!-- inverse end --> <bag name="categories" table="category_item" inverse="true"> <key column="item_id"/> <many-to-many class="category" column="category_id"/> </bag> </class> Changes made only to the inverse end of the association are not persisted. This means that Hibernate has two representations in memory for every bidirectional association: one link from A to B and another link from B to A. This is easier to understand if you think about the Java object model and how a many-to-many relationship in Javais created: Example Effect of inverse vs. non-inverse side of many to many associations category.getitems().add(item); item.getcategories().add(category); // The category now "knows" about the relationship // The item now "knows" about the relationship session.persist(item); session.persist(category); // The relationship won't be saved! // The relationship will be saved The non-inverse side is used to save the in-memory representation to the database Bidirectional associations with indexed collections There are some additional considerations for bidirectional mappings with indexed collections (where one end is represented as a <list> or <map>) when using Hibernate mapping files. If there is a property of the child class that maps to the index column you can use inverse="true" on the collection mapping: Example Bidirectional association with indexed collection <class name="parent"> <id name="id" column="parent_id"/>... <map name="children" inverse="true"> <key column="parent_id"/> <map-key column="name" type="string"/> <one-to-many class="child"/> </map> </class> 176

189 Ternary associations <class name="child"> <id name="id" column="child_id"/>... <property name="name" not-null="true"/> <many-to-one name="parent" class="parent" column="parent_id" not-null="true"/> </class> If there is no such property on the child class, the association cannot be considered truly bidirectional. That is, there is information available at one end of the association that is not available at the other end. In this case, you cannot map the collection inverse="true". Instead, you could use the following mapping: Example Bidirectional association with indexed collection, but no index column <class name="parent"> <id name="id" column="parent_id"/>... <map name="children"> <key column="parent_id" not-null="true"/> <map-key column="name" type="string"/> <one-to-many class="child"/> </map> </class> <class name="child"> <id name="id" column="child_id"/>... <many-to-one name="parent" class="parent" column="parent_id" insert="false" update="false" not-null="true"/> </class> Note that in this mapping, the collection-valued end of the association is responsible for updates to the foreign key Ternary associations There are three possible approaches to mapping a ternary association. One approach is to use a Map with an association as its index: 177

190 Chapter 7. Collection mapping Example Ternary association public class Company int // Map<Employee, Contract> contracts; // or <map name="contracts"> <key column="employer_id" not-null="true"/> <map-key-many-to-many column="employee_id" class="employee"/> <one-to-many class="contract"/> </map> A second approach is to remodel the association as an entity class. This is the most common approach. A final alternative is to use composite elements, which will be discussed later Using an <idbag> The majority of the many-to-many associations and collections of values shown previously all map to tables with composite keys, even though it has been suggested that entities should have synthetic identifiers (surrogate keys). A pure association table does not seem to benefit much from a surrogate key, although a collection of composite values might. For this reason Hibernate provides a feature that allows you to map many-to-many associations and collections of values to a table with a surrogate key. The <idbag> element lets you map a List (or Collection) with bag semantics. For example: <idbag name="lovers" table="lovers"> <collection-id column="id" type="long"> <generator class="sequence"/> </collection-id> <key column="person1"/> <many-to-many column="person2" class="person" fetch="join"/> </idbag> An <idbag> has a synthetic id generator, just like an entity class. A different surrogate key is assigned to each collection row. Hibernate does not, however, provide any mechanism for discovering the surrogate key value of a particular row. The update performance of an <idbag> supersedes a regular <bag>. Hibernate can locate individual rows efficiently and update or delete them individually, similar to a list, map or set. 178

191 Collection examples In the current implementation, the native identifier generation strategy is not supported for <idbag> collection identifiers Collection examples This section covers collection examples. The following class has a collection of Child instances: Example Example classes Parent and Child public class Parent { private long id; private Set<Child> children; // getter/setter... public class Child { private long id; private String name // getter/setter... If each child has, at most, one parent, the most natural mapping is a one-to-many association: Example One to many unidirectional Parent-Child relationship using annotations public class private long private Set<Child> children; // getter/setter... public class private long id; private String name; 179

192 Chapter 7. Collection mapping // getter/setter... Example One to many unidirectional Parent-Child relationship using mapping files <hibernate-mapping> <class name="parent"> <id name="id"> <generator class="sequence"/> </id> <set name="children"> <key column="parent_id"/> <one-to-many class="child"/> </set> </class> <class name="child"> <id name="id"> <generator class="sequence"/> </id> <property name="name"/> </class> </hibernate-mapping> This maps to the following table definitions: Example Table definitions for unidirectional Parent-Child relationship create table parent ( id bigint not null primary key ) create table child ( id bigint not null primary key, name varchar(255), parent_id bigint ) alter table child add constraint childfk0 (parent_id) references parent If the parent is required, use a bidirectional one-to-many association: Example One to many bidirectional Parent-Child relationship using annotations public class private long 180

193 Collection examples private Set<Child> children; // getter/setter... public class private long id; private String private Parent parent; // getter/setter... Example One to many bidirectional Parent-Child relationship using mapping files <hibernate-mapping> <class name="parent"> <id name="id"> <generator class="sequence"/> </id> <set name="children" inverse="true"> <key column="parent_id"/> <one-to-many class="child"/> </set> </class> <class name="child"> <id name="id"> <generator class="sequence"/> </id> <property name="name"/> <many-to-one name="parent" class="parent" column="parent_id" not-null="true"/> </class> </hibernate-mapping> Notice the NOT NULL constraint: Example Table definitions for bidirectional Parent-Child relationship create table parent ( id bigint not null primary key ) 181

194 Chapter 7. Collection mapping create table child ( id bigint not null primary key, name varchar(255), parent_id bigint not null ) alter table child add constraint childfk0 (parent_id) references parent Alternatively, if this association must be unidirectional you can enforce the NOT NULL constraint. Example Enforcing NOT NULL constraint in unidirectional relation using annotations public class private long private Set<Child> children; // getter/setter... public class private long id; private String name; // getter/setter... Example Enforcing NOT NULL constraint in unidirectional relation using mapping files <hibernate-mapping> <class name="parent"> <id name="id"> <generator class="sequence"/> </id> <set name="children"> <key column="parent_id" not-null="true"/> <one-to-many class="child"/> </set> </class> <class name="child"> <id name="id"> 182

195 Collection examples <generator class="sequence"/> </id> <property name="name"/> </class> </hibernate-mapping> On the other hand, if a child has multiple parents, a many-to-many association is appropriate. Example Many to many Parent-Child relationship using annotations public class private long private Set<Child> children; // getter/setter... public class private long id; private String name; // getter/setter... Example Many to many Parent-Child relationship using mapping files <hibernate-mapping> <class name="parent"> <id name="id"> <generator class="sequence"/> </id> <set name="children" table="childset"> <key column="parent_id"/> <many-to-many class="child" column="child_id"/> </set> </class> <class name="child"> <id name="id"> <generator class="sequence"/> 183

196 Chapter 7. Collection mapping </id> </class> <property name="name"/> </hibernate-mapping> Table definitions: Example Table definitions for many to many releationship create table parent ( id bigint not null primary key ) create table child ( id bigint not null primary key, name varchar(255) ) create table childset ( parent_id bigint not null, child_id bigint not null, primary key ( parent_id, child_id ) ) alter table childset add constraint childsetfk0 (parent_id) references parent alter table childset add constraint childsetfk1 (child_id) references child For more examples and a complete explanation of a parent/child relationship mapping, see Chapter 24, Example: Parent/Child for more information. Even more complex association mappings are covered in the next chapter. 184

197 Chapter 8. Association Mappings 8.1. Introduction Association mappings are often the most difficult thing to implement correctly. In this section we examine some canonical cases one by one, starting with unidirectional mappings and then bidirectional cases. We will use Person and Address in all the examples. Associations will be classified by multiplicity and whether or not they map to an intervening join table. Nullable foreign keys are not considered to be good practice in traditional data modelling, so our examples do not use nullable foreign keys. This is not a requirement of Hibernate, and the mappings will work if you drop the nullability constraints Unidirectional associations Many-to-one A unidirectional many-to-one association is the most common kind of unidirectional association. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <many-to-one name="address" column="addressid" not-null="true"/> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key, addressid bigint not null ) create table Address ( addressid bigint not null primary key ) One-to-one A unidirectional one-to-one association on a foreign key is almost identical. The only difference is the column unique constraint. 185

198 Chapter 8. Association Mappings <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <many-to-one name="address" column="addressid" unique="true" not-null="true"/> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key, addressid bigint not null unique ) create table Address ( addressid bigint not null primary key ) A unidirectional one-to-one association on a primary key usually uses a special id generator In this example, however, we have reversed the direction of the association: <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> </class> <class name="address"> <id name="id" column="personid"> <generator class="foreign"> <param name="property">person</param> </generator> </id> <one-to-one name="person" constrained="true"/> </class> create table Person ( personid bigint not null primary key ) create table Address ( personid bigint not null primary key ) One-to-many A unidirectional one-to-many association on a foreign key is an unusual case, and is not recommended. 186

199 Unidirectional associations with join tables <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <set name="addresses"> <key column="personid" not-null="true"/> <one-to-many class="address"/> </set> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key ) create table Address ( addressid bigint not null primary key, personid bigint not null ) You should instead use a join table for this kind of association Unidirectional associations with join tables One-to-many A unidirectional one-to-many association on a join table is the preferred option. Specifying unique="true", changes the multiplicity from many-to-many to one-to-many. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <set name="addresses" table="personaddress"> <key column="personid"/> <many-to-many column="addressid" unique="true" class="address"/> </set> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> 187

200 Chapter 8. Association Mappings create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid not null, addressid bigint not null primary key ) create table Address ( addressid bigint not null primary key ) Many-to-one A unidirectional many-to-one association on a join table is common when the association is optional. For example: <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <join table="personaddress" optional="true"> <key column="personid" unique="true"/> <many-to-one name="address" column="addressid" not-null="true"/> </join> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null primary key, addressid bigint not null ) create table Address ( addressid bigint not null primary key ) One-to-one A unidirectional one-to-one association on a join table is possible, but extremely unusual. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <join table="personaddress" optional="true"> <key column="personid" unique="true"/> <many-to-one name="address" 188

201 Many-to-many </join> </class> column="addressid" not-null="true" unique="true"/> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null primary key, addressid bigint not null unique ) create table Address ( addressid bigint not null primary key ) Many-to-many Finally, here is an example of a unidirectional many-to-many association. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <set name="addresses" table="personaddress"> <key column="personid"/> <many-to-many column="addressid" class="address"/> </set> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null, addressid bigint not null, primary key (personid, addressid) ) create table Address ( addressid bigint not null primary key ) 189

202 Chapter 8. Association Mappings 8.4. Bidirectional associations one-to-many / many-to-one A bidirectional many-to-one association is the most common kind of association. The following example illustrates the standard parent/child relationship. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <many-to-one name="address" column="addressid" not-null="true"/> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> <set name="people" inverse="true"> <key column="addressid"/> <one-to-many class="person"/> </set> </class> create table Person ( personid bigint not null primary key, addressid bigint not null ) create table Address ( addressid bigint not null primary key ) If you use a List, or other indexed collection, set the key column of the foreign key to not null. Hibernate will manage the association from the collections side to maintain the index of each element, making the other side virtually inverse by setting update="false" and insert="false": <class name="person"> <id name="id"/>... <many-to-one name="address" column="addressid" not-null="true" insert="false" update="false"/> </class> <class name="address"> <id name="id"/>... <list name="people"> <key column="addressid" not-null="true"/> 190

203 One-to-one <list-index column="peopleidx"/> <one-to-many class="person"/> </list> </class> If the underlying foreign key column is NOT NULL, it is important that you define not-null="true" on the <key> element of the collection mapping. Do not only declare not-null="true" on a possible nested <column> element, but on the <key> element One-to-one A bidirectional one-to-one association on a foreign key is common: <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <many-to-one name="address" column="addressid" unique="true" not-null="true"/> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> <one-to-one name="person" property-ref="address"/> </class> create table Person ( personid bigint not null primary key, addressid bigint not null unique ) create table Address ( addressid bigint not null primary key ) A bidirectional one-to-one association on a primary key uses the special id generator: <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <one-to-one name="address"/> </class> <class name="address"> <id name="id" column="personid"> <generator class="foreign"> <param name="property">person</param> </generator> 191

204 Chapter 8. Association Mappings </id> <one-to-one name="person" constrained="true"/> </class> create table Person ( personid bigint not null primary key ) create table Address ( personid bigint not null primary key ) 8.5. Bidirectional associations with join tables one-to-many / many-to-one The following is an example of a bidirectional one-to-many association on a join table. The inverse="true" can go on either end of the association, on the collection, or on the join. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <set name="addresses" table="personaddress"> <key column="personid"/> <many-to-many column="addressid" unique="true" class="address"/> </set> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> <join table="personaddress" inverse="true" optional="true"> <key column="addressid"/> <many-to-one name="person" column="personid" not-null="true"/> </join> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null, addressid bigint not null primary key ) create table Address ( addressid bigint not null primary key ) 192

205 one to one one to one A bidirectional one-to-one association on a join table is possible, but extremely unusual. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <join table="personaddress" optional="true"> <key column="personid" unique="true"/> <many-to-one name="address" column="addressid" not-null="true" unique="true"/> </join> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> <join table="personaddress" optional="true" inverse="true"> <key column="addressid" unique="true"/> <many-to-one name="person" column="personid" not-null="true" unique="true"/> </join> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null primary key, addressid bigint not null unique ) create table Address ( addressid bigint not null primary key ) Many-to-many Here is an example of a bidirectional many-to-many association. <class name="person"> <id name="id" column="personid"> <generator class="native"/> </id> <set name="addresses" table="personaddress"> 193

206 Chapter 8. Association Mappings <key column="personid"/> <many-to-many column="addressid" class="address"/> </set> </class> <class name="address"> <id name="id" column="addressid"> <generator class="native"/> </id> <set name="people" inverse="true" table="personaddress"> <key column="addressid"/> <many-to-many column="personid" class="person"/> </set> </class> create table Person ( personid bigint not null primary key ) create table PersonAddress ( personid bigint not null, addressid bigint not null, primary key (personid, addressid) ) create table Address ( addressid bigint not null primary key ) 8.6. More complex association mappings More complex association joins are extremely rare. Hibernate handles more complex situations by using SQL fragments embedded in the mapping document. For example, if a table with historical account information data defines accountnumber, effectiveenddate and effectivestartdatecolumns, it would be mapped as follows: <properties name="currentaccountkey"> <property name="accountnumber" type="string" not-null="true"/> <property name="currentaccount" type="boolean"> <formula>case when effectiveenddate is null then 1 else 0 end</formula> </property> </properties> <property name="effectiveenddate" type="date"/> <property name="effectivestatedate" type="date" not-null="true"/> You can then map an association to the current instance, the one with null effectiveenddate, by using: <many-to-one name="currentaccountinfo" property-ref="currentaccountkey" class="accountinfo"> <column name="accountnumber"/> <formula>'1'</formula> 194

207 More complex association mappings </many-to-one> In a more complex example, imagine that the association between Employee and Organization is maintained in an Employment table full of historical employment data. An association to the employee's most recent employer, the one with the most recent startdate, could be mapped in the following way: <join> <key column="employeeid"/> <subselect> select employeeid, orgid from Employments group by orgid having startdate = max(startdate) </subselect> <many-to-one name="mostrecentemployer" class="organization" column="orgid"/> </join> This functionality allows a degree of creativity and flexibility, but it is more practical to handle these kinds of cases using HQL or a criteria query. 195

208 196

209 Chapter 9. Component Mapping The notion of a component is re-used in several different contexts and purposes throughout Hibernate Dependent objects A component is a contained object that is persisted as a value type and not an entity reference. The term "component" refers to the object-oriented notion of composition and not to architecturelevel components. For example, you can model a person like this: public class Person { private java.util.date birthday; private Name name; private String key; public String getkey() { return key; private void setkey(string key) { this.key=key; public java.util.date getbirthday() { return birthday; public void setbirthday(java.util.date birthday) { this.birthday = birthday; public Name getname() { return name; public void setname(name name) { this.name = name; public class Name { char initial; String first; String last; public String getfirst() { return first; void setfirst(string first) { this.first = first; public String getlast() { return last; void setlast(string last) { 197

210 Chapter 9. Component Mapping this.last = last; public char getinitial() { return initial; void setinitial(char initial) { this.initial = initial; Now Name can be persisted as a component of Person. Name defines getter and setter methods for its persistent properties, but it does not need to declare any interfaces or identifier properties. Our Hibernate mapping would look like this: <class name="eg.person" table="person"> <id name="key" column="pid" type="string"> <generator class="uuid"/> </id> <property name="birthday" type="date"/> <component name="name" class="eg.name"> <!-- class attribute optional --> <property name="initial"/> <property name="first"/> <property name="last"/> </component> </class> The person table would have the columns pid, birthday, initial, first and last. Like value types, components do not support shared references. In other words, two persons could have the same name, but the two person objects would contain two independent name objects that were only "the same" by value. The null value semantics of a component are ad hoc. When reloading the containing object, Hibernate will assume that if all component columns are null, then the entire component is null. This is suitable for most purposes. The properties of a component can 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 support a fine-grained object model. The <component> element allows a <parent> subelement that maps a property of the component class as a reference back to the containing entity. <class name="eg.person" table="person"> <id name="key" column="pid" type="string"> <generator class="uuid"/> </id> <property name="birthday" type="date"/> <component name="name" class="eg.name" unique="true"> <parent name="namedperson"/> <!-- reference back to the Person --> <property name="initial"/> <property name="first"/> 198

211 Collections of dependent objects <property name="last"/> </component> </class> 9.2. Collections of dependent objects Collections of components are supported (e.g. an array of type Name). Declare your component collection by replacing the <element> tag with a <composite-element> tag: <set name="somenames" table="some_names" lazy="true"> <key column="id"/> <composite-element class="eg.name"> <!-- class attribute required --> <property name="initial"/> <property name="first"/> <property name="last"/> </composite-element> </set> Important If you define a Set of composite elements, it is important to implement equals() and hashcode() correctly. Composite elements can contain components but not collections. If your composite element contains components, use the <nested-composite-element> tag. This case is a collection of components which themselves have components. You may want to consider if a one-to-many association is more appropriate. Remodel the composite element as an entity, but be aware that even though the Java model is the same, the relational model and persistence semantics are still slightly different. A composite element mapping does not support null-able properties if you are using a <set>. There is no separate primary key column in the composite element table. Hibernate uses each column's value to identify a record when deleting objects, which is not possible with null values. You have to either use only not-null properties in a composite-element or choose a <list>, <map>, <bag> or <idbag>. A special case of a composite element is a composite element with a nested <many-to-one> element. This mapping 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 quantity are properties of the association: <class name="eg.order"... >... <set name="purchaseditems" table="purchase_items" lazy="true"> <key column="order_id"> 199

212 Chapter 9. Component Mapping <composite-element class="eg.purchase"> <property name="purchasedate"/> <property name="price"/> <property name="quantity"/> <many-to-one name="item" class="eg.item"/> <!-- class attribute is optional --> </composite-element> </set> </class> There cannot be a reference to the purchase on the other side for bidirectional association navigation. Components are value types and do not allow shared references. A single Purchase can be in the set of an Order, but it cannot be referenced by the Item at the same time. Even ternary (or quaternary, etc) associations are possible: <class name="eg.order"... >... <set name="purchaseditems" table="purchase_items" lazy="true"> <key column="order_id"> <composite-element class="eg.orderline"> <many-to-one name="purchasedetails class="eg.purchase"/> <many-to-one name="item" class="eg.item"/> </composite-element> </set> </class> Composite elements can appear in queries using the same syntax as associations to other entities Components as Map indices The <composite-map-key> element allows you to map a component class as the key of a Map. Ensure that you override hashcode() and equals() correctly on the component class Components as composite identifiers You can use a component as an identifier of an entity class. Your component class must satisfy certain requirements: It must implement java.io.serializable. It must re-implement equals() and hashcode() consistently with the database's notion of composite key equality. Note In Hibernate3, although the second requirement is not an absolutely hard requirement of Hibernate, it is recommended. 200

213 Components as composite identifiers You cannot use an IdentifierGenerator to generate composite keys. Instead the application must assign its own identifiers. Use the <composite-id> tag, with nested <key-property> elements, in place of the usual <id> declaration. For example, the OrderLine class has a primary key that depends upon the (composite) primary key of Order. <class name="orderline"> <composite-id name="id" class="orderlineid"> <key-property name="lineid"/> <key-property name="orderid"/> <key-property name="customerid"/> </composite-id> <property name="name"/> <many-to-one name="order" class="order" insert="false" update="false"> <column name="orderid"/> <column name="customerid"/> </many-to-one>... </class> Any foreign keys referencing the OrderLine table are now composite. Declare this in your mappings for other classes. An association to OrderLine is mapped like this: <many-to-one name="orderline" class="orderline"> <!-- the "class" attribute is optional, as usual --> <column name="lineid"/> <column name="orderid"/> <column name="customerid"/> </many-to-one> Tip The column element is an alternative to the column attribute everywhere. Using the column element just gives more declaration options, which are mostly useful when utilizing hbm2ddl A many-to-many association to OrderLine also uses the composite foreign key: <set name="undeliveredorderlines"> <key column name="warehouseid"/> <many-to-many class="orderline"> 201

214 Chapter 9. Component Mapping <column name="lineid"/> <column name="orderid"/> <column name="customerid"/> </many-to-many> </set> The collection of OrderLines in Order would use: <set name="orderlines" inverse="true"> <key> <column name="orderid"/> <column name="customerid"/> </key> <one-to-many class="orderline"/> </set> The <one-to-many> element declares no columns. If OrderLine itself owns a collection, it also has a composite foreign key. <class name="orderline"> <list name="deliveryattempts"> <key> <!-- a collection inherits the composite key type --> <column name="lineid"/> <column name="orderid"/> <column name="customerid"/> </key> <list-index column="attemptid" base="1"/> <composite-element class="deliveryattempt">... </composite-element> </set> </class> 9.5. Dynamic components You can also map a property of type Map: <dynamic-component name="userattributes"> <property name="foo" column="foo" type="string"/> <property name="bar" column="bar" type="integer"/> <many-to-one name="baz" class="baz" column="baz_id"/> </dynamic-component> 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 202

215 Dynamic components time just by editing the mapping document. Runtime manipulation of the mapping document is also possible, using a DOM parser. You can also access, and change, Hibernate's configurationtime metamodel via the Configuration object. 203

216 204

217 Chapter 10. Inheritance mapping The three strategies Hibernate supports the three basic inheritance mapping strategies: table per class hierarchy table per subclass table per concrete class In addition, Hibernate supports a fourth, slightly different kind of polymorphism: implicit polymorphism It is possible to use different mapping strategies for different branches of the same inheritance hierarchy. You can then make use of implicit polymorphism to achieve polymorphism across the whole hierarchy. However, Hibernate does not support mixing <subclass>, <joined-subclass> and <union-subclass> mappings under the same root <class> element. It is possible to mix together the table per hierarchy and table per subclass strategies under the the same <class> element, by combining the <subclass> and <join> elements (see below for an example). It is possible to define subclass, union-subclass, and joined-subclass mappings in separate mapping documents directly beneath hibernate-mapping. This allows you to extend a class hierarchy by adding a new mapping file. You must specify an extends attribute in the subclass mapping, naming a previously mapped superclass. Previously this feature made the ordering of the mapping documents important. Since Hibernate3, the ordering of mapping files is irrelevant when using the extends keyword. The ordering inside a single mapping file still needs to be defined as superclasses before subclasses. <hibernate-mapping> <subclass name="domesticcat" extends="cat" discriminator-value="d"> <property name="name" type="string"/> </subclass> </hibernate-mapping> Table per class hierarchy Suppose we have an interface Payment with the implementors CreditCardPayment, CashPayment, and ChequePayment. The table per hierarchy mapping would display in the following way: <class name="payment" table="payment"> <id name="id" type="long" column="payment_id"> <generator class="native"/> 205

218 Chapter 10. Inheritance mapping </id> <discriminator column="payment_type" type="string"/> <property name="amount" column="amount"/>... <subclass name="creditcardpayment" discriminator-value="credit"> <property name="creditcardtype" column="cctype"/>... </subclass> <subclass name="cashpayment" discriminator-value="cash">... </subclass> <subclass name="chequepayment" discriminator-value="cheque">... </subclass> </class> Exactly one table is required. There is a limitation of this mapping strategy: columns declared by the subclasses, such as CCTYPE, cannot have NOT NULL constraints Table per subclass A table per subclass mapping looks like this: <class name="payment" table="payment"> <id name="id" type="long" column="payment_id"> <generator class="native"/> </id> <property name="amount" column="amount"/>... <joined-subclass name="creditcardpayment" table="credit_payment"> <key column="payment_id"/> <property name="creditcardtype" column="cctype"/>... </joined-subclass> <joined-subclass name="cashpayment" table="cash_payment"> <key column="payment_id"/>... </joined-subclass> <joined-subclass name="chequepayment" table="cheque_payment"> <key column="payment_id"/>... </joined-subclass> </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 Table per subclass: using a discriminator Hibernate's implementation of table per subclass does not require a discriminator column. Other object/relational mappers use a different implementation of table per subclass that requires a type discriminator column in the superclass table. The approach taken by Hibernate is much more 206

219 Mixing table per class hierarchy with table per subclass difficult to implement, but arguably more correct from a relational point of view. If you want to use a discriminator column with the table per subclass strategy, you can combine the use of <subclass> and <join>, as follows: <class name="payment" table="payment"> <id name="id" type="long" column="payment_id"> <generator class="native"/> </id> <discriminator column="payment_type" type="string"/> <property name="amount" column="amount"/>... <subclass name="creditcardpayment" discriminator-value="credit"> <join table="credit_payment"> <key column="payment_id"/> <property name="creditcardtype" column="cctype"/>... </join> </subclass> <subclass name="cashpayment" discriminator-value="cash"> <join table="cash_payment"> <key column="payment_id"/>... </join> </subclass> <subclass name="chequepayment" discriminator-value="cheque"> <join table="cheque_payment" fetch="select"> <key column="payment_id"/>... </join> </subclass> </class> The optional fetch="select" declaration tells Hibernate not to fetch the ChequePayment subclass data using an outer join when querying the superclass Mixing table per class hierarchy with table per subclass You can even mix the table per hierarchy and table per subclass strategies using the following approach: <class name="payment" table="payment"> <id name="id" type="long" column="payment_id"> <generator class="native"/> </id> <discriminator column="payment_type" type="string"/> <property name="amount" column="amount"/>... <subclass name="creditcardpayment" discriminator-value="credit"> <join table="credit_payment"> <property name="creditcardtype" column="cctype"/>... </join> </subclass> 207

220 Chapter 10. Inheritance mapping <subclass name="cashpayment" discriminator-value="cash">... </subclass> <subclass name="chequepayment" discriminator-value="cheque">... </subclass> </class> For any of these mapping strategies, a polymorphic association to the root Payment class is mapped using <many-to-one>. <many-to-one name="payment" column="payment_id" class="payment"/> Table per concrete class There are two ways we can map the table per concrete class strategy. First, you can use <unionsubclass>. <class name="payment"> <id name="id" type="long" column="payment_id"> <generator class="sequence"/> </id> <property name="amount" column="amount"/>... <union-subclass name="creditcardpayment" table="credit_payment"> <property name="creditcardtype" column="cctype"/>... </union-subclass> <union-subclass name="cashpayment" table="cash_payment">... </union-subclass> <union-subclass name="chequepayment" table="cheque_payment">... </union-subclass> </class> Three tables are involved for the subclasses. Each table defines columns for all properties of the class, including inherited properties. The limitation of this approach is that if a property is mapped on the superclass, the column name must be the same on all subclass tables. The identity generator strategy is not allowed in union subclass inheritance. The primary key seed has to be shared across all unioned subclasses of a hierarchy. If your superclass is abstract, map it with abstract="true". If it is not abstract, an additional table (it defaults to PAYMENT in the example above), is needed to hold instances of the superclass. 208

221 Table per concrete class using implicit polymorphism Table per concrete class using implicit polymorphism An alternative approach is to make use of implicit polymorphism: <class name="creditcardpayment" table="credit_payment"> <id name="id" type="long" column="credit_payment_id"> <generator class="native"/> </id> <property name="amount" column="credit_amount"/>... </class> <class name="cashpayment" table="cash_payment"> <id name="id" type="long" column="cash_payment_id"> <generator class="native"/> </id> <property name="amount" column="cash_amount"/>... </class> <class name="chequepayment" table="cheque_payment"> <id name="id" type="long" column="cheque_payment_id"> <generator class="native"/> </id> <property name="amount" column="cheque_amount"/>... </class> Notice that the Payment interface is not mentioned explicitly. Also notice that properties of Payment are mapped in each of the subclasses. If you want to avoid duplication, consider using XML entities (for example, [ <!ENTITY allproperties SYSTEM "allproperties.xml"> ] in the DOCTYPE declaration and &allproperties; in the mapping). The disadvantage of this approach is that Hibernate does not generate SQL UNIONs when performing polymorphic queries. For this mapping strategy, a polymorphic association to Payment is usually mapped using <any>. <any name="payment" meta-type="string" id-type="long"> <meta-value value="credit" class="creditcardpayment"/> <meta-value value="cash" class="cashpayment"/> <meta-value value="cheque" class="chequepayment"/> <column name="payment_class"/> <column name="payment_id"/> </any> 209

222 Chapter 10. Inheritance mapping Mixing implicit polymorphism with other inheritance mappings Since the subclasses are each mapped in their own <class> element, and since Payment is just an interface), each of the subclasses could easily be part of another inheritance hierarchy. You can still use polymorphic queries against the Payment interface. <class name="creditcardpayment" table="credit_payment"> <id name="id" type="long" column="credit_payment_id"> <generator class="native"/> </id> <discriminator column="credit_card" type="string"/> <property name="amount" column="credit_amount"/>... <subclass name="mastercardpayment" discriminator-value="mdc"/> <subclass name="visapayment" discriminator-value="visa"/> </class> <class name="nonelectronictransaction" table="nonelectronic_txn"> <id name="id" type="long" column="txn_id"> <generator class="native"/> </id>... <joined-subclass name="cashpayment" table="cash_payment"> <key column="payment_id"/> <property name="amount" column="cash_amount"/>... </joined-subclass> <joined-subclass name="chequepayment" table="cheque_payment"> <key column="payment_id"/> <property name="amount" column="cheque_amount"/>... </joined-subclass> </class> Once again, Payment is not mentioned explicitly. If we execute a query against the Payment interface, for example from Payment, Hibernate automatically returns instances of CreditCardPayment (and its subclasses, since they also implement Payment), CashPayment and ChequePayment, but not instances of NonelectronicTransaction Limitations There are limitations to the "implicit polymorphism" approach to the table per concreteclass mapping strategy. There are somewhat less restrictive limitations to <union-subclass> mappings. The following table shows the limitations of table per concrete-class mappings, and of implicit polymorphism, in Hibernate. 210

223 Limitations Table Features of inheritance mappings Inheritance Polymorphic Polymorphic Polymorphic Polymorphic Polymorphic Polymorphic Polymorphic Outer strategy manyto-one one-toone one-tomany manyto-many load()/ get() queries joins join fetching table per <many- <one- <one- <many- s.get(payment.class, from from supported class- to-one> to-one> to- to- id) Payment Order hierarchy many> many> p o join o.payment p table per <many- <one- <one- <many- s.get(payment.class, from from supported subclass to-one> to-one> to- to- id) Payment Order many> many> p o join o.payment p table per <many- <one- <one- <many- s.get(payment.class, from from supported concrete- to-one> to-one> to- to- id) Payment Order class many> many> p o join (union- (for o.payment subclass) inverse="true" p only) table per <any> concrete class (implicit polymorphism) not not <manyto-any> supported supported s.createcriteria(payment.class).add( from not not Restrictions. Payment supported supported p 211

224 212

225 Chapter 11. Working with objects Hibernate is a full object/relational mapping solution that not only shields the developer from the details of the underlying database management system, but also offers state management of objects. This is, contrary to the management of SQL statements in common JDBC/SQL persistence layers, a natural object-oriented view of persistence in Java applications. In other words, Hibernate application developers should always think about the state of their objects, and not necessarily about the execution of SQL statements. This part is taken care of by Hibernate and is only relevant for the application developer when tuning the performance of the system Hibernate object states Hibernate defines and supports the following object states: Transient - an object is transient if it has just been instantiated using the new operator, and it is not associated with a Hibernate Session. It has no persistent representation in the database and no identifier value has been assigned. Transient instances will be destroyed by the garbage collector if the application does not hold a reference anymore. Use the Hibernate Session to make an object persistent (and let Hibernate take care of the SQL statements that need to be executed for this transition). Persistent - a persistent instance has a representation in the database and an identifier value. It might just have been saved or loaded, however, it is by definition in the scope of a Session. Hibernate will detect any changes made to an object in persistent state and synchronize the state with the database when the unit of work completes. Developers do not execute manual UPDATE statements, or DELETE statements when an object should be made transient. Detached - a detached instance is an object that has been persistent, but its Session has been closed. The reference to the object is still valid, of course, and the detached instance might even be modified in this state. A detached instance can be reattached to a new Session at a later point in time, making it (and all the modifications) persistent again. This feature enables a programming model for long running units of work that require user think-time. We call them application transactions, i.e., a unit of work from the point of view of the user. We will now discuss the states and state transitions (and the Hibernate methods that trigger a transition) in more detail Making objects persistent Newly instantiated instances of a persistent class are considered transient by Hibernate. We can make a transient instance persistent by associating it with a session: DomesticCat fritz = new DomesticCat(); 213

226 Chapter 11. Working with objects fritz.setcolor(color.ginger); fritz.setsex('m'); fritz.setname("fritz"); Long generatedid = (Long) sess.save(fritz); If Cat has a generated identifier, the identifier is generated and assigned to the cat when save() is called. If Cat has an assigned identifier, or a composite key, the identifier should be assigned to the cat instance before calling save(). You can also use persist() instead of save(), with the semantics defined in the EJB3 early draft. persist() makes a transient instance persistent. However, it does not guarantee that the identifier value will be assigned to the persistent instance immediately, the assignment might happen at flush time. persist() also guarantees that it will not execute an INSERT statement if it is called outside of transaction boundaries. This is useful in long-running conversations with an extended Session/persistence context. save() does guarantee to return an identifier. If an INSERT has to be executed to get the identifier ( e.g. "identity" generator, not "sequence"), this INSERT happens immediately, no matter if you are inside or outside of a transaction. This is problematic in a long-running conversation with an extended Session/persistence context. Alternatively, you can assign the identifier using an overloaded version of save(). DomesticCat pk = new DomesticCat(); pk.setcolor(color.tabby); pk.setsex('f'); pk.setname("pk"); pk.setkittens( new HashSet() ); pk.addkitten(fritz); sess.save( pk, new Long(1234) ); If the object you make persistent has associated objects (e.g. the kittens collection in the previous example), these objects can be made persistent in any order you like unless you have a NOT NULL constraint upon a foreign key column. There is never a risk of violating foreign key constraints. However, you might violate a NOT NULL constraint if you save() the objects in the wrong order. Usually you do not bother with this detail, as you will normally use Hibernate's transitive persistence feature to save the associated objects automatically. Then, even NOT NULL constraint violations do not occur - Hibernate will take care of everything. Transitive persistence is discussed later in this chapter Loading an object The load() methods of Session provide a way of retrieving a persistent instance if you know its identifier. load() takes a class object and loads the state into a newly instantiated instance of that class in a persistent state. 214

227 Loading an object Cat fritz = (Cat) sess.load(cat.class, generatedid); // you need to wrap primitive identifiers long id = 1234; DomesticCat pk = (DomesticCat) sess.load( DomesticCat.class, new Long(id) ); Alternatively, you can load state into a given instance: Cat cat = new DomesticCat(); // load pk's state into cat sess.load( cat, new Long(pkId) ); Set kittens = cat.getkittens(); Be aware that load() will throw an unrecoverable exception if there is no matching database row. If the class is mapped with a proxy, load() just returns an uninitialized proxy and does not actually hit the database until you invoke a method of the proxy. This is useful if you wish to create an association to an object without actually loading it from the database. It also allows multiple instances to be loaded as a batch if batch-size is defined for the class mapping. If you are not certain that a matching row exists, you should use the get() method which hits the database immediately and returns null if there is no matching row. Cat cat = (Cat) sess.get(cat.class, id); if (cat==null) { cat = new Cat(); sess.save(cat, id); return cat; You can even load an object using an SQL SELECT... FOR UPDATE, using a LockMode. See the API documentation for more information. Cat cat = (Cat) sess.get(cat.class, id, LockMode.UPGRADE); Any associated instances or contained collections will not be selected FOR UPDATE, unless you decide to specify lock or all as a cascade style for the association. It is possible to re-load an object and all its collections at any time, using the refresh() method. This is useful when database triggers are used to initialize some of the properties of the object. sess.save(cat); sess.flush(); //force the SQL INSERT 215

228 Chapter 11. Working with objects sess.refresh(cat); //re-read the state (after the trigger executes) How much does Hibernate load from the database and how many SQL SELECTs will it use? This depends on the fetching strategy. This is explained in Section 21.1, Fetching strategies Querying If you do not know the identifiers of the objects you are looking for, you need a query. Hibernate supports an easy-to-use but powerful object oriented query language (HQL). For programmatic query creation, Hibernate supports a sophisticated Criteria and Example query feature (QBC and QBE). You can also express your query in the native SQL of your database, with optional support from Hibernate for result set conversion into objects Executing queries HQL and native SQL queries are represented with an instance of org.hibernate.query. This interface offers methods for parameter binding, result set handling, and for the execution of the actual query. You always obtain a Query using the current Session: List cats = session.createquery( "from Cat as cat where cat.birthdate <?").setdate(0, date).list(); List mothers = session.createquery( "select mother from Cat as cat join cat.mother as mother where cat.name =?").setstring(0, name).list(); List kittens = session.createquery( "from Cat as cat where cat.mother =?").setentity(0, pk).list(); Cat mother = (Cat) session.createquery( "select cat.mother from Cat as cat where cat =?").setentity(0, izi).uniqueresult();]] Query motherswithkittens = (Cat) session.createquery( "select mother from Cat as mother left join fetch mother.kittens"); Set uniquemothers = new HashSet(mothersWithKittens.list()); A query is usually executed by invoking list(). The result of the query will be loaded completely into a collection in memory. Entity instances retrieved by a query are in a persistent state. The uniqueresult() method offers a shortcut if you know your query will only return a single object. Queries that make use of eager fetching of collections usually return duplicates of the root objects, but with their collections initialized. You can filter these duplicates through a Set. 216

229 Executing queries Iterating results Occasionally, you might be able to achieve better performance by executing the query using the iterate() method. This will usually be the case if you expect that the actual entity instances returned by the query will already be in the session or second-level cache. If they are not already cached, iterate() will be slower than list() and might require many database hits for a simple query, usually 1 for the initial select which only returns identifiers, and n additional selects to initialize the actual instances. // fetch ids Iterator iter = sess.createquery("from eg.qux q order by q.likeliness").iterate(); while ( iter.hasnext() ) { Qux qux = (Qux) iter.next(); // fetch the object // something we couldnt express in the query if ( qux.calculatecomplicatedalgorithm() ) { // delete the current instance iter.remove(); // dont need to process the rest break; Queries that return tuples Hibernate queries sometimes return tuples of objects. Each tuple is returned as an array: Iterator kittensandmothers = sess.createquery( "select kitten, mother from Cat kitten join kitten.mother mother").list().iterator(); while ( kittensandmothers.hasnext() ) { Object[] tuple = (Object[]) kittensandmothers.next(); Cat kitten = (Cat) tuple[0]; Cat mother = (Cat) tuple[1]; Scalar results Queries can specify a property of a class in the select clause. They can even call SQL aggregate functions. Properties or aggregates are considered "scalar" results and not entities in persistent state. Iterator results = sess.createquery( "select cat.color, min(cat.birthdate), count(cat) from Cat cat " + "group by cat.color").list() 217

230 Chapter 11. Working with objects.iterator(); while ( results.hasnext() ) { Object[] row = (Object[]) results.next(); Color type = (Color) row[0]; Date oldest = (Date) row[1]; Integer count = (Integer) row[2]; Bind parameters Methods on Query are provided for binding values to named parameters or JDBC-style? parameters. Contrary to JDBC, Hibernate numbers parameters from zero. Named parameters are identifiers of the form :name in the query string. The advantages of named parameters are as follows: named parameters are insensitive to the order they occur in the query string they can occur multiple times in the same query they are self-documenting //named parameter (preferred) Query q = sess.createquery("from DomesticCat cat where cat.name = :name"); q.setstring("name", "Fritz"); Iterator cats = q.iterate(); //positional parameter Query q = sess.createquery("from DomesticCat cat where cat.name =?"); q.setstring(0, "Izi"); Iterator cats = q.iterate(); //named parameter list List names = new ArrayList(); names.add("izi"); names.add("fritz"); Query q = sess.createquery("from DomesticCat cat where cat.name in (:nameslist)"); q.setparameterlist("nameslist", names); List cats = q.list(); Pagination If you need to specify bounds upon your result set, that is, the maximum number of rows you want to retrieve and/or the first row you want to retrieve, you can use methods of the Query interface: Query q = sess.createquery("from DomesticCat cat"); q.setfirstresult(20); 218

231 Executing queries q.setmaxresults(10); List cats = q.list(); Hibernate knows how to translate this limit query into the native SQL of your DBMS Scrollable iteration If your JDBC driver supports scrollable ResultSets, the Query interface can be used to obtain a ScrollableResults object that allows flexible navigation of the query results. Query q = sess.createquery("select cat.name, cat from DomesticCat cat " + "order by cat.name"); ScrollableResults cats = q.scroll(); if ( cats.first() ) { // 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) ); // Now get the first page of cats pageofcats = new ArrayList(); cats.beforefirst(); int i=0; while( ( PAGE_SIZE > i++ ) && cats.next() ) pageofcats.add( cats.get(1) ); cats.close() Note that an open database connection and cursor is required for this functionality. Use setmaxresult()/setfirstresult() if you need offline pagination functionality Externalizing named queries Queries can also be configured as so called named queries using annotations or Hibernate mapping can be defined at the class level as seen in Example 11.1, Defining a named query However their definitions are global to the session factory/entity manager factory scope. A named query is defined by its name and the actual query string. Example Defining a named @NamedQuery(name="night.moreRecentThan", query="select n from Night n where n.date >= :date") public class Night {

232 Chapter 11. Working with objects public class MyDao { dostuff() { Query q = s.getnamedquery("night.morerecentthan"); q.setdate( "date", amonthago ); List results = q.list(); Using a mapping document can be configured using the <query> node. Remember to use a CDATA section if your query contains characters that could be interpreted as markup. Example Defining a named query using <query> <query name="bynameandmaximumweight"><![cdata[ from eg.domesticcat as cat where cat.name =? and cat.weight >? ] ]></query> Parameter binding and executing is done programatically as seen in Example 11.3, Parameter binding of a named query. Example Parameter binding of a named query Query q = sess.getnamedquery("bynameandmaximumweight"); q.setstring(0, name); q.setint(1, minweight); List cats = q.list(); The actual program code is independent of the query language that is used. You can also define native SQL queries in metadata, or migrate existing queries to Hibernate by placing them in mapping files. Also note that a query declaration inside a <hibernate-mapping> element requires a global unique name for the query, while a query declaration inside a <class> element is made unique automatically by prepending the fully qualified name of the class. For example eg.cat.bynameandmaximumweight Filtering collections A collection filter is a special type of query that can be applied to a persistent collection or array. The query string can refer to this, meaning the current collection element. Collection blackkittens = session.createfilter( 220

233 Criteria queries ); pk.getkittens(), "where this.color =?").setparameter( Color.BLACK, Hibernate.custom(ColorUserType.class) ).list() The returned collection is considered a bag that is a copy of the given collection. The original collection is not modified. This is contrary to the implication of the name "filter", but consistent with expected behavior. Observe that filters do not require a from clause, although they can have one if required. Filters are not limited to returning the collection elements themselves. Collection blackkittenmates = session.createfilter( pk.getkittens(), "select this.mate where this.color = eg.color.black.intvalue").list(); Even an empty filter query is useful, e.g. to load a subset of elements in a large collection: Collection tenkittens = session.createfilter( mother.getkittens(), "").setfirstresult(0).setmaxresults(10).list(); Criteria queries HQL is extremely powerful, but some developers prefer to build queries dynamically using an object-oriented API, rather than building query strings. Hibernate provides an intuitive Criteria query API for these cases: Criteria crit = session.createcriteria(cat.class); crit.add( Restrictions.eq( "color", eg.color.black ) ); crit.setmaxresults(10); List cats = crit.list(); The Criteria and the associated Example API are discussed in more detail in Chapter 17, Criteria Queries Queries in native SQL You can express a query in SQL, using createsqlquery() and let Hibernate manage the mapping from result sets to objects. You can at any time call session.connection() and use the JDBC Connection directly. If you choose to use the Hibernate API, you must enclose SQL aliases in braces: 221

234 Chapter 11. Working with objects List cats = session.createsqlquery("select {cat.* FROM CAT {cat WHERE ROWNUM<10").addEntity("cat", Cat.class).list(); List cats = session.createsqlquery( "SELECT {cat.id AS {cat.id, {cat.sex AS {cat.sex, " + "{cat.mate AS {cat.mate, {cat.subclass AS {cat.class,... " + "FROM CAT {cat WHERE ROWNUM<10").addEntity("cat", Cat.class).list() SQL queries can contain named and positional parameters, just like Hibernate queries. More information about native SQL queries in Hibernate can be found in Chapter 18, Native SQL Modifying persistent objects Transactional persistent instances (i.e. objects loaded, saved, created or queried by the Session) can be manipulated by the application, and any changes to persistent state will be persisted when the Session is flushed. This is discussed later in this chapter. There is no need to call a particular method (like update(), which has a different purpose) to make your modifications persistent. The most straightforward way to update the state of an object is to load() it and then manipulate it directly while the Session is open: DomesticCat cat = (DomesticCat) sess.load( Cat.class, new Long(69) ); cat.setname("pk"); sess.flush(); // changes to cat are automatically detected and persisted Sometimes this programming model is inefficient, as it requires in the same session both an SQL SELECT to load an object and an SQL UPDATE to persist its updated state. Hibernate offers an alternate approach by using detached instances Modifying detached objects Many applications need to retrieve an object in one transaction, send it to the UI layer for manipulation, then save the changes in a new transaction. Applications that use this kind of approach in a high-concurrency environment usually use versioned data to ensure isolation for the "long" unit of work. Hibernate supports this model by providing for reattachment of detached instances using the Session.update() or Session.merge() methods: // in the first session Cat cat = (Cat) firstsession.load(cat.class, catid); Cat potentialmate = new Cat(); 222

235 Automatic state detection firstsession.save(potentialmate); // in a higher layer of the application cat.setmate(potentialmate); // later, in a new session secondsession.update(cat); // update cat secondsession.update(mate); // update mate If the Cat with identifier catid had already been loaded by secondsession when the application tried to reattach it, an exception would have been thrown. Use update() if you are certain that the session does not contain an already persistent instance with the same identifier. Use merge() if you want to merge your modifications at any time without consideration of the state of the session. In other words, update() is usually the first method you would call in a fresh session, ensuring that the reattachment of your detached instances is the first operation that is executed. The application should individually update() detached instances that are reachable from the given detached instance only if it wants their state to be updated. This can be automated using transitive persistence. See Section 11.11, Transitive persistence for more information. The lock() method also allows an application to reassociate an object with a new session. However, the detached instance has to be unmodified. //just reassociate: sess.lock(fritz, LockMode.NONE); //do a version check, then reassociate: sess.lock(izi, LockMode.READ); //do a version check, using SELECT... FOR UPDATE, then reassociate: sess.lock(pk, LockMode.UPGRADE); Note that lock() can be used with various LockModes. See the API documentation and the chapter on transaction handling for more information. Reattachment is not the only usecase for lock(). Other models for long units of work are discussed in Section 13.3, Optimistic concurrency control Automatic state detection Hibernate users have requested a general purpose method that either saves a transient instance by generating a new identifier or updates/reattaches the detached instances associated with its current identifier. The saveorupdate() method implements this functionality. // in the first session Cat cat = (Cat) firstsession.load(cat.class, catid); // in a higher tier of the application 223

236 Chapter 11. Working with objects Cat mate = new Cat(); cat.setmate(mate); // later, in a new session secondsession.saveorupdate(cat); // update existing state (cat has a non-null id) secondsession.saveorupdate(mate); // save the new instance (mate has a null id) The usage and semantics of saveorupdate() seems to be confusing for new users. Firstly, so long as you are not trying to use instances from one session in another new session, you should not need to use update(), saveorupdate(), or merge(). Some whole applications will never use either of these methods. Usually update() or saveorupdate() are used in the following scenario: the application loads an object in the first session the object is passed up to the UI tier some modifications are made to the object the object is passed back down to the business logic tier the application persists these modifications by calling update() in a second session saveorupdate() does the following: if the object is already persistent in this session, do nothing if another object associated with the session has the same identifier, throw an exception if the object has no identifier property, save() it if the object's identifier has the value assigned to a newly instantiated object, save() it if the object is versioned by a <version> or <timestamp>, and the version property value is the same value assigned to a newly instantiated object, save() it otherwise update() the object and merge() is very different: if there is a persistent instance with the same identifier currently associated with the session, copy the state of the given object onto the persistent instance if there is no persistent instance currently associated with the session, try to load it from the database, or create a new persistent instance the persistent instance is returned the given instance does not become associated with the session, it remains detached Deleting persistent objects Session.delete() will remove an object's state from the database. Your application, however, can still hold a reference to a deleted object. It is best to think of delete() as making a persistent instance, transient. sess.delete(cat); 224

237 Replicating object between two different datastores You can delete objects in any order, without risk of foreign key constraint violations. It is still possible to violate a NOT NULL constraint on a foreign key column by deleting objects in the wrong order, e.g. if you delete the parent, but forget to delete the children Replicating object between two different datastores It is sometimes useful to be able to take a graph of persistent instances and make them persistent in a different datastore, without regenerating identifier values. //retrieve a cat from one database Session session1 = factory1.opensession(); Transaction tx1 = session1.begintransaction(); Cat cat = session1.get(cat.class, catid); tx1.commit(); session1.close(); //reconcile with a second database Session session2 = factory2.opensession(); Transaction tx2 = session2.begintransaction(); session2.replicate(cat, ReplicationMode.LATEST_VERSION); tx2.commit(); session2.close(); The ReplicationMode determines how replicate() will deal with conflicts with existing rows in the database: ReplicationMode.IGNORE: ignores the object when there is an existing database row with the same identifier ReplicationMode.OVERWRITE: overwrites any existing database row with the same identifier ReplicationMode.EXCEPTION: throws an exception if there is an existing database row with the same identifier ReplicationMode.LATEST_VERSION: overwrites the row if its version number is earlier than the version number of the object, or ignore the object otherwise Usecases for this feature include reconciling data entered into different database instances, upgrading system configuration information during product upgrades, rolling back changes made during non-acid transactions and more Flushing the Session Sometimes 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, called flush, occurs by default at the following points: before some query executions from org.hibernate.transaction.commit() 225

238 Chapter 11. Working with objects from Session.flush() The SQL statements are issued in the following order: 1. all entity insertions in the same order the corresponding objects were saved using Session.save() 2. all entity updates 3. all collection deletions 4. all collection element deletions, updates and insertions 5. all collection insertions 6. all entity deletions in the same order the corresponding objects were deleted using Session.delete() An exception is that objects using native ID generation are inserted when they are saved. Except when you explicitly flush(), there are absolutely no guarantees about when the Session executes the JDBC calls, only the order in which they are executed. However, Hibernate does guarantee that the Query.list(..) will never return stale or incorrect data. It is possible to change the default behavior so that flush occurs less frequently. The FlushMode class defines three different modes: only flush at commit time when the Hibernate Transaction API is used, flush automatically using the explained routine, or never flush unless flush() is called explicitly. The last mode is useful for long running units of work, where a Session is kept open and disconnected for a long time (see Section , Extended session and automatic versioning ). 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); // might return stale data sess.find("from Cat as cat left outer join cat.kittens kitten"); // change to izi is not flushed!... tx.commit(); // flush occurs sess.close(); During flush, an exception might occur (e.g. if a DML operation violates a constraint). Since handling exceptions involves some understanding of Hibernate's transactional behavior, we discuss it in Chapter 13, Transactions and Concurrency Transitive persistence It is quite cumbersome to save, delete, or reattach individual objects, especially if you deal with a graph of associated objects. A common case is a parent/child relationship. Consider the following example: 226

239 Transitive persistence If the children in a parent/child relationship would be value typed (e.g. a collection of addresses or strings), their life cycle would depend on the parent and no further action would be required for convenient "cascading" of state changes. When the parent is saved, the value-typed child objects are saved and when the parent is deleted, the children will be deleted, etc. This works for operations such as the removal of a child from the collection. Since value-typed objects cannot have shared references, Hibernate will detect this and delete the child from the database. Now consider the same scenario with parent and child objects being entities, not value-types (e.g. categories and items, or parent and child cats). Entities have their own life cycle and support shared references. Removing an entity from the collection does not mean it can be deleted), and there is by default no cascading of state from one entity to any other associated entities. Hibernate does not implement persistence by reachability by default. For each basic operation of the Hibernate session - including persist(), merge(), saveorupdate(), delete(), lock(), refresh(), evict(), replicate() - there is a corresponding cascade style. Respectively, the cascade styles are named create, merge, save-update, delete, lock, refresh, evict, replicate. If you want an operation to be cascaded along an association, you must indicate that in the mapping document. For example: <one-to-one name="person" cascade="persist"/> Cascade styles my be combined: <one-to-one name="person" cascade="persist,delete,lock"/> You can even use cascade="all" to specify that all operations should be cascaded along the association. The default cascade="none" specifies that no operations are to be cascaded. In case you are using annotatons you probably have noticed the cascade attribute taking an array of CascadeType as a value. The cascade concept in JPA is very is similar to the transitive persistence and cascading of operations as described above, but with slightly different semantics and cascading types: CascadeType.PERSIST: cascades the persist (create) operation to associated entities persist() is called or if the entity is managed CascadeType.MERGE: cascades the merge operation to associated entities if merge() is called or if the entity is managed CascadeType.REMOVE: cascades the remove operation to associated entities if delete() is called CascadeType.REFRESH: cascades the refresh operation to associated entities if refresh() is called CascadeType.DETACH: cascades the detach operation to associated entities if detach() is called 227

240 Chapter 11. Working with objects CascadeType.ALL: all of the above Note CascadeType.ALL also covers Hibernate specific operations like save-update, lock etc... A special cascade style, delete-orphan, applies only to one-to-many associations, and indicates that the delete() operation should be applied to any child object that is removed from the association. Using annotations there is no CascadeType.DELETE-ORPHAN equivalent. Instead you can use the attribute orphanremoval as seen in Example with orphanremoval. If an entity is removed from collection or an associated entity is dereferenced from association, this associated entity can be marked for deletion if orphanremoval is set to true. Example with public class Customer { private Set<Order> orphanremoval=true) public Set<Order> getorders() { return orders; public void setorders(set<order> orders) { this.orders = orders; public class Order {... Customer customer = em.find(customer.class, 1l); Order order = em.find(order.class, 1l); customer.getorders().remove(order); //order will be deleted by cascade Recommendations: It does not usually make sense to enable cascade on a many-to-one or many-to-many association. In fact don't even offer a orphanremoval attribute. Cascading is often useful for one-to-one and one-to-many associations. If the child object's lifespan is bounded by the lifespan of the parent object, make it a life cycle object by specifying cascade="all,deleteorphan"(@onetomany(cascade=cascadetype.all, orphanremoval=true)). Otherwise, you might not need cascade at all. But if you think that you will often be working with the parent and children together in the same transaction, and you want to save yourself some typing, consider using cascade="persist,merge,save-update". 228

241 Using metadata Mapping an association (either a single valued association, or a collection) with cascade="all" marks the association as a parent/child style relationship where save/update/delete of the parent results in save/update/delete of the child or children. Furthermore, a mere reference to a child from a persistent parent will result in save/update of the child. This metaphor is incomplete, however. A child which becomes unreferenced by its parent is not automatically deleted, except in the case of a one-to-many association mapped with cascade="delete-orphan". The precise semantics of cascading operations for a parent/child relationship are as follows: If a parent is passed to persist(), all children are passed to persist() If a parent is passed to merge(), all children are passed to merge() If a parent is passed to save(), update() or saveorupdate(), all children are passed to saveorupdate() If a transient or detached child becomes referenced by a persistent parent, it is passed to saveorupdate() If a parent is deleted, all children are passed to delete() If a child is dereferenced by a persistent parent, nothing special happens - the application should explicitly delete the child if necessary - unless cascade="delete-orphan", in which case the "orphaned" child is deleted. Finally, note that cascading of operations can be applied to an object graph at call time or at flush time. All operations, if enabled, are cascaded to associated entities reachable when the operation is executed. However, save-update and delete-orphan are transitive for all associated entities reachable during flush of the Session Using metadata Hibernate requires a rich meta-level model of all entity and value types. This model can be useful to the application itself. For example, the application might use Hibernate's metadata to implement a "smart" deep-copy algorithm that understands which objects should be copied (eg. mutable value types) and which objects that should not (e.g. immutable value types and, possibly, associated entities). Hibernate exposes metadata via the ClassMetadata and CollectionMetadata interfaces and the Type hierarchy. Instances of the metadata interfaces can be obtained from the SessionFactory. Cat fritz =...; ClassMetadata catmeta = sessionfactory.getclassmetadata(cat.class); Object[] propertyvalues = catmeta.getpropertyvalues(fritz); String[] propertynames = catmeta.getpropertynames(); Type[] propertytypes = catmeta.getpropertytypes(); // get a Map of all properties which are not collections or associations Map namedvalues = new HashMap(); 229

242 Chapter 11. Working with objects for ( int i=0; i<propertynames.length; i++ ) { if (!propertytypes[i].isentitytype() &&!propertytypes[i].iscollectiontype() ) { namedvalues.put( propertynames[i], propertyvalues[i] ); 230

243 Chapter 12. Read-only entities Important Hibernate's treatment of read-only entities may differ from what you may have encountered elsewhere. Incorrect usage may cause unexpected results. When an entity is read-only: Hibernate does not dirty-check the entity's simple properties or single-ended associations; Hibernate will not update simple properties or updatable single-ended associations; Hibernate will not update the version of the read-only entity if only simple properties or singleended updatable associations are changed; In some ways, Hibernate treats read-only entities the same as entities that are not read-only: Hibernate cascades operations to associations as defined in the entity mapping. Hibernate updates the version if the entity has a collection with changes that dirties the entity; A read-only entity can be deleted. Even if an entity is not read-only, its collection association can be affected if it contains a readonly entity. For details about the affect of read-only entities on different property and association types, see Section 12.2, Read-only affect on property type. For details about how to make entities read-only, see Section 12.1, Making persistent entities read-only Hibernate does some optimizing for read-only entities: It saves execution time by not dirty-checking simple properties or single-ended associations. It saves memory by deleting database snapshots Making persistent entities read-only Only persistent entities can be made read-only. Transient and detached entities must be put in persistent state before they can be made read-only. Hibernate provides the following ways to make persistent entities read-only: you can map an entity class as immutable; when an entity of an immutable class is made persistent, Hibernate automatically makes it read-only. see Section , Entities of immutable classes for details 231

244 Chapter 12. Read-only entities you can change a default so that entities loaded into the session by Hibernate are automatically made read-only; see Section , Loading persistent entities as read-only for details you can make an HQL query or criteria read-only so that entities loaded when the query or criteria executes, scrolls, or iterates, are automatically made read-only; see Section , Loading read-only entities from an HQL query/criteria for details you can make a persistent entity that is already in the in the session read-only; see Section , Making a persistent entity read-only for details Entities of immutable classes When an entity instance of an immutable class is made persistent, Hibernate automatically makes it read-only. An entity of an immutable class can created and deleted the same as an entity of a mutable class. Hibernate treats a persistent entity of an immutable class the same way as a read-only persistent entity of a mutable class. The only exception is that Hibernate will not allow an entity of an immutable class to be changed so it is not read-only Loading persistent entities as read-only Note Entities of immutable classes are automatically loaded as read-only. To change the default behavior so Hibernate loads entity instances of mutable classes into the session and automatically makes them read-only, call: Session.setDefaultReadOnly( true ); To change the default back so entities loaded by Hibernate are not made read-only, call: Session.setDefaultReadOnly( false ); You can determine the current setting by calling: Session.isDefaultReadOnly(); If Session.isDefaultReadOnly() returns true, entities loaded by the following are automatically made read-only: 232

245 Loading read-only entities from an HQL query/criteria Session.load() Session.get() Session.merge() executing, scrolling, or iterating HQL queries and criteria; to override this setting for a particular HQL query or criteria see Section , Loading read-only entities from an HQL query/criteria Changing this default has no effect on: persistent entities already in the session when the default was changed persistent entities that are refreshed via Session.refresh(); a refreshed persistent entity will only be read-only if it was read-only before refreshing persistent entities added by the application via Session.persist(), Session.save(), and Session.update() Session.saveOrUpdate() Loading read-only entities from an HQL query/criteria Note Entities of immutable classes are automatically loaded as read-only. If Session.isDefaultReadOnly() returns false (the default) when an HQL query or criteria executes, then entities and proxies of mutable classes loaded by the query will not be read-only. You can override this behavior so that entities and proxies loaded by an HQL query or criteria are automatically made read-only. For an HQL query, call: Query.setReadOnly( true ); Query.setReadOnly( true ) must be called before Query.list(), Query.uniqueResult(), Query.scroll(), or Query.iterate() For an HQL criteria, call: Criteria.setReadOnly( true ); Criteria.setReadOnly( true ) must be called before Criteria.list(), Criteria.uniqueResult(), or Criteria.scroll() 233

246 Chapter 12. Read-only entities Entities and proxies that exist in the session before being returned by an HQL query or criteria are not affected. Uninitialized persistent collections returned by the query are not affected. Later, when the collection is initialized, entities loaded into the session will be read-only if Session.isDefaultReadOnly() returns true. Using Query.setReadOnly( true ) or Criteria.setReadOnly( true ) works well when a single HQL query or criteria loads all the entities and intializes all the proxies and collections that the application needs to be read-only. When it is not possible to load and initialize all necessary entities in a single query or criteria, you can temporarily change the session default to load entities as read-only before the query is executed. Then you can explicitly initialize proxies and collections before restoring the session default. Session session = factory.opensession(); Transaction tx = session.begintransaction(); setdefaultreadonly( true ); Contract contract = ( Contract ) session.createquery( "from Contract where customername = 'Sherman'" ).uniqueresult(); Hibernate.initialize( contract.getplan() ); Hibernate.initialize( contract.getvariations() ); Hibernate.initialize( contract.getnotes() ); setdefaultreadonly( false );... tx.commit(); session.close(); If Session.isDefaultReadOnly() returns true, then you can use Query.setReadOnly( false ) and Criteria.setReadOnly( false ) to override this session setting and load entities that are not readonly Making a persistent entity read-only Note Persistent entities of immutable classes are automatically made read-only. To make a persistent entity or proxy read-only, call: Session.setReadOnly(entityOrProxy, true) 234

247 Read-only affect on property type To change a read-only entity or proxy of a mutable class so it is no longer read-only, call: Session.setReadOnly(entityOrProxy, false) Important When a read-only entity or proxy is changed so it is no longer read-only, Hibernate assumes that the current state of the read-only entity is consistent with its database representation. If this is not true, then any non-flushed changes made before or while the entity was read-only, will be ignored. To throw away non-flushed changes and make the persistent entity consistent with its database representation, call: session.refresh( entity ); To flush changes made before or while the entity was read-only and make the database representation consistent with the current state of the persistent entity: // evict the read-only entity so it is detached session.evict( entity ); // make the detached entity (with the non-flushed changes) persistent session.update( entity ); // now entity is no longer read-only and its changes can be flushed s.flush(); Read-only affect on property type The following table summarizes how different property types are affected by making an entity read-only. Table Affect of read-only entity on property types Property/Association Type Simple Changes flushed to DB? no* (Section , Simple properties ) Unidirectional one-to-one Unidirectional many-to-one no* no* 235

248 Chapter 12. Read-only entities Property/Association Type (Section , Unidirectional one-to-one and many-to-one ) Unidirectional one-to-many Unidirectional many-to-many Changes flushed to DB? yes yes (Section , Unidirectional one-to-many and many-to-many ) Bidirectional one-to-one only if the owning entity is not read-only* (Section , Bidirectional one-to-one ) Bidirectional one-to-many/many-to-one inverse collection non-inverse collection only added/removed entities that are not readonly* yes (Section , Bidirectional one-to-many/ many-to-one ) Bidirectional many-to-many yes (Section , Bidirectional many-tomany ) * Behavior is different when the entity having the property/association is read-only, compared to when it is not read-only Simple properties When a persistent object is read-only, Hibernate does not dirty-check simple properties. Hibernate will not synchronize simple property state changes to the database. If you have automatic versioning, Hibernate will not increment the version if any simple properties change. Session session = factory.opensession(); Transaction tx = session.begintransaction(); // get a contract and make it read-only Contract contract = ( Contract ) session.get( Contract.class, contractid ); session.setreadonly( contract, true ); // contract.getcustomername() is "Sherman" contract.setcustomername( "Yogi" ); tx.commit(); tx = session.begintransaction(); 236

249 Unidirectional associations contract = ( Contract ) session.get( Contract.class, contractid ); // contract.getcustomername() is still "Sherman"... tx.commit(); session.close(); Unidirectional associations Unidirectional one-to-one and many-to-one Hibernate treats unidirectional one-to-one and many-to-one associations in the same way when the owning entity is read-only. We use the term unidirectional single-ended association when referring to functionality that is common to unidirectional one-to-one and many-to-one associations. Hibernate does not dirty-check unidirectional single-ended associations when the owning entity is read-only. If you change a read-only entity's reference to a unidirectional single-ended association to null, or to refer to a different entity, that change will not be flushed to the database. Note If an entity is of an immutable class, then its references to unidirectional singleended associations must be assigned when that entity is first created. Because the entity is automatically made read-only, these references can not be updated. If automatic versioning is used, Hibernate will not increment the version due to local changes to unidirectional single-ended associations. In the following examples, Contract has a unidirectional many-to-one association with Plan. Contract cascades save and update operations to the association. The following shows that changing a read-only entity's many-to-one association reference to null has no effect on the entity's database representation. // get a contract with an existing plan; // make the contract read-only and set its plan to null tx = session.begintransaction(); Contract contract = ( Contract ) session.get( Contract.class, contractid ); session.setreadonly( contract, true ); contract.setplan( null ); tx.commit(); // get the same contract tx = session.begintransaction(); 237

250 Chapter 12. Read-only entities contract = ( Contract ) session.get( Contract.class, contractid ); // contract.getplan() still refers to the original plan; tx.commit(); session.close(); The following shows that, even though an update to a read-only entity's many-to-one association has no affect on the entity's database representation, flush still cascades the save-update operation to the locally changed association. // get a contract with an existing plan; // make the contract read-only and change to a new plan tx = session.begintransaction(); Contract contract = ( Contract ) session.get( Contract.class, contractid ); session.setreadonly( contract, true ); Plan newplan = new Plan( "new plan" contract.setplan( newplan); tx.commit(); // get the same contract tx = session.begintransaction(); contract = ( Contract ) session.get( Contract.class, contractid ); newplan = ( Contract ) session.get( Plan.class, newplan.getid() ); // contract.getplan() still refers to the original plan; // newplan is non-null because it was persisted when // the previous transaction was committed; tx.commit(); session.close(); Unidirectional one-to-many and many-to-many Hibernate treats unidirectional one-to-many and many-to-many associations owned by a readonly entity the same as when owned by an entity that is not read-only. Hibernate dirty-checks unidirectional one-to-many and many-to-many associations; The collection can contain entities that are read-only, as well as entities that are not read-only. Entities can be added and removed from the collection; changes are flushed to the database. If automatic versioning is used, Hibernate will update the version due to changes in the collection if they dirty the owning entity Bidirectional associations Bidirectional one-to-one If a read-only entity owns a bidirectional one-to-one association: 238

251 Bidirectional associations Hibernate does not dirty-check the association. updates that change the association reference to null or to refer to a different entity will not be flushed to the database. If automatic versioning is used, Hibernate will not increment the version due to local changes to the association. Note If an entity is of an immutable class, and it owns a bidirectional one-to-one association, then its reference must be assigned when that entity is first created. Because the entity is automatically made read-only, these references cannot be updated. When the owner is not read-only, Hibernate treats an association with a read-only entity the same as when the association is with an entity that is not read-only Bidirectional one-to-many/many-to-one A read-only entity has no impact on a bidirectional one-to-many/many-to-one association if: the read-only entity is on the one-to-many side using an inverse collection; the read-only entity is on the one-to-many side using a non-inverse collection; the one-to-many side uses a non-inverse collection that contains the read-only entity When the one-to-many side uses an inverse collection: a read-only entity can only be added to the collection when it is created; a read-only entity can only be removed from the collection by an orphan delete or by explicitly deleting the entity Bidirectional many-to-many Hibernate treats bidirectional many-to-many associations owned by a read-only entity the same as when owned by an entity that is not read-only. Hibernate dirty-checks bidirectional many-to-many associations. The collection on either side of the association can contain entities that are read-only, as well as entities that are not read-only. Entities are added and removed from both sides of the collection; changes are flushed to the database. 239

252 Chapter 12. Read-only entities If automatic versioning is used, Hibernate will update the version due to changes in both sides of the collection if they dirty the entity owning the respective collections. 240

253 Chapter 13. Transactions and Concurrency The most important point about Hibernate and concurrency control is that it is easy to understand. Hibernate directly uses JDBC connections and JTA resources without adding any additional locking behavior. It is recommended that you spend some time with the JDBC, ANSI, and transaction isolation specification of your database management system. Hibernate does not lock objects in memory. Your application can expect the behavior as defined by the isolation level of your database transactions. Through Session, which is also a transactionscoped cache, Hibernate provides repeatable reads for lookup by identifier and entity queries and not reporting queries that return scalar values. In addition to versioning for automatic optimistic concurrency control, Hibernate also offers, using the SELECT FOR UPDATE syntax, a (minor) API for pessimistic locking of rows. Optimistic concurrency control and this API are discussed later in this chapter. The discussion of concurrency control in Hibernate begins with the granularity of Configuration, SessionFactory, and Session, as well as database transactions and long conversations Session and transaction scopes A SessionFactory is an expensive-to-create, threadsafe object, intended to be shared by all application threads. It is created once, usually on application startup, from a Configuration instance. A Session is an inexpensive, non-threadsafe object that should be used once and then discarded for: a single request, a conversation or a single unit of work. A Session will not obtain a JDBC Connection, or a Datasource, unless it is needed. It will not consume any resources until used. In order to reduce lock contention in the database, a database transaction has to be as short as possible. Long database transactions will prevent your application from scaling to a highly concurrent load. It is not recommended that you hold a database transaction open during user think time until the unit of work is complete. What is the scope of a unit of work? Can a single Hibernate Session span several database transactions, or is this a one-to-one relationship of scopes? When should you open and close a Session and how do you demarcate the database transaction boundaries? These questions are addressed in the following sections Unit of work First, let's define a unit of work. A unit of work is a design pattern described by Martin Fowler as [maintaining] a list of objects affected by a business transaction and coordinates the writing out of changes and the resolution of concurrency problems. [PoEAA] In other words, its a series of operations we wish to carry out against the database together. Basically, it is a transaction, though fulfilling a unit of work will often span multiple physical database transactions (see Section , 241

254 Chapter 13. Transactions and... Long conversations ). So really we are talking about a more abstract notion of a transaction. The term "business transaction" is also sometimes used in lieu of unit of work. Do not use the session-per-operation antipattern: do not open and close a Session for every simple database call in a single thread. The same is true for database transactions. Database calls in an application are made using a planned sequence; they are grouped into atomic units of work. This also means that auto-commit after every single SQL statement is useless in an application as this mode is intended for ad-hoc SQL console work. Hibernate disables, or expects the application server to disable, auto-commit mode immediately. Database transactions are never optional. All communication with a database has to occur inside a transaction. Auto-commit behavior for reading data should be avoided, as many small transactions are unlikely to perform better than one clearly defined unit of work. The latter is also more maintainable and extensible. The most common pattern in a multi-user client/server application is session-per-request. In this model, a request from the client is sent to the server, where the Hibernate persistence layer runs. A new Hibernate Session is opened, and all database operations are executed in this unit of work. On completion of the work, and once the response for the client has been prepared, the session is flushed and closed. Use a single database transaction to serve the clients request, starting and committing it when you open and close the Session. The relationship between the two is one-toone and this model is a perfect fit for many applications. The challenge lies in the implementation. Hibernate provides built-in management of the "current session" to simplify this pattern. Start a transaction when a server request has to be processed, and end the transaction before the response is sent to the client. Common solutions are ServletFilter, AOP interceptor with a pointcut on the service methods, or a proxy/interception container. An EJB container is a standardized way to implement cross-cutting aspects such as transaction demarcation on EJB session beans, declaratively with CMT. If you use programmatic transaction demarcation, for ease of use and code portability use the Hibernate Transaction API shown later in this chapter. Your application code can access a "current session" to process the request by calling sessionfactory.getcurrentsession(). You will always get a Session scoped to the current database transaction. This has to be configured for either resource-local or JTA environments, see Section 2.3, Contextual sessions. You can extend the scope of a Session and database transaction until the "view has been rendered". This is especially useful in servlet applications that utilize a separate rendering phase after the request has been processed. Extending the database transaction until view rendering, is achieved by implementing your own interceptor. However, this will be difficult if you rely on EJBs with container-managed transactions. A transaction will be completed when an EJB method returns, before rendering of any view can start. See the Hibernate website and forum for tips and examples relating to this Open Session in View pattern Long conversations The session-per-request pattern is not the only way of designing units of work. Many business processes require a whole series of interactions with the user that are interleaved with database 242

255 Considering object identity accesses. In web and enterprise applications, it is not acceptable for a database transaction to span a user interaction. Consider the following example: The first screen of a dialog opens. The data seen by the user has been loaded in a particular Session and database transaction. The user is free to modify the objects. The user clicks "Save" after 5 minutes and expects their modifications to be made persistent. The user also expects that they were the only person editing this information and that no conflicting modification has occurred. From the point of view of the user, we call this unit of work a long-running conversation or application transaction. There are many ways to implement this in your application. A first naive implementation might keep the Session and database transaction open during user think time, with locks held in the database to prevent concurrent modification and to guarantee isolation and atomicity. This is an anti-pattern, since lock contention would not allow the application to scale with the number of concurrent users. You have to use several database transactions to implement the conversation. In this case, maintaining isolation of business processes becomes the partial responsibility of the application tier. A single conversation usually spans several database transactions. It will be atomic if only one of these database transactions (the last one) stores the updated data. All others simply read data (for example, in a wizard-style dialog spanning several request/response cycles). This is easier to implement than it might sound, especially if you utilize some of Hibernate's features: Automatic Versioning: Hibernate can perform automatic optimistic concurrency control for you. It can automatically detect if a concurrent modification occurred during user think time. Check for this at the end of the conversation. Detached Objects: if you decide to use the session-per-request pattern, all loaded instances will be in the detached state during user think time. Hibernate allows you to reattach the objects and persist the modifications. The pattern is called session-per-request-with-detached-objects. Automatic versioning is used to isolate concurrent modifications. Extended (or Long) Session: the Hibernate Session can be disconnected from the underlying JDBC connection after the database transaction has been committed and reconnected when a new client request occurs. This pattern is known as session-per-conversation and makes even reattachment unnecessary. Automatic versioning is used to isolate concurrent modifications and the Session will not be allowed to be flushed automatically, but explicitly. Both session-per-request-with-detached-objects and session-per-conversation have advantages and disadvantages. These disadvantages are discussed later in this chapter in the context of optimistic concurrency control Considering object identity An application can concurrently access the same persistent state in two different Sessions. However, an instance of a persistent class is never shared between two Session instances. It is for this reason that there are two different notions of identity: 243

256 Chapter 13. Transactions and... Database Identity foo.getid().equals( bar.getid() ) JVM Identity foo==bar For objects attached to a particular Session (i.e., in the scope of a Session), the two notions are equivalent and JVM identity for database identity is guaranteed by Hibernate. While the application might concurrently access the "same" (persistent identity) business object in two different sessions, the two instances will actually be "different" (JVM identity). Conflicts are resolved using an optimistic approach and automatic versioning at flush/commit time. This approach leaves Hibernate and the database to worry about concurrency. It also provides the best scalability, since guaranteeing identity in single-threaded units of work means that it does not need expensive locking or other means of synchronization. The application does not need to synchronize on any business object, as long as it maintains a single thread per Session. Within a Session the application can safely use == to compare objects. However, an application that uses == outside of a Session might produce unexpected results. This might occur even in some unexpected places. For example, if you put two detached instances into the same Set, both might have the same database identity (i.e., they represent the same row). JVM identity, however, is by definition not guaranteed for instances in a detached state. The developer has to override the equals() and hashcode() methods in persistent classes and implement their own notion of object equality. There is one caveat: never use the database identifier to implement equality. Use a business key that is a combination of unique, usually immutable, attributes. The database identifier will change if a transient object is made persistent. If the transient instance (usually together with detached instances) is held in a Set, changing the hashcode breaks the contract of the Set. Attributes for business keys do not have to be as stable as database primary keys; you only have to guarantee stability as long as the objects are in the same Set. See the Hibernate website for a more thorough discussion of this issue. Please note that this is not a Hibernate issue, but simply how Java object identity and equality has to be implemented Common issues Do not use the anti-patterns session-per-user-session or session-per-application (there are, however, rare exceptions to this rule). Some of the following issues might also arise within the recommended patterns, so ensure that you understand the implications before making a design decision: A Session is not thread-safe. Things that work concurrently, like HTTP requests, session beans, or Swing workers, will cause race conditions if a Session instance is shared. If you keep your Hibernate Session in your HttpSession (this is discussed later in the chapter), you should consider synchronizing access to your Http session. Otherwise, a user that clicks reload fast enough can use the same Session in two concurrently running threads. An exception thrown by Hibernate means you have to rollback your database transaction and close the Session immediately (this is discussed in more detail later in the chapter). If your 244

257 Database transaction demarcation Session is bound to the application, you have to stop the application. Rolling back the database transaction does not put your business objects back into the state they were at the start of the transaction. This means that the database state and the business objects will be out of sync. Usually this is not a problem, because exceptions are not recoverable and you will have to start over after rollback anyway. The Session caches every object that is in a persistent state (watched and checked for dirty state by Hibernate). If you keep it open for a long time or simply load too much data, it will grow endlessly until you get an OutOfMemoryException. One solution is to call clear() and evict() to manage the Session cache, but you should consider a Stored Procedure if you need mass data operations. Some solutions are shown in Chapter 15, Batch processing. Keeping a Session open for the duration of a user session also means a higher probability of stale data Database transaction demarcation Database, or system, transaction boundaries are always necessary. No communication with the database can occur outside of a database transaction (this seems to confuse many developers who are used to the auto-commit mode). Always use clear transaction boundaries, even for readonly operations. Depending on your isolation level and database capabilities this might not be required, but there is no downside if you always demarcate transactions explicitly. Certainly, a single database transaction is going to perform better than many small transactions, even for reading data. A Hibernate application can run in non-managed (i.e., standalone, simple Web- or Swing applications) and managed J2EE environments. In a non-managed environment, Hibernate is usually responsible for its own database connection pool. The application developer has to manually set transaction boundaries (begin, commit, or rollback database transactions) themselves. A managed environment usually provides container-managed transactions (CMT), with the transaction assembly defined declaratively (in deployment descriptors of EJB session beans, for example). Programmatic transaction demarcation is then no longer necessary. However, it is often desirable to keep your persistence layer portable between non-managed resource-local environments, and systems that can rely on JTA but use BMT instead of CMT. In both cases use programmatic transaction demarcation. Hibernate offers a wrapper API called Transaction that translates into the native transaction system of your deployment environment. This API is actually optional, but we strongly encourage its use unless you are in a CMT session bean. Ending a Session usually involves four distinct phases: flush the session commit the transaction close the session handle exceptions We discussed Flushing the session earlier, so we will now have a closer look at transaction demarcation and exception handling in both managed and non-managed environments. 245

258 Chapter 13. Transactions and Non-managed environment If a Hibernate persistence layer runs in a non-managed environment, database connections are usually handled by simple (i.e., non-datasource) connection pools from which Hibernate obtains connections as needed. The session/transaction handling idiom looks like this: // Non-managed environment idiom Session sess = factory.opensession(); Transaction tx = null; try { tx = sess.begintransaction(); // do some work... tx.commit(); catch (RuntimeException e) { if (tx!= null) tx.rollback(); throw e; // or display error message finally { sess.close(); You do not have to flush() the Session explicitly: the call to commit() automatically triggers the synchronization depending on the FlushMode for the session. A call to close() marks the end of a session. The main implication of close() is that the JDBC connection will be relinquished by the session. This Java code is portable and runs in both non-managed and JTA environments. As outlined earlier, a much more flexible solution is Hibernate's built-in "current session" context management: // Non-managed environment idiom with getcurrentsession() try { factory.getcurrentsession().begintransaction(); // do some work... factory.getcurrentsession().gettransaction().commit(); catch (RuntimeException e) { factory.getcurrentsession().gettransaction().rollback(); throw e; // or display error message You will not see these code snippets in a regular application; fatal (system) exceptions should always be caught at the "top". In other words, the code that executes Hibernate calls in the persistence layer, and the code that handles RuntimeException (and usually can only clean up 246

259 Using JTA and exit), are in different layers. The current context management by Hibernate can significantly simplify this design by accessing a SessionFactory. Exception handling is discussed later in this chapter. You should select org.hibernate.transaction.jdbctransactionfactory, which is the default, and for the second example select "thread" as your hibernate.current_session_context_class Using JTA If your persistence layer runs in an application server (for example, behind EJB session beans), every datasource connection obtained by Hibernate will automatically be part of the global JTA transaction. You can also install a standalone JTA implementation and use it without EJB. Hibernate offers two strategies for JTA integration. If you use bean-managed transactions (BMT), Hibernate will tell the application server to start and end a BMT transaction if you use the Transaction API. The transaction management code is identical to the non-managed environment. // BMT idiom Session sess = factory.opensession(); Transaction tx = null; try { tx = sess.begintransaction(); // do some work... tx.commit(); catch (RuntimeException e) { if (tx!= null) tx.rollback(); throw e; // or display error message finally { sess.close(); If you want to use a transaction-bound Session, that is, the getcurrentsession() functionality for easy context propagation, use the JTA UserTransaction API directly: // BMT idiom with getcurrentsession() try { UserTransaction tx = (UserTransaction)new InitialContext().lookup("java:comp/UserTransaction"); tx.begin(); // Do some work on Session bound to transaction factory.getcurrentsession().load(...); factory.getcurrentsession().persist(...); 247

260 Chapter 13. Transactions and... tx.commit(); catch (RuntimeException e) { tx.rollback(); throw e; // or display error message With CMT, transaction demarcation is completed in session bean deployment descriptors, not programmatically. The code is reduced to: // CMT idiom Session sess = factory.getcurrentsession(); // do some work... In a CMT/EJB, even rollback happens automatically. An unhandled RuntimeException thrown by a session bean method tells the container to set the global transaction to rollback. You do not need to use the Hibernate Transaction API at all with BMT or CMT, and you get automatic propagation of the "current" Session bound to the transaction. When configuring Hibernate's transaction factory, choose org.hibernate.transaction.jtatransactionfactory if you use JTA directly (BMT), and org.hibernate.transaction.cmttransactionfactory in a CMT session bean. Remember to also set hibernate.transaction.manager_lookup_class. Ensure that your hibernate.current_session_context_class is either unset (backwards compatibility), or is set to "jta". The getcurrentsession() operation has one downside in a JTA environment. There is one caveat to the use of after_statement connection release mode, which is then used by default. Due to a limitation of the JTA spec, it is not possible for Hibernate to automatically clean up any unclosed ScrollableResults or Iterator instances returned by scroll() or iterate(). You must release the underlying database cursor by calling ScrollableResults.close() or Hibernate.close(Iterator) explicitly from a finally block. Most applications can easily avoid using scroll() or iterate() from the JTA or CMT code.) Exception handling If the Session throws an exception, including any SQLException, immediately rollback the database transaction, call Session.close() and discard the Session instance. Certain methods of Session will not leave the session in a consistent state. No exception thrown by Hibernate can be treated as recoverable. Ensure that the Session will be closed by calling close() in a finally block. The HibernateException, which wraps most of the errors that can occur in a Hibernate persistence layer, is an unchecked exception. It was not in older versions of Hibernate. In our 248

261 Transaction timeout opinion, we should not force the application developer to catch an unrecoverable exception at a low layer. In most systems, unchecked and fatal exceptions are handled in one of the first frames of the method call stack (i.e., in higher layers) and either an error message is presented to the application user or some other appropriate action is taken. Note that Hibernate might also throw other unchecked exceptions that are not a HibernateException. These are not recoverable and appropriate action should be taken. Hibernate wraps SQLExceptions thrown while interacting with the database in a JDBCException. In fact, Hibernate will attempt to convert the exception into a more meaningful subclass of JDBCException. The underlying SQLException is always available via JDBCException.getCause(). Hibernate converts the SQLException into an appropriate JDBCException subclass using the SQLExceptionConverter attached to the SessionFactory. By default, the SQLExceptionConverter is defined by the configured dialect. However, it is also possible to plug in a custom implementation. See the javadocs for the SQLExceptionConverterFactory class for details. The standard JDBCException subtypes are: JDBCConnectionException: indicates an error with the underlying JDBC communication. SQLGrammarException: indicates a grammar or syntax problem with the issued SQL. ConstraintViolationException: indicates some form of integrity constraint violation. LockAcquisitionException: indicates an error acquiring a lock level necessary to perform the requested operation. GenericJDBCException: a generic exception which did not fall into any of the other categories Transaction timeout An important feature provided by a managed environment like EJB, that is never provided for non-managed code, is transaction timeout. Transaction timeouts ensure that no misbehaving transaction can indefinitely tie up resources while returning no response to the user. Outside a managed (JTA) environment, Hibernate cannot fully provide this functionality. However, Hibernate can at least control data access operations, ensuring that database level deadlocks and queries with huge result sets are limited by a defined timeout. In a managed environment, Hibernate can delegate transaction timeout to JTA. This functionality is abstracted by the Hibernate Transaction object. Session sess = factory.opensession(); try { //set transaction timeout to 3 seconds sess.gettransaction().settimeout(3); sess.gettransaction().begin(); // do some work... sess.gettransaction().commit() 249

262 Chapter 13. Transactions and... catch (RuntimeException e) { sess.gettransaction().rollback(); throw e; // or display error message finally { sess.close(); settimeout() cannot be called in a CMT bean, where transaction timeouts must be defined declaratively Optimistic concurrency control The only approach that is consistent with high concurrency and high scalability, is optimistic concurrency control with versioning. Version checking uses version numbers, or timestamps, to detect conflicting updates and to prevent lost updates. Hibernate provides three possible approaches to writing application code that uses optimistic concurrency. The use cases we discuss are in the context of long conversations, but version checking also has the benefit of preventing lost updates in single database transactions Application version checking In an implementation without much help from Hibernate, each interaction with the database occurs in a new Session and the developer is responsible for reloading all persistent instances from the database before manipulating them. The application is forced to carry out its own version checking to ensure conversation transaction isolation. This approach is the least efficient in terms of database access. It is the approach most similar to entity EJBs. // foo is an instance loaded by a previous Session session = factory.opensession(); Transaction t = session.begintransaction(); int oldversion = foo.getversion(); session.load( foo, foo.getkey() ); // load the current state if ( oldversion!= foo.getversion() ) throw new StaleObjectStateException(); foo.setproperty("bar"); t.commit(); session.close(); The version property is mapped using <version>, and Hibernate will automatically increment it during flush if the entity is dirty. If you are operating in a low-data-concurrency environment, and do not require version checking, you can use this approach and skip the version check. In this case, last commit wins is the default strategy for long conversations. Be aware that this might confuse the users of the application, as they might experience lost updates without error messages or a chance to merge conflicting changes. 250

263 Extended session and automatic versioning Manual version checking is only feasible in trivial circumstances and not practical for most applications. Often not only single instances, but complete graphs of modified objects, have to be checked. Hibernate offers automatic version checking with either an extended Session or detached instances as the design paradigm Extended session and automatic versioning A single Session instance and its persistent instances that are used for the whole conversation are known as session-per-conversation. Hibernate checks instance versions at flush time, throwing an exception if concurrent modification is detected. It is up to the developer to catch and handle this exception. Common options are the opportunity for the user to merge changes or to restart the business conversation with non-stale data. The Session is disconnected from any underlying JDBC connection when waiting for user interaction. This approach is the most efficient in terms of database access. The application does not version check or reattach detached instances, nor does it have to reload instances in every database transaction. // foo is an instance loaded earlier by the old session Transaction t = session.begintransaction(); // Obtain a new JDBC connection, start transaction foo.setproperty("bar"); session.flush(); t.commit(); session.close(); // Only for last transaction in conversation // Also return JDBC connection // Only for last transaction in conversation The foo object knows which Session it was loaded in. Beginning a new database transaction on an old session obtains a new connection and resumes the session. Committing a database transaction disconnects a session from the JDBC connection and returns the connection to the pool. After reconnection, to force a version check on data you are not updating, you can call Session.lock() with LockMode.READ on any objects that might have been updated by another transaction. You do not need to lock any data that you are updating. Usually you would set FlushMode.MANUAL on an extended Session, so that only the last database transaction cycle is allowed to actually persist all modifications made in this conversation. Only this last database transaction will include the flush() operation, and then close() the session to end the conversation. This pattern is problematic if the Session is too big to be stored during user think time (for example, an HttpSession should be kept as small as possible). As the Session is also the first-level cache and contains all loaded objects, we can probably use this strategy only for a few request/response cycles. Use a Session only for a single conversation as it will soon have stale data. 251

264 Chapter 13. Transactions and... Note Earlier versions of Hibernate required explicit disconnection and reconnection of a Session. These methods are deprecated, as beginning and ending a transaction has the same effect. Keep the disconnected Session close to the persistence layer. Use an EJB stateful session bean to hold the Session in a three-tier environment. Do not transfer it to the web layer, or even serialize it to a separate tier, to store it in the HttpSession. The extended session pattern, or session-per-conversation, is more difficult to implement with automatic current session context management. You need to supply your own implementation of the CurrentSessionContext for this. See the Hibernate Wiki for examples Detached objects and automatic versioning 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 detached instances originally loaded in another Session and then reattaches them using Session.update(), Session.saveOrUpdate(), or Session.merge(). // foo is an instance loaded by a previous Session foo.setproperty("bar"); session = factory.opensession(); Transaction t = session.begintransaction(); session.saveorupdate(foo); // Use merge() if "foo" might have been loaded already t.commit(); session.close(); Again, Hibernate will check instance versions during flush, throwing an exception if conflicting updates occurred. You can also call lock() instead of update(), and use LockMode.READ (performing a version check and bypassing all caches) if you are sure that the object has not been modified Customizing automatic versioning You can disable Hibernate's automatic version increment for particular properties and collections by setting the optimistic-lock mapping attribute to false. Hibernate will then no longer increment versions if the property is dirty. Legacy database schemas are often static and cannot be modified. Or, other applications might access the same database and will not know how to handle version numbers or even timestamps. In both cases, versioning cannot rely on a particular column in a table. To force a version check with a comparison of the state of all fields in a row but without a version or timestamp property mapping, turn on optimistic-lock="all" in the <class> mapping. This conceptually only works 252

265 Pessimistic locking if Hibernate can compare the old and the new state (i.e., if you use a single long Session and not session-per-request-with-detached-objects). Concurrent modification can be permitted in instances where the changes that have been made do not overlap. If you set optimistic-lock="dirty" when mapping the <class>, Hibernate will only compare dirty fields during flush. In both cases, with dedicated version/timestamp columns or with a full/dirty field comparison, Hibernate uses a single UPDATE statement, with an appropriate WHERE clause, per entity to execute the version check and update the information. If you use transitive persistence to cascade reattachment to associated entities, Hibernate may execute unnecessary updates. This is usually not a problem, but on update triggers in the database might be executed even when no changes have been made to detached instances. You can customize this behavior by setting selectbefore-update="true" in the <class> mapping, forcing Hibernate to SELECT the instance to ensure that changes did occur before updating the row Pessimistic locking It is not intended that users spend much time worrying about locking strategies. It is usually enough to specify an isolation level for the JDBC connections and then simply let the database do all the work. However, advanced users may wish to obtain exclusive pessimistic locks or re-obtain locks at the start of a new transaction. Hibernate will always use the locking mechanism of the database; it never lock objects in memory. The LockMode class defines the different lock levels that can be acquired by Hibernate. A lock is obtained by the following mechanisms: LockMode.WRITE is acquired automatically when Hibernate updates or inserts a row. LockMode.UPGRADE can be acquired upon explicit user request using SELECT... FOR UPDATE on databases which support that syntax. LockMode.UPGRADE_NOWAIT can be acquired upon explicit user request using a SELECT... FOR UPDATE NOWAIT under Oracle. LockMode.READ is acquired automatically when Hibernate reads data under Repeatable Read or Serializable isolation level. It can be re-acquired by explicit user request. LockMode.NONE represents the absence of a lock. All objects switch to this lock mode at the end of a Transaction. Objects associated with the session via a call to update() or saveorupdate() also start out in this lock mode. The "explicit user request" is expressed in one of the following ways: A call to Session.load(), specifying a LockMode. A call to Session.lock(). A call to Query.setLockMode(). 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 253

266 Chapter 13. Transactions and... for an object that is already loaded with a less restrictive lock than the one requested, Hibernate calls lock() for that object. Session.lock() performs a version number check if the specified lock mode is READ, UPGRADE or UPGRADE_NOWAIT. In the case of UPGRADE or UPGRADE_NOWAIT, SELECT... FOR UPDATE is used. If the requested lock mode is not supported by the database, Hibernate uses an appropriate alternate mode instead of throwing an exception. This ensures that applications are portable Connection release modes One of the legacies of Hibernate 2.x JDBC connection management meant that a Session would obtain a connection when it was first required and then maintain that connection until the session was closed. Hibernate 3.x introduced the notion of connection release modes that would instruct a session how to handle its JDBC connections. The following discussion is pertinent only to connections provided through a configured ConnectionProvider. User-supplied connections are outside the breadth of this discussion. The different release modes are identified by the enumerated values of org.hibernate.connectionreleasemode: ON_CLOSE: is the legacy behavior described above. The Hibernate session obtains a connection when it first needs to perform some JDBC access and maintains that connection until the session is closed. AFTER_TRANSACTION: releases connections after a org.hibernate.transaction has been completed. AFTER_STATEMENT (also referred to as aggressive release): releases connections after every statement execution. This aggressive releasing is skipped if that statement leaves open resources associated with the given session. Currently the only situation where this occurs is through the use of org.hibernate.scrollableresults. The configuration parameter hibernate.connection.release_mode is used to specify which release mode to use. The possible values are as follows: auto (the default): this choice delegates to the release mode returned by the org.hibernate.transaction.transactionfactory.getdefaultreleasemode() method. For JTATransactionFactory, this returns ConnectionReleaseMode.AFTER_STATEMENT; for JDBCTransactionFactory, this returns ConnectionReleaseMode.AFTER_TRANSACTION. Do not change this default behavior as failures due to the value of this setting tend to indicate bugs and/or invalid assumptions in user code. on_close: uses ConnectionReleaseMode.ON_CLOSE. This setting is left for backwards compatibility, but its use is discouraged. after_transaction: uses ConnectionReleaseMode.AFTER_TRANSACTION. This setting should not be used in JTA environments. Also note that with ConnectionReleaseMode.AFTER_TRANSACTION, if a session is considered to be in autocommit mode, connections will be released as if the release mode were AFTER_STATEMENT. after_statement: uses ConnectionReleaseMode.AFTER_STATEMENT. Additionally, the configured ConnectionProvider is consulted to see if it supports this 254

267 Connection release modes setting (supportsaggressiverelease()). If not, the release mode is reset to ConnectionReleaseMode.AFTER_TRANSACTION. This setting is only safe in environments where we can either re-acquire the same underlying JDBC connection each time you make a call into ConnectionProvider.getConnection() or in auto-commit environments where it does not matter if we re-establish the same connection. 255

268 256

269 Chapter 14. Interceptors and events It is useful for the application to react to certain events that occur inside Hibernate. This allows for the implementation of generic functionality and the extension of Hibernate functionality Interceptors The Interceptor interface provides callbacks from the session to the application, allowing the application to inspect and/or manipulate properties of a persistent object before it is saved, updated, deleted or loaded. One possible use for this is to track auditing information. For example, the following Interceptor automatically sets the createtimestamp when an Auditable is created and updates the lastupdatetimestamp property when an Auditable is updated. You can either implement Interceptor directly or extend EmptyInterceptor. package org.hibernate.test; import java.io.serializable; import java.util.date; import java.util.iterator; import org.hibernate.emptyinterceptor; import org.hibernate.transaction; import org.hibernate.type.type; public class AuditInterceptor extends EmptyInterceptor { private int updates; private int creates; private int loads; public void ondelete(object entity, Serializable id, Object[] state, String[] propertynames, Type[] types) { // do nothing public boolean onflushdirty(object entity, Serializable id, Object[] currentstate, Object[] previousstate, String[] propertynames, Type[] types) { if ( entity instanceof Auditable ) { updates++; for ( int i=0; i < propertynames.length; i++ ) { if ( "lastupdatetimestamp".equals( propertynames[i] ) ) { currentstate[i] = new Date(); return true; 257

270 Chapter 14. Interceptors and... return false; public boolean onload(object entity, Serializable id, Object[] state, String[] propertynames, Type[] types) { if ( entity instanceof Auditable ) { loads++; return false; public boolean onsave(object entity, Serializable id, Object[] state, String[] propertynames, Type[] types) { if ( entity instanceof Auditable ) { creates++; for ( int i=0; i<propertynames.length; i++ ) { if ( "createtimestamp".equals( propertynames[i] ) ) { state[i] = new Date(); return true; return false; public void aftertransactioncompletion(transaction tx) { if ( tx.wascommitted() ) { System.out.println("Creations: " + creates + ", Updates: " + updates, "Loads: " + loads); updates=0; creates=0; loads=0; There are two kinds of inteceptors: Session-scoped and SessionFactory-scoped. A Session-scoped interceptor is specified when a session is opened using one of the overloaded SessionFactory.openSession() methods accepting an Interceptor. Session session = sf.opensession( new AuditInterceptor() ); A SessionFactory-scoped interceptor is registered with the Configuration object prior to building the SessionFactory. Unless a session is opened explicitly specifying the interceptor to 258

271 Event system use, the supplied interceptor will be applied to all sessions opened from that SessionFactory. SessionFactory-scoped interceptors must be thread safe. Ensure that you do not store sessionspecific states, since multiple sessions will use this interceptor potentially concurrently. new Configuration().setInterceptor( new AuditInterceptor() ); Event system If you have to react to particular events in your persistence layer, you can also use the Hibernate3 event architecture. The event system can be used in addition, or as a replacement, for interceptors. All the methods of the Session interface correlate to an event. You have a LoadEvent, a FlushEvent, etc. Consult the XML configuration-file DTD or the org.hibernate.event package for the full list of defined event types. When a request is made of one of these methods, the Hibernate Session generates an appropriate event and passes it to the configured event listeners for that type. Out-of-the-box, these listeners implement the same processing in which those methods always resulted. However, you are free to implement a customization of one of the listener interfaces (i.e., the LoadEvent is processed by the registered implementation of the LoadEventListener interface), in which case their implementation would be responsible for processing any load() requests made of the Session. The listeners should be considered singletons. This means they are shared between requests, and should not save any state as instance variables. A custom listener implements the appropriate interface for the event it wants to process and/or extend one of the convenience base classes (or even the default event listeners used by Hibernate out-of-the-box as these are declared non-final for this purpose). Custom listeners can either be registered programmatically through the Configuration object, or specified in the Hibernate configuration XML. Declarative configuration through the properties file is not supported. Here is an example of a custom load event listener: public class MyLoadListener implements LoadEventListener { // this is the single method defined by the LoadEventListener interface public void onload(loadevent event, LoadEventListener.LoadType loadtype) throws HibernateException { if (!MySecurity.isAuthorized( event.getentityclassname(), event.getentityid() ) ) { throw MySecurityException("Unauthorized access"); You also need a configuration entry telling Hibernate to use the listener in addition to the default listener: <hibernate-configuration> 259

272 Chapter 14. Interceptors and... <session-factory>... <event type="load"> <listener class="com.eg.myloadlistener"/> <listener class="org.hibernate.event.def.defaultloadeventlistener"/> </event> </session-factory> </hibernate-configuration> Instead, you can register it programmatically: Configuration cfg = new Configuration(); LoadEventListener[] stack = { new MyLoadListener(), new DefaultLoadEventListener() ; cfg.eventlisteners().setloadeventlisteners(stack); Listeners registered declaratively cannot share instances. If the same class name is used in multiple <listener/> elements, each reference will result in a separate instance of that class. If you need to share listener instances between listener types you must use the programmatic registration approach. Why implement an interface and define the specific type during configuration? A listener implementation could implement multiple event listener interfaces. Having the type additionally defined during registration makes it easier to turn custom listeners on or off during configuration Hibernate declarative security Usually, declarative security in Hibernate applications is managed in a session facade layer. Hibernate3 allows certain actions to be permissioned via JACC, and authorized via JAAS. This is an optional functionality that is built on top of the event architecture. First, you must configure the appropriate event listeners, to enable the use of JAAS authorization. <listener type="pre-delete" class="org.hibernate.secure.jaccpredeleteeventlistener"/> <listener type="pre-update" class="org.hibernate.secure.jaccpreupdateeventlistener"/> <listener type="pre-insert" class="org.hibernate.secure.jaccpreinserteventlistener"/> <listener type="pre-load" class="org.hibernate.secure.jaccpreloadeventlistener"/> Note that <listener type="..." class="..."/> is shorthand for <event type="..."><listener class="..."/></event> when there is exactly one listener for a particular event type. Next, while still in hibernate.cfg.xml, bind the permissions to roles: <grant role="admin" entity-name="user" actions="insert,update,read"/> <grant role="su" entity-name="user" actions="*"/> 260

273 Hibernate declarative security The role names are the roles understood by your JACC provider. 261

274 262

275 Chapter 15. Batch processing A naive approach to inserting 100,000 rows in the database using Hibernate might look like this: Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); for ( int i=0; i<100000; i++ ) { Customer customer = new Customer(...); session.save(customer); tx.commit(); session.close(); This would fall over with an OutOfMemoryException somewhere around the 50,000th row. That is because Hibernate caches all the newly inserted Customer instances in the session-level cache. In this chapter we will show you how to avoid this problem. If you are undertaking batch processing you will need to enable the use of JDBC batching. This is absolutely essential if you want to achieve optimal performance. Set the JDBC batch size to a reasonable number (10-50, for example): hibernate.jdbc.batch_size 20 Hibernate disables insert batching at the JDBC level transparently if you use an identity identifier generator. You can also do this kind of work in a process where interaction with the second-level cache is completely disabled: hibernate.cache.use_second_level_cache false However, this is not absolutely necessary, since we can explicitly set the CacheMode to disable interaction with the second-level cache Batch inserts When making new objects persistent flush() and then clear() the session regularly in order to control the size of the first-level cache. Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); for ( int i=0; i<100000; i++ ) { 263

276 Chapter 15. Batch processing Customer customer = new Customer(...); session.save(customer); if ( i % 20 == 0 ) { //20, same as the JDBC batch size //flush a batch of inserts and release memory: session.flush(); session.clear(); tx.commit(); session.close(); Batch updates For retrieving and updating data, the same ideas apply. In addition, you need to use scroll() to take advantage of server-side cursors for queries that return many rows of data. Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); ScrollableResults customers = session.getnamedquery("getcustomers").setcachemode(cachemode.ignore).scroll(scrollmode.forward_only); int count=0; while ( customers.next() ) { Customer customer = (Customer) customers.get(0); customer.updatestuff(...); if ( ++count % 20 == 0 ) { //flush a batch of updates and release memory: session.flush(); session.clear(); tx.commit(); session.close(); The StatelessSession interface Alternatively, Hibernate provides a command-oriented API that can be used for streaming data to and from the database in the form of detached objects. A StatelessSession has no persistence context associated with it and does not provide many of the higher-level life cycle semantics. In particular, a stateless session does not implement a first-level cache nor interact with any second-level or query cache. It does not implement transactional write-behind or automatic dirty checking. Operations performed using a stateless session never cascade to associated instances. Collections are ignored by a stateless session. Operations performed via a stateless session bypass Hibernate's event model and interceptors. Due to the lack of a first-level cache, Stateless sessions are vulnerable to data aliasing effects. A stateless session is a lower-level abstraction that is much closer to the underlying JDBC. 264

277 DML-style operations StatelessSession session = sessionfactory.openstatelesssession(); Transaction tx = session.begintransaction(); ScrollableResults customers = session.getnamedquery("getcustomers").scroll(scrollmode.forward_only); while ( customers.next() ) { Customer customer = (Customer) customers.get(0); customer.updatestuff(...); session.update(customer); tx.commit(); session.close(); In this code example, the Customer instances returned by the query are immediately detached. They are never associated with any persistence context. The insert(), update() and delete() operations defined by the StatelessSession interface are considered to be direct database row-level operations. They result in the immediate execution of a SQL INSERT, UPDATE or DELETE respectively. They have different semantics to the save(), saveorupdate() and delete() operations defined by the Session interface DML-style operations As already discussed, automatic and transparent object/relational mapping is concerned with the management of the object state. The object state is available in memory. This means that manipulating data directly in the database (using the SQL Data Manipulation Language (DML) the statements: INSERT, UPDATE, DELETE) will not affect in-memory state. However, Hibernate provides methods for bulk SQL-style DML statement execution that is performed through the Hibernate Query Language (HQL). The pseudo-syntax for UPDATE and DELETE statements is: ( UPDATE DELETE ) FROM? EntityName (WHERE where_conditions)?. Some points to note: In the from-clause, the FROM keyword is optional There can only be a single entity named in the from-clause. It can, however, be aliased. If the entity name is aliased, then any property references must be qualified using that alias. If the entity name is not aliased, then it is illegal for any property references to be qualified. No joins, either implicit or explicit, can be specified in a bulk HQL query. Sub-queries can be used in the where-clause, where the subqueries themselves may contain joins. The where-clause is also optional. As an example, to execute an HQL UPDATE, use the Query.executeUpdate() method. The method is named for those familiar with JDBC's PreparedStatement.executeUpdate(): 265

278 Chapter 15. Batch processing Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); String hqlupdate = "update Customer c set c.name = :newname where c.name = :oldname"; // or String hqlupdate = "update Customer set name = :newname where name = :oldname"; int updatedentities = s.createquery( hqlupdate ).setstring( "newname", newname ).setstring( "oldname", oldname ).executeupdate(); tx.commit(); session.close(); In keeping with the EJB3 specification, HQL UPDATE statements, by default, do not effect the version or the timestamp property values for the affected entities. However, you can force Hibernate to reset the version or timestamp property values through the use of a versioned update. This is achieved by adding the VERSIONED keyword after the UPDATE keyword. Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); String hqlversionedupdate = "update versioned Customer set name = :newname where name = :oldname"; int updatedentities = s.createquery( hqlupdate ).setstring( "newname", newname ).setstring( "oldname", oldname ).executeupdate(); tx.commit(); session.close(); Custom version types, org.hibernate.usertype.userversiontype, are not allowed in conjunction with a update versioned statement. To execute an HQL DELETE, use the same Query.executeUpdate() method: Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); String hqldelete = "delete Customer c where c.name = :oldname"; // or String hqldelete = "delete Customer where name = :oldname"; int deletedentities = s.createquery( hqldelete ).setstring( "oldname", oldname ).executeupdate(); tx.commit(); session.close(); The int value returned by the Query.executeUpdate() method indicates the number of entities effected by the operation. This may or may not correlate to the number of rows effected in the database. An HQL bulk operation might result in multiple actual SQL statements being executed (for joined-subclass, for example). The returned number indicates the number of actual entities affected by the statement. Going back to the example of joined-subclass, a delete against one 266

279 DML-style operations of the subclasses may actually result in deletes against not just the table to which that subclass is mapped, but also the "root" table and potentially joined-subclass tables further down the inheritance hierarchy. The pseudo-syntax for INSERT statements is: INSERT INTO EntityName properties_list select_statement. Some points to note: Only the INSERT INTO... SELECT... form is supported; not the INSERT INTO... VALUES... form. The properties_list is analogous to the column specification in the SQL INSERT statement. For entities involved in mapped inheritance, only properties directly defined on that given class-level can be used in the properties_list. Superclass properties are not allowed and subclass properties do not make sense. In other words, INSERT statements are inherently nonpolymorphic. select_statement can be any valid HQL select query, with the caveat that the return types must match the types expected by the insert. Currently, this is checked during query compilation rather than allowing the check to relegate to the database. This might, however, cause problems between Hibernate Types which are equivalent as opposed to equal. This might cause issues with mismatches between a property defined as a org.hibernate.type.datetype and a property defined as a org.hibernate.type.timestamptype, even though the database might not make a distinction or might be able to handle the conversion. For the id property, the insert statement gives you two options. You can either explicitly specify the id property in the properties_list, in which case its value is taken from the corresponding select expression, or omit it from the properties_list, in which case a generated value is used. This latter option is only available when using id generators that operate in the database; attempting to use this option with any "in memory" type generators will cause an exception during parsing. For the purposes of this discussion, in-database generators are considered to be org.hibernate.id.sequencegenerator (and its subclasses) and any implementers of org.hibernate.id.postinsertidentifiergenerator. The most notable exception here is org.hibernate.id.tablehilogenerator, which cannot be used because it does not expose a selectable way to get its values. For properties mapped as either version or timestamp, the insert statement gives you two options. You can either specify the property in the properties_list, in which case its value is taken from the corresponding select expressions, or omit it from the properties_list, in which case the seed value defined by the org.hibernate.type.versiontype is used. The following is an example of an HQL INSERT statement execution: Session session = sessionfactory.opensession(); Transaction tx = session.begintransaction(); String hqlinsert = "insert into DelinquentAccount (id, name) select c.id, c.name from Customer c where..."; int createdentities = s.createquery( hqlinsert ).executeupdate(); tx.commit(); 267

280 Chapter 15. Batch processing session.close(); 268

281 Chapter 16. HQL: The Hibernate Query Language Hibernate uses a powerful query language (HQL) that is similar in appearance to SQL. Compared with SQL, however, HQL is fully object-oriented and understands notions like inheritance, polymorphism and association Case Sensitivity With the exception of names of Java classes and properties, queries are case-insensitive. So SeLeCT is the same as select is the same as SELECT, but org.hibernate.eg.foo is not org.hibernate.eg.foo, and foo.barset is not foo.barset. This manual uses lowercase HQL keywords. Some users find queries with uppercase keywords more readable, but this convention is unsuitable for queries embedded in Java code The from clause The simplest possible Hibernate query is of the form: from eg.cat This returns all instances of the class eg.cat. You do not usually need to qualify the class name, since auto-import is the default. For example: from Cat In order to refer to the Cat in other parts of the query, you will need to assign an alias. For example: from Cat as cat This query assigns the alias cat to Cat instances, so you can use that alias later in the query. The as keyword is optional. You could also write: from Cat cat Multiple classes can appear, resulting in a cartesian product or "cross" join. from Formula, Parameter 269

282 Chapter 16. HQL: The Hibernat... from Formula as form, Parameter as param It is good practice to name query aliases using an initial lowercase as this is consistent with Java naming standards for local variables (e.g. domesticcat) Associations and joins You can also assign aliases to associated entities or to elements of a collection of values using a join. For example: from Cat as cat inner join cat.mate as mate left outer join cat.kittens as kitten from Cat as cat left join cat.mate.kittens as kittens from Formula form full join form.parameter param The supported join types are borrowed from ANSI SQL: 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. from Cat as cat join cat.mate as mate left join cat.kittens as kitten You may supply extra join conditions using the HQL with keyword. from Cat as cat left join cat.kittens as kitten with kitten.bodyweight > 10.0 A "fetch" join allows associations or collections of values to be initialized along with their parent objects using a single select. This is particularly useful in the case of a collection. It effectively 270

283 Forms of join syntax overrides the outer join and lazy declarations of the mapping file for associations and collections. See Section 21.1, Fetching strategies for more information. from Cat as cat inner join fetch cat.mate left join fetch cat.kittens A fetch join does not usually need to assign an alias, because the associated objects should not be used in the where clause (or any other clause). The associated objects are also not returned directly in the query results. Instead, they may be accessed via the parent object. The only reason you might need an alias is if you are recursively join fetching a further collection: from Cat as cat inner join fetch cat.mate left join fetch cat.kittens child left join fetch child.kittens The fetch construct cannot be used in queries called using iterate() (though scroll() can be used). Fetch should be used together with setmaxresults() or setfirstresult(), as these operations are based on the result rows which usually contain duplicates for eager collection fetching, hence, the number of rows is not what you would expect. Fetch should also not be used together with impromptu with condition. It is possible to create a cartesian product by join fetching more than one collection in a query, so take care in this case. Join fetching multiple collection roles can produce unexpected results for bag mappings, so user discretion is advised when formulating queries in this case. Finally, note that full join fetch and right join fetch are not meaningful. If you are using property-level lazy fetching (with bytecode instrumentation), it is possible to force Hibernate to fetch the lazy properties in the first query immediately using fetch all properties. from Document fetch all properties order by name from Document doc fetch all properties where lower(doc.name) like '%cats%' Forms of join syntax HQL supports two forms of association joining: implicit and explicit. The queries shown in the previous section all use the explicit form, that is, where the join keyword is explicitly used in the from clause. This is the recommended form. 271

284 Chapter 16. HQL: The Hibernat... The implicit form does not use the join keyword. Instead, the associations are "dereferenced" using dot-notation. implicit joins can appear in any of the HQL clauses. implicit join result in inner joins in the resulting SQL statement. from Cat as cat where cat.mate.name like '%s%' Referring to identifier property There are 2 ways to refer to an entity's identifier property: The special property (lowercase) id may be used to reference the identifier property of an entity provided that the entity does not define a non-identifier property named id. If the entity defines a named identifier property, you can use that property name. References to composite identifier properties follow the same naming rules. If the entity has a nonidentifier property named id, the composite identifier property can only be referenced by its defined named. Otherwise, the special id property can be used to reference the identifier property. Important Please note that, starting in version 3.2.2, this has changed significantly. In previous versions, id always referred to the identifier property regardless of its actual name. A ramification of that decision was that non-identifier properties named id could never be referenced in Hibernate queries The select clause The select clause picks which objects and properties to return in the query result set. Consider the following: select mate from Cat as cat inner join cat.mate as mate The query will select mates of other Cats. You can express this query more compactly as: select cat.mate from Cat cat Queries can return properties of any value type including properties of component type: select cat.name from DomesticCat cat 272

285 The select clause where cat.name like 'fri%' select cust.name.firstname from Customer as cust Queries can return multiple objects and/or properties as an array of type Object[]: select mother, offspr, mate.name from DomesticCat as mother inner join mother.mate as mate left outer join mother.kittens as offspr Or as a List: select new list(mother, offspr, mate.name) from DomesticCat as mother inner join mother.mate as mate left outer join mother.kittens as offspr Or - assuming that the class Family has an appropriate constructor - as an actual typesafe Java object: select new Family(mother, mate, offspr) from DomesticCat as mother join mother.mate as mate left join mother.kittens as offspr You can assign aliases to selected expressions using as: select max(bodyweight) as max, min(bodyweight) as min, count(*) as n from Cat cat This is most useful when used together with select new map: select new map( max(bodyweight) as max, min(bodyweight) as min, count(*) as n ) from Cat cat This query returns a Map from aliases to selected values. 273

286 Chapter 16. HQL: The Hibernat Aggregate functions HQL queries can even return the results of aggregate functions on properties: select avg(cat.weight), sum(cat.weight), max(cat.weight), count(cat) from Cat cat The supported aggregate functions are: avg(...), sum(...), min(...), max(...) count(*) count(...), count(distinct...), count(all...) You can use arithmetic operators, concatenation, and recognized SQL functions in the select clause: select cat.weight + sum(kitten.weight) from Cat cat join cat.kittens kitten group by cat.id, cat.weight select firstname ' ' initial ' ' upper(lastname) from Person The distinct and all keywords can be used and have the same semantics as in SQL. select distinct cat.name from Cat cat select count(distinct cat.name), count(cat) from Cat cat Polymorphic queries A query like: from Cat as cat returns instances not only of Cat, but also of subclasses like DomesticCat. Hibernate queries can name any Java class or interface in the from clause. The query will return instances of all persistent classes that extend that class or implement the interface. The following query would return all persistent objects: 274

287 The where clause from java.lang.object o The interface Named might be implemented by various persistent classes: from Named n, Named m where n.name = m.name These last two queries will require more than one SQL SELECT. This means that the order by clause does not correctly order the whole result set. It also means you cannot call these queries using Query.scroll() The where clause The where clause allows you to refine the list of instances returned. If no alias exists, you can refer to properties by name: from Cat where name='fritz' If there is an alias, use a qualified property name: from Cat as cat where cat.name='fritz' This returns instances of Cat named 'Fritz'. The following query: select foo from Foo foo, Bar bar where foo.startdate = bar.date returns all instances of Foo with an instance of bar with a date property equal to the startdate property of the Foo. Compound path expressions make the where clause extremely powerful. Consider the following: from Cat cat where cat.mate.name is not null This query translates to an SQL query with a table (inner) join. For example: from Foo foo 275

288 Chapter 16. HQL: The Hibernat... where foo.bar.baz.customer.address.city is not null would result in a query that would require four table joins in SQL. The = operator can be used to compare not only properties, but also instances: from Cat cat, Cat rival where cat.mate = rival.mate select cat, mate from Cat cat, Cat mate where cat.mate = mate The special property (lowercase) id can be used to reference the unique identifier of an object. See Section 16.5, Referring to identifier property for more information. from Cat as cat where cat.id = 123 from Cat as cat where cat.mate.id = 69 The second query is efficient and does not require a table join. Properties of composite identifiers can also be used. Consider the following example where Person has composite identifiers consisting of country and medicarenumber: from bank.person person where person.id.country = 'AU' and person.id.medicarenumber = from bank.account account where account.owner.id.country = 'AU' and account.owner.id.medicarenumber = Once again, the second query does not require a table join. See Section 16.5, Referring to identifier property for more information regarding referencing identifier properties) The special property class accesses the discriminator value of an instance in the case of polymorphic persistence. A Java class name embedded in the where clause will be translated to its discriminator value. 276

289 Expressions from Cat cat where cat.class = DomesticCat You can also use components or composite user types, or properties of said component types. See Section 16.17, Components for more information. An "any" type has the special properties id and class that allows you to express a join in the following way (where AuditLog.item is a property mapped with <any>): from AuditLog log, Payment payment where log.item.class = 'Payment' and log.item.id = payment.id The log.item.class and payment.class would refer to the values of completely different database columns in the above query Expressions Expressions used in the where clause include the following: mathematical operators: +, -, *, / binary comparison operators: =, >=, <=, <>,!=, like logical operations and, or, not Parentheses ( ) that indicates grouping in, not in, between, is null, is not null, is empty, is not empty, member of and not member of "Simple" case, case... when... then... else... end, and "searched" case, case when... then... else... end string concatenation or concat(...,...) current_date(), current_time(), and current_timestamp() second(...), minute(...), hour(...), day(...), month(...), and year(...) Any function or operator defined by EJB-QL 3.0: substring(), trim(), lower(), upper(), length(), locate(), abs(), sqrt(), bit_length(), mod() coalesce() and nullif() str() for converting numeric or temporal values to a readable string cast(... as...), where the second argument is the name of a Hibernate type, and extract(... from...) if ANSI cast() and extract() is supported by the underlying database the HQL index() function, that applies to aliases of a joined indexed collection HQL functions that take collection-valued path expressions: size(), minelement(), maxelement(), minindex(), maxindex(), along with the special elements() and indices functions that can be quantified using some, all, exists, any, in. Any database-supported SQL scalar function like sign(), trunc(), rtrim(), and sin() JDBC-style positional parameters? named parameters :name, :start_date, and :x1 277

290 Chapter 16. HQL: The Hibernat... SQL literals 'foo', 69, 6.66E+2, ' :00:01.0' Java public static final constants eg.color.tabby in and between can be used as follows: from DomesticCat cat where cat.name between 'A' and 'B' from DomesticCat cat where cat.name in ( 'Foo', 'Bar', 'Baz' ) The negated forms can be written as follows: from DomesticCat cat where cat.name not between 'A' and 'B' from DomesticCat cat where cat.name not in ( 'Foo', 'Bar', 'Baz' ) Similarly, is null and is not null can be used to test for null values. Booleans can be easily used in expressions by declaring HQL query substitutions in Hibernate configuration: <property name="hibernate.query.substitutions">true 1, false 0</property> This will replace the keywords true and false with the literals 1 and 0 in the translated SQL from this HQL: from Cat cat where cat.alive = true You can test the size of a collection with the special property size or the special size() function. from Cat cat where cat.kittens.size > 0 from Cat cat where size(cat.kittens) > 0 For indexed collections, you can refer to the minimum and maximum indices using minindex and maxindex functions. Similarly, you can refer to the minimum and maximum elements of a collection of basic type using the minelement and maxelement functions. For example: 278

291 Expressions from Calendar cal where maxelement(cal.holidays) > current_date from Order order where maxindex(order.items) > 100 from Order order where minelement(order.items) > The SQL functions any, some, all, exists, in are supported when passed the element or index set of a collection (elements and indices functions) or the result of a subquery (see below): select mother from Cat as mother, Cat as kit where kit in elements(foo.kittens) select p from NameList list, Person p where p.name = some elements(list.names) from Cat cat where exists elements(cat.kittens) from Player p where 3 > all elements(p.scores) from Show show where 'fizard' in indices(show.acts) Note that these constructs - size, elements, indices, minindex, maxindex, minelement, maxelement - can only be used in the where clause in Hibernate3. Elements of indexed collections (arrays, lists, and maps) can be referred to by index in a where clause only: from Order order where order.items[0].id = 1234 select person from Person person, Calendar calendar where calendar.holidays['national day'] = person.birthday and person.nationality.calendar = calendar 279

292 Chapter 16. HQL: The Hibernat... select item from Item item, Order order where order.items[ order.delivereditemindices[0] ] = item and order.id = 11 select item from Item item, Order order where order.items[ maxindex(order.items) ] = item and order.id = 11 The expression inside [] can even be an arithmetic expression: select item from Item item, Order order where order.items[ size(order.items) - 1 ] = item HQL also provides the built-in index() function for elements of a one-to-many association or collection of values. select item, index(item) from Order order join order.items item where index(item) < 5 Scalar SQL functions supported by the underlying database can be used: from DomesticCat cat where upper(cat.name) like 'FRI%' Consider how much longer and less readable the following query would be in SQL: select cust from Product prod, Store store inner join store.customers cust where prod.name = 'widget' and store.location.name in ( 'Melbourne', 'Sydney' ) and prod = all elements(cust.currentorder.lineitems) Hint: something like SELECT cust.name, cust.address, cust.phone, cust.id, cust.current_order FROM customers cust, stores store, locations loc, store_customers sc, product prod WHERE prod.name = 'widget' AND store.loc_id = loc.id 280

293 The order by clause AND loc.name IN ( 'Melbourne', 'Sydney' ) AND sc.store_id = store.id AND sc.cust_id = cust.id AND prod.id = ALL( SELECT item.prod_id FROM line_items item, orders o WHERE item.order_id = o.id AND cust.current_order = o.id ) The order by clause The list returned by a query can be ordered by any property of a returned class or components: from DomesticCat cat order by cat.name asc, cat.weight desc, cat.birthdate The optional asc or desc indicate ascending or descending order respectively The group by clause A query that returns aggregate values can be grouped by any property of a returned class or components: select cat.color, sum(cat.weight), count(cat) from Cat cat group by cat.color select foo.id, avg(name), max(name) from Foo foo join foo.names name group by foo.id A having clause is also allowed. select cat.color, sum(cat.weight), count(cat) from Cat cat group by cat.color having cat.color in (eg.color.tabby, eg.color.black) SQL functions and aggregate functions are allowed in the having and order by clauses if they are supported by the underlying database (i.e., not in MySQL). select cat 281

294 Chapter 16. HQL: The Hibernat... from Cat cat join cat.kittens kitten group by cat.id, cat.name, cat.other, cat.properties having avg(kitten.weight) > 100 order by count(kitten) asc, sum(kitten.weight) desc Neither the group by clause nor the order by clause can contain arithmetic expressions. Hibernate also does not currently expand a grouped entity, so you cannot write group by cat if all properties of cat are non-aggregated. You have to list all non-aggregated properties explicitly Subqueries For databases that support subselects, Hibernate supports subqueries within queries. A subquery must be surrounded by parentheses (often by an SQL aggregate function call). Even correlated subqueries (subqueries that refer to an alias in the outer query) are allowed. from Cat as fatcat where fatcat.weight > ( select avg(cat.weight) from DomesticCat cat ) from DomesticCat as cat where cat.name = some ( select name.nickname from Name as name ) from Cat as cat where not exists ( from Cat as mate where mate.mate = cat ) from DomesticCat as cat where cat.name not in ( select name.nickname from Name as name ) select cat.id, (select max(kit.weight) from cat.kitten kit) from Cat as cat Note that HQL subqueries can occur only in the select or where clauses. Note that subqueries can also utilize row value constructor syntax. See Section 16.18, Row value constructor syntax for more information. 282

295 HQL examples HQL examples Hibernate queries can be quite powerful and complex. In fact, the power of the query language is one of Hibernate's main strengths. The following example queries are similar to queries that have been used on recent projects. Please note that most queries you will write will be much simpler than the following examples. The following query returns the order id, number of items, the given minimum total value and the total value of the order for all unpaid orders for a particular customer. The results are ordered by total value. In determining the prices, it uses the current catalog. The resulting SQL query, against the ORDER, ORDER_LINE, PRODUCT, CATALOG and PRICE tables has four inner joins and an (uncorrelated) subselect. select order.id, sum(price.amount), count(item) from Order as order join order.lineitems as item join item.product as product, Catalog as catalog join catalog.prices as price where order.paid = false and order.customer = :customer and price.product = product and catalog.effectivedate < sysdate and catalog.effectivedate >= all ( select cat.effectivedate from Catalog as cat where cat.effectivedate < sysdate ) group by order having sum(price.amount) > :minamount order by sum(price.amount) desc What a monster! Actually, in real life, I'm not very keen on subqueries, so my query was really more like this: select order.id, sum(price.amount), count(item) from Order as order join order.lineitems as item join item.product as product, Catalog as catalog join catalog.prices as price where order.paid = false and order.customer = :customer and price.product = product and catalog = :currentcatalog group by order having sum(price.amount) > :minamount order by sum(price.amount) desc 283

296 Chapter 16. HQL: The Hibernat... The next query counts the number of payments in each status, excluding all payments in the AWAITING_APPROVAL status where the most recent status change was made by the current user. It translates to an SQL query with two inner joins and a correlated subselect against the PAYMENT, PAYMENT_STATUS and PAYMENT_STATUS_CHANGE tables. select count(payment), status.name from Payment as payment join payment.currentstatus as status join payment.statuschanges as statuschange where payment.status.name <> PaymentStatus.AWAITING_APPROVAL or ( statuschange.timestamp = ( select max(change.timestamp) from PaymentStatusChange change where change.payment = payment ) and statuschange.user <> :currentuser ) group by status.name, status.sortorder order by status.sortorder If the statuschanges collection was mapped as a list, instead of a set, the query would have been much simpler to write. select count(payment), status.name from Payment as payment join payment.currentstatus as status where payment.status.name <> PaymentStatus.AWAITING_APPROVAL or payment.statuschanges[ maxindex(payment.statuschanges) ].user <> :currentuser group by status.name, status.sortorder 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. select account, payment from Account as account left outer join account.payments as payment where :currentuser in elements(account.holder.users) and PaymentStatus.UNPAID = isnull(payment.currentstatus.name, PaymentStatus.UNPAID) order by account.type.sortorder, account.accountnumber, payment.duedate For some databases, we would need to do away with the (correlated) subselect. select account, payment 284

297 Bulk update and delete from Account as account join account.holder.users as user left outer join account.payments as payment where :currentuser = user and PaymentStatus.UNPAID = isnull(payment.currentstatus.name, PaymentStatus.UNPAID) order by account.type.sortorder, account.accountnumber, payment.duedate Bulk update and delete HQL now supports update, delete and insert... select... statements. See Section 15.4, DML-style operations for more information Tips & Tricks You can count the number of query results without returning them: ( (Integer) session.createquery("select count(*) from...").iterate().next() ).intvalue() To order a result by the size of a collection, use the following query: select usr.id, usr.name from User as usr left join usr.messages as msg group by usr.id, usr.name order by count(msg) If your database supports subselects, you can place a condition upon selection size in the where clause of your query: from User usr where size(usr.messages) >= 1 If your database does not support subselects, use the following query: select usr.id, usr.name from User usr join usr.messages msg group by usr.id, usr.name having count(msg) >= 1 As this solution cannot return a User with zero messages because of the inner join, the following form is also useful: select usr.id, usr.name 285

298 Chapter 16. HQL: The Hibernat... from User as usr left join usr.messages as msg group by usr.id, usr.name having count(msg) = 0 Properties of a JavaBean can be bound to named query parameters: Query q = s.createquery("from foo Foo as foo where foo.name=:name and foo.size=:size"); q.setproperties(foobean); // foobean has getname() and getsize() List foos = q.list(); Collections are pageable by using the Query interface with a filter: Query q = s.createfilter( collection, "" ); // the trivial filter q.setmaxresults(page_size); q.setfirstresult(page_size * pagenumber); List page = q.list(); Collection elements can be ordered or grouped using a query filter: Collection orderedcollection = s.filter( collection, "order by this.amount" ); Collection counts = s.filter( collection, "select this.type, count(this) group by this.type" ); You can find the size of a collection without initializing it: ( (Integer) session.createquery("select count(*) from...").iterate().next() ).intvalue(); Components Components can be used similarly to the simple value types that are used in HQL queries. They can appear in the select clause as follows: select p.name from Person p select p.name.first from Person p where the Person's name property is a component. Components can also be used in the where clause: 286

299 Row value constructor syntax from Person p where p.name = :name from Person p where p.name.first = :firstname Components can also be used in the order by clause: from Person p order by p.name from Person p order by p.name.first Another common use of components is in row value constructors Row value constructor syntax HQL supports the use of ANSI SQL row value constructor syntax, sometimes referred to AS tuple syntax, even though the underlying database may not support that notion. Here, we are generally referring to multi-valued comparisons, typically associated with components. Consider an entity Person which defines a name component: from Person p where p.name.first='john' and p.name.last='jingleheimer-schmidt' That is valid syntax although it is a little verbose. You can make this more concise by using row value constructor syntax: from Person p where p.name=('john', 'Jingleheimer-Schmidt') It can also be useful to specify this in the select clause: select p.name from Person p Using row value constructor syntax can also be beneficial when using subqueries that need to compare against multiple values: from Cat as cat where not ( cat.name, cat.color ) in ( select cat.name, cat.color from DomesticCat cat 287

300 Chapter 16. HQL: The Hibernat... ) One thing to consider when deciding if you want to use this syntax, is that the query will be dependent upon the ordering of the component sub-properties in the metadata. 288

301 Chapter 17. Criteria Queries Hibernate features an intuitive, extensible criteria query API Creating a Criteria instance The interface org.hibernate.criteria represents a query against a particular persistent class. The Session is a factory for Criteria instances. Criteria crit = sess.createcriteria(cat.class); crit.setmaxresults(50); List cats = crit.list(); Narrowing the result set An individual query criterion is an instance of the interface org.hibernate.criterion.criterion. The class org.hibernate.criterion.restrictions defines factory methods for obtaining certain built-in Criterion types. List cats = sess.createcriteria(cat.class).add( Restrictions.like("name", "Fritz%") ).add( Restrictions.between("weight", minweight, maxweight) ).list(); Restrictions can be grouped logically. List cats = sess.createcriteria(cat.class).add( Restrictions.like("name", "Fritz%") ).add( Restrictions.or( Restrictions.eq( "age", new Integer(0) ), Restrictions.isNull("age") ) ).list(); List cats = sess.createcriteria(cat.class).add( Restrictions.in( "name", new String[] { "Fritz", "Izi", "Pk" ) ).add( Restrictions.disjunction().add( Restrictions.isNull("age") ).add( Restrictions.eq("age", new Integer(0) ) ).add( Restrictions.eq("age", new Integer(1) ) ).add( Restrictions.eq("age", new Integer(2) ) ) ) ).list(); 289

302 Chapter 17. Criteria Queries There are a range of built-in criterion types (Restrictions subclasses). One of the most useful allows you to specify SQL directly. List cats = sess.createcriteria(cat.class).add( Restrictions.sqlRestriction("lower({alias.name) like lower(?)", "Fritz %", Hibernate.STRING) ).list(); The {alias placeholder with be replaced by the row alias of the queried entity. You can also obtain a criterion from a Property instance. You can create a Property by calling Property.forName(): Property age = Property.forName("age"); List cats = sess.createcriteria(cat.class).add( Restrictions.disjunction().add( age.isnull() ).add( age.eq( new Integer(0) ) ).add( age.eq( new Integer(1) ) ).add( age.eq( new Integer(2) ) ) ) ).add( Property.forName("name").in( new String[] { "Fritz", "Izi", "Pk" ) ).list(); Ordering the results You can order the results using org.hibernate.criterion.order. List cats = sess.createcriteria(cat.class).add( Restrictions.like("name", "F%").addOrder( Order.asc("name") ).addorder( Order.desc("age") ).setmaxresults(50).list(); List cats = sess.createcriteria(cat.class).add( Property.forName("name").like("F%") ).addorder( Property.forName("name").asc() ).addorder( Property.forName("age").desc() ).setmaxresults(50).list(); 290

303 Associations Associations By navigating associations using createcriteria() you can specify constraints upon related entities: List cats = sess.createcriteria(cat.class).add( Restrictions.like("name", "F%") ).createcriteria("kittens").add( Restrictions.like("name", "F%") ).list(); The second createcriteria() returns a new instance of Criteria that refers to the elements of the kittens collection. There is also an alternate form that is useful in certain circumstances: List cats = sess.createcriteria(cat.class).createalias("kittens", "kt").createalias("mate", "mt").add( Restrictions.eqProperty("kt.name", "mt.name") ).list(); (createalias() does not create a new instance of Criteria.) The kittens collections held by the Cat instances returned by the previous two queries are not pre-filtered by the criteria. If you want to retrieve just the kittens that match the criteria, you must use a ResultTransformer. List cats = sess.createcriteria(cat.class).createcriteria("kittens", "kt").add( Restrictions.eq("name", "F%") ).setresulttransformer(criteria.alias_to_entity_map).list(); Iterator iter = cats.iterator(); while ( iter.hasnext() ) { Map map = (Map) iter.next(); Cat cat = (Cat) map.get(criteria.root_alias); Cat kitten = (Cat) map.get("kt"); Additionally you may manipulate the result set using a left outer join: List cats = session.createcriteria( Cat.class ).createalias("mate", "mt", Criteria.LEFT_JOIN, Restrictions.like("mt.name", "good%") ).addorder(order.asc("mt.age")) 291

304 Chapter 17. Criteria Queries.list(); This will return all of the Cats with a mate whose name starts with "good" ordered by their mate's age, and all cats who do not have a mate. This is useful when there is a need to order or limit in the database prior to returning complex/large result sets, and removes many instances where multiple queries would have to be performed and the results unioned by java in memory. Without this feature, first all of the cats without a mate would need to be loaded in one query. A second query would need to retreive the cats with mates who's name started with "good" sorted by the mates age. Thirdly, in memory; the lists would need to be joined manually Dynamic association fetching You can specify association fetching semantics at runtime using setfetchmode(). List cats = sess.createcriteria(cat.class).add( Restrictions.like("name", "Fritz%") ).setfetchmode("mate", FetchMode.EAGER).setFetchMode("kittens", FetchMode.EAGER).list(); This query will fetch both mate and kittens by outer join. See Section 21.1, Fetching strategies for more information Example queries The class org.hibernate.criterion.example allows you to construct a query criterion from a given instance. Cat cat = new Cat(); cat.setsex('f'); cat.setcolor(color.black); List results = session.createcriteria(cat.class).add( Example.create(cat) ).list(); Version properties, identifiers and associations are ignored. By default, null valued properties are excluded. You can adjust how the Example is applied. Example example = Example.create(cat) 292

305 Projections, aggregation and grouping.excludezeroes() //exclude zero valued properties.excludeproperty("color") //exclude the property named "color".ignorecase() //perform case insensitive string comparisons.enablelike(); //use like for string comparisons List results = session.createcriteria(cat.class).add(example).list(); You can even use examples to place criteria upon associated objects. List results = session.createcriteria(cat.class).add( Example.create(cat) ).createcriteria("mate").add( Example.create( cat.getmate() ) ).list(); Projections, aggregation and grouping The class org.hibernate.criterion.projections is a factory for Projection instances. You can apply a projection to a query by calling setprojection(). List results = session.createcriteria(cat.class).setprojection( Projections.rowCount() ).add( Restrictions.eq("color", Color.BLACK) ).list(); List results = session.createcriteria(cat.class).setprojection( Projections.projectionList().add( Projections.rowCount() ).add( Projections.avg("weight") ).add( Projections.max("weight") ).add( Projections.groupProperty("color") ) ).list(); There is no explicit "group by" necessary in a criteria query. Certain projection types are defined to be grouping projections, which also appear in the SQL group by clause. An alias can be assigned to a projection so that the projected value can be referred to in restrictions or orderings. Here are two different ways to do this: List results = session.createcriteria(cat.class).setprojection( Projections.alias( Projections.groupProperty("color"), "colr" ) ).addorder( Order.asc("colr") ).list(); 293

306 Chapter 17. Criteria Queries List results = session.createcriteria(cat.class).setprojection( Projections.groupProperty("color").as("colr") ).addorder( Order.asc("colr") ).list(); The alias() and as() methods simply wrap a projection instance in another, aliased, instance of Projection. As a shortcut, you can assign an alias when you add the projection to a projection list: List results = session.createcriteria(cat.class).setprojection( Projections.projectionList().add( Projections.rowCount(), "catcountbycolor" ).add( Projections.avg("weight"), "avgweight" ).add( Projections.max("weight"), "maxweight" ).add( Projections.groupProperty("color"), "color" ) ).addorder( Order.desc("catCountByColor") ).addorder( Order.desc("avgWeight") ).list(); List results = session.createcriteria(domestic.class, "cat").createalias("kittens", "kit").setprojection( Projections.projectionList().add( Projections.property("cat.name"), "catname" ).add( Projections.property("kit.name"), "kitname" ) ).addorder( Order.asc("catName") ).addorder( Order.asc("kitName") ).list(); You can also use Property.forName() to express projections: List results = session.createcriteria(cat.class).setprojection( Property.forName("name") ).add( Property.forName("color").eq(Color.BLACK) ).list(); List results = session.createcriteria(cat.class).setprojection( Projections.projectionList().add( Projections.rowCount().as("catCountByColor") ).add( Property.forName("weight").avg().as("avgWeight") ).add( Property.forName("weight").max().as("maxWeight") ).add( Property.forName("color").group().as("color" ) ).addorder( Order.desc("catCountByColor") ).addorder( Order.desc("avgWeight") ).list(); 294

307 Detached queries and subqueries Detached queries and subqueries The DetachedCriteria class allows you to create a query outside the scope of a session and then execute it using an arbitrary Session. DetachedCriteria query = DetachedCriteria.forClass(Cat.class).add( Property.forName("sex").eq('F') ); Session session =...; Transaction txn = session.begintransaction(); List results = query.getexecutablecriteria(session).setmaxresults(100).list(); txn.commit(); session.close(); A DetachedCriteria can also be used to express a subquery. Criterion instances involving subqueries can be obtained via Subqueries or Property. DetachedCriteria avgweight = DetachedCriteria.forClass(Cat.class).setProjection( Property.forName("weight").avg() ); session.createcriteria(cat.class).add( Property.forName("weight").gt(avgWeight) ).list(); DetachedCriteria weights = DetachedCriteria.forClass(Cat.class).setProjection( Property.forName("weight") ); session.createcriteria(cat.class).add( Subqueries.geAll("weight", weights) ).list(); Correlated subqueries are also possible: DetachedCriteria avgweightforsex = DetachedCriteria.forClass(Cat.class, "cat2").setprojection( Property.forName("weight").avg() ).add( Property.forName("cat2.sex").eqProperty("cat.sex") ); session.createcriteria(cat.class, "cat").add( Property.forName("weight").gt(avgWeightForSex) ).list(); Queries by natural identifier For most queries, including criteria queries, the query cache is not efficient because query cache invalidation occurs too frequently. However, there is a special kind of query where you can optimize the cache invalidation algorithm: lookups by a constant natural key. In some applications, this kind of query occurs frequently. The criteria API provides special provision for this use case. 295

308 Chapter 17. Criteria Queries First, map the natural key of your entity using <natural-id> and enable use of the second-level cache. <class name="user"> <cache usage="read-write"/> <id name="id"> <generator class="increment"/> </id> <natural-id> <property name="name"/> <property name="org"/> </natural-id> <property name="password"/> </class> This functionality is not intended for use with entities with mutable natural keys. Once you have enabled the Hibernate query cache, the Restrictions.naturalId() allows you to make use of the more efficient cache algorithm. session.createcriteria(user.class).add( Restrictions.naturalId().set("name", "gavin").set("org", "hb") ).setcacheable(true).uniqueresult(); 296

309 Chapter 18. Native SQL You can also express queries in the native SQL dialect of your database. This is useful if you want to utilize database-specific features such as query hints or the CONNECT keyword in Oracle. It also provides a clean migration path from a direct SQL/JDBC based application to Hibernate. Hibernate3 allows you to specify handwritten SQL, including stored procedures, for all create, update, delete, and load operations Using a SQLQuery Execution of native SQL queries is controlled via the SQLQuery interface, which is obtained by calling Session.createSQLQuery(). The following sections describe how to use this API for querying Scalar queries The most basic SQL query is to get a list of scalars (values). sess.createsqlquery("select * FROM CATS").list(); sess.createsqlquery("select ID, NAME, BIRTHDATE FROM CATS").list(); These will return a List of Object arrays (Object[]) with scalar values for each column in the CATS table. Hibernate will use ResultSetMetadata to deduce the actual order and types of the returned scalar values. To avoid the overhead of using ResultSetMetadata, or simply to be more explicit in what is returned, one can use addscalar(): sess.createsqlquery("select * FROM CATS").addScalar("ID", Hibernate.LONG).addScalar("NAME", Hibernate.STRING).addScalar("BIRTHDATE", Hibernate.DATE) This query specified: the SQL query string the columns and types to return This will return Object arrays, but now it will not use ResultSetMetadata but will instead explicitly get the ID, NAME and BIRTHDATE column as respectively a Long, String and a Short from the underlying resultset. This also means that only these three columns will be returned, even though the query is using * and could return more than the three listed columns. 297

310 Chapter 18. Native SQL It is possible to leave out the type information for all or some of the scalars. sess.createsqlquery("select * FROM CATS").addScalar("ID", Hibernate.LONG).addScalar("NAME").addScalar("BIRTHDATE") This is essentially the same query as before, but now ResultSetMetaData is used to determine the type of NAME and BIRTHDATE, where as the type of ID is explicitly specified. How the java.sql.types returned from ResultSetMetaData is mapped to Hibernate types is controlled by the Dialect. If a specific type is not mapped, or does not result in the expected type, it is possible to customize it via calls to registerhibernatetype in the Dialect Entity queries The above queries were all about returning scalar values, basically returning the "raw" values from the resultset. The following shows how to get entity objects from a native sql query via addentity(). sess.createsqlquery("select * FROM CATS").addEntity(Cat.class); sess.createsqlquery("select ID, NAME, BIRTHDATE FROM CATS").addEntity(Cat.class); This query specified: the SQL query string the entity returned by the query Assuming that Cat is mapped as a class with the columns ID, NAME and BIRTHDATE the above queries will both return a List where each element is a Cat entity. If the entity is mapped with a many-to-one to another entity it is required to also return this when performing the native query, otherwise a database specific "column not found" error will occur. The additional columns will automatically be returned when using the * notation, but we prefer to be explicit as in the following example for a many-to-one to a Dog: sess.createsqlquery("select ID, NAME, BIRTHDATE, DOG_ID FROM CATS").addEntity(Cat.class); This will allow cat.getdog() to function properly Handling associations and collections It is possible to eagerly join in the Dog to avoid the possible extra roundtrip for initializing the proxy. This is done via the addjoin() method, which allows you to join in an association or collection. 298

311 Returning multiple entities sess.createsqlquery("select c.id, NAME, BIRTHDATE, DOG_ID, D_ID, D_NAME FROM CATS c, DOGS d WHERE c.dog_id = d.d_id").addentity("cat", Cat.class).addJoin("cat.dog"); In this example, the returned Cat's will have their dog property fully initialized without any extra roundtrip to the database. Notice that you added an alias name ("cat") to be able to specify the target property path of the join. It is possible to do the same eager joining for collections, e.g. if the Cat had a one-to-many to Dog instead. sess.createsqlquery("select ID, NAME, BIRTHDATE, D_ID, D_NAME, CAT_ID FROM CATS c, DOGS d WHERE c.id = d.cat_id").addentity("cat", Cat.class).addJoin("cat.dogs"); At this stage you are reaching the limits of what is possible with native queries, without starting to enhance the sql queries to make them usable in Hibernate. Problems can arise when returning multiple entities of the same type or when the default alias/column names are not enough Returning multiple entities Until now, the result set column names are assumed to be the same as the column names specified in the mapping document. This can be problematic for SQL queries that join multiple tables, since the same column names can appear in more than one table. Column alias injection is needed in the following query (which most likely will fail): sess.createsqlquery("select c.*, m.* FROM CATS c, CATS m WHERE c.mother_id = c.id").addentity("cat", Cat.class).addEntity("mother", Cat.class) The query was intended to return two Cat instances per row: a cat and its mother. The query will, however, fail because there is a conflict of names; the instances are mapped to the same column names. Also, on some databases the returned column aliases will most likely be on the form "c.id", "c.name", etc. which are not equal to the columns specified in the mappings ("ID" and "NAME"). The following form is not vulnerable to column name duplication: sess.createsqlquery("select {cat.*, {mother.* FROM CATS c, CATS m WHERE c.mother_id = c.id").addentity("cat", Cat.class).addEntity("mother", Cat.class) This query specified: 299

312 Chapter 18. Native SQL the SQL query string, with placeholders for Hibernate to inject column aliases the entities returned by the query The {cat.* and {mother.* notation used above is a shorthand for "all properties". Alternatively, you can list the columns explicitly, but even in this case Hibernate injects the SQL column aliases for each property. The placeholder for a column alias is just the property name qualified by the table alias. In the following example, you retrieve Cats and their mothers from a different table (cat_log) to the one declared in the mapping metadata. You can even use the property aliases in the where clause. String sql = "SELECT ID as {c.id, NAME as {c.name, " + "BIRTHDATE as {c.birthdate, MOTHER_ID as {c.mother, {mother.* " + "FROM CAT_LOG c, CAT_LOG m WHERE {c.mother = c.id"; List loggedcats = sess.createsqlquery(sql).addentity("cat", Cat.class).addEntity("mother", Cat.class).list() Alias and property references In most cases the above alias injection is needed. For queries relating to more complex mappings, like composite properties, inheritance discriminators, collections etc., you can use specific aliases that allow Hibernate to inject the proper aliases. The following table shows the different ways you can use the alias injection. Please note that the alias names in the result are simply examples; each alias will have a unique and probably different name when used. Table Alias injection names Description Syntax Example A simple property {[aliasname]. [propertyname] A_NAME as {item.name A composite {[aliasname]. CURRENCY as {item.amount.currency, VALUE property [componentname]. as {item.amount.value [propertyname] Discriminator of an entity {[aliasname].class DISC as {item.class All properties of an entity {[aliasname].* {item.* A collection key {[aliasname].key ORGID as {coll.key The id of an collection {[aliasname].id EMPID as {coll.id 300

313 Returning non-managed entities Description Syntax Example The element of an collection property of the element in the collection All properties of the element in the collection {[aliasname].element XID as {coll.element {[aliasname].element. NAME as {coll.element.name [propertyname] {[aliasname].element.* {coll.element.* All properties of the collection {[aliasname].* {coll.* Returning non-managed entities It is possible to apply a ResultTransformer to native SQL queries, allowing it to return nonmanaged entities. sess.createsqlquery("select NAME, BIRTHDATE FROM CATS").setResultTransformer(Transformers.aliasToBean(CatDTO.class)) This query specified: the SQL query string a result transformer The above query will return a list of CatDTO which has been instantiated and injected the values of NAME and BIRTHNAME into its corresponding properties or fields Handling inheritance Native SQL queries which query for entities that are mapped as part of an inheritance must include all properties for the baseclass and all its subclasses Parameters Native SQL queries support positional as well as named parameters: Query query = sess.createsqlquery("select * FROM CATS WHERE NAME like?").addentity(cat.class); List puslist = query.setstring(0, "Pus%").list(); query = sess.createsqlquery("select * FROM CATS WHERE NAME like :name").addentity(cat.class); List puslist = query.setstring("name", "Pus%").list(); 301

314 Chapter 18. Native SQL Named SQL queries Named SQL queries can also be defined in the mapping document and called in exactly the same way as a named HQL query (see Section , Externalizing named queries ). In this case, you do not need to call addentity(). Example Named sql query using the <sql-query> maping element <sql-query name="persons"> <return alias="person" class="eg.person"/> SELECT person.name AS {person.name, person.age AS {person.age, person.sex AS {person.sex FROM PERSON person WHERE person.name LIKE :namepattern </sql-query> Example Execution of a named query List people = sess.getnamedquery("persons").setstring("namepattern", namepattern).setmaxresults(50).list(); The <return-join> element is use to join associations and the <load-collection> element is used to define queries which initialize collections, Example Named sql query with association <sql-query name="personswith"> <return alias="person" class="eg.person"/> <return-join alias="address" property="person.mailingaddress"/> SELECT person.name AS {person.name, person.age AS {person.age, person.sex AS {person.sex, address.street AS {address.street, address.city AS {address.city, address.state AS {address.state, address.zip AS {address.zip FROM PERSON person JOIN ADDRESS address ON person.id = address.person_id AND address.type='mailing' WHERE person.name LIKE :namepattern </sql-query> A named SQL query may return a scalar value. You must declare the column alias and Hibernate type using the <return-scalar> element: 302

315 Named SQL queries Example Named query returning a scalar <sql-query name="mysqlquery"> <return-scalar column="name" type="string"/> <return-scalar column="age" type="long"/> SELECT p.name AS name, p.age AS age, FROM PERSON p WHERE p.name LIKE 'Hiber%' </sql-query> You can externalize the resultset mapping information in a <resultset> element which will allow you to either reuse them across several named queries or through the setresultsetmapping() API. Example <resultset> mapping used to externalize mapping information <resultset name="personaddress"> <return alias="person" class="eg.person"/> <return-join alias="address" property="person.mailingaddress"/> </resultset> <sql-query name="personswith" resultset-ref="personaddress"> SELECT person.name AS {person.name, person.age AS {person.age, person.sex AS {person.sex, address.street AS {address.street, address.city AS {address.city, address.state AS {address.state, address.zip AS {address.zip FROM PERSON person JOIN ADDRESS address ON person.id = address.person_id AND address.type='mailing' WHERE person.name LIKE :namepattern </sql-query> You can, alternatively, use the resultset mapping information in your hbm files directly in java code. Example Programmatically specifying the result mapping information List cats = sess.createsqlquery( "select {cat.*, {kitten.* from cats cat, cats kitten where kitten.mother = cat.id" ).setresultsetmapping("catandkitten").list(); So far we have only looked at externalizing SQL queries using Hibernate mapping files. The same concept is also available with anntations and is called named native 303

316 Chapter 18. Native SQL queries. You can in conjunction Like can be defined at class level, but their scope is global to the application. Lets look at a view examples. Example 18.7, Named SQL query together shows how a resultsetmapping parameter is defined It represents the name of a The resultset mapping declares the entities retrieved by this native query. Each field of the entity is bound to an SQL alias (or column name). All fields of the entity including the ones of subclasses and the foreign key columns of related entities have to be present in the SQL query. Field definitions are optional provided that they map to the same column name as the one declared on the class property. In the example 2 entities, Night and Area, are returned and each property is declared and associated to a column name, actually the column name retrieved by the query. In Example 18.8, Implicit result set mapping the result set mapping is implicit. We only describe the entity class of the result set mapping. The property / column mappings is done using the entity mapping values. In this case the model property is bound to the model_txt column. Finally, if the association to a related entity involve a composite primary key, element should be used for each foreign key column. name is composed of the property name for the relationship, followed by a dot ("."), followed by the name or the field or property of the primary key. This can be seen in Example 18.9, Using dot notation for specifying associations. Example Named SQL query query="select night.id nid, night.night_duration, " + " night.night_date, area.id aid, night.area_id, area.name " + "from Night night, Area area where night.area_id = area.id", fields = column="area_id"), discriminatorcolumn="disc" fields = column="name") ) ) 304

317 Named SQL queries Example Implicit result @NamedNativeQuery(name="implicitSample", query="select * from SpaceShip", resultsetmapping="implicit") public class SpaceShip { private String name; private String model; private double public String getname() { return name; public void setname(string name) { this.name = public String getmodel() { return model; public void setmodel(string model) { this.model = model; public double getspeed() { return speed; public void setspeed(double speed) { this.speed = speed; Example Using dot notation for entities=@entityresult(entityclass=spaceship.class, fields = column = column = column = column = column = column = column = "width") 305

318 Chapter 18. Native SQL ), columns = = = "volume") query="select name, model, speed, lname as lastn, fname as firstn, length, width, length * width as surface from SpaceShip", resultsetmapping="compositekey") ) public class SpaceShip { private String name; private String model; private double speed; private Captain captain; private Dimensions public String getname() { return name; public void setname(string name) { this.name = referencedcolumnname = referencedcolumnname = "lastname") ) public Captain getcaptain() { return captain; public void setcaptain(captain captain) { this.captain = captain; public String getmodel() { return model; public void setmodel(string model) { this.model = model; public double getspeed() { return speed; public void setspeed(double speed) { this.speed = speed; public Dimensions getdimensions() { return dimensions; public void setdimensions(dimensions dimensions) { 306

319 Named SQL queries this.dimensions public class Captain implements Serializable { private String firstname; private String public String getfirstname() { return firstname; public void setfirstname(string firstname) { this.firstname = public String getlastname() { return lastname; public void setlastname(string lastname) { this.lastname = lastname; Tip If you retrieve a single entity using the default mapping, you can specify the resultclass attribute instead of query="select * from SpaceShip", resultclass=spaceship.class) public class SpaceShip { In some of your native queries, you'll have to return scalar values, for example when building report queries. You can map them in You actually can even mix, entities and scalar returns in the same native query (this is probably not that common though). Example Scalar query="select length*width as dimension from SpaceShip", resultsetmapping="scalar") 307

320 Chapter 18. Native SQL An other query hint specific to native queries has been introduced: org.hibernate.callable which can be true or false depending on whether the query is a stored procedure or not Using return-property to explicitly specify column/alias names You can explicitly tell Hibernate what column aliases to use with <return-property>, instead of using the {-syntax to let Hibernate inject its own aliases.for example: <sql-query name="mysqlquery"> <return alias="person" class="eg.person"> <return-property name="name" column="myname"/> <return-property name="age" column="myage"/> <return-property name="sex" column="mysex"/> </return> SELECT person.name AS myname, person.age AS myage, person.sex AS mysex, FROM PERSON person WHERE person.name LIKE :name </sql-query> <return-property> also works with multiple columns. This solves a limitation with the {-syntax which cannot allow fine grained control of multi-column properties. <sql-query name="organizationcurrentemployments"> <return alias="emp" class="employment"> <return-property name="salary"> <return-column name="value"/> <return-column name="currency"/> </return-property> <return-property name="enddate" column="myenddate"/> </return> SELECT EMPLOYEE AS {emp.employee, EMPLOYER AS {emp.employer, STARTDATE AS {emp.startdate, ENDDATE AS {emp.enddate, REGIONCODE as {emp.regioncode, EID AS {emp.id, VALUE, CURRENCY FROM EMPLOYMENT WHERE EMPLOYER = :id AND ENDDATE IS NULL ORDER BY STARTDATE ASC </sql-query> In this example <return-property> was used in combination with the {-syntax for injection. This allows users to choose how they want to refer column and properties. If your mapping has a discriminator you must use <return-discriminator> to specify the discriminator column. 308

321 Using stored procedures for querying Using stored procedures for querying Hibernate3 provides support for queries via stored procedures and functions. Most of the following documentation is equivalent for both. The stored procedure/function must return a resultset as the first out-parameter to be able to work with Hibernate. An example of such a stored function in Oracle 9 and higher is as follows: CREATE OR REPLACE FUNCTION selectallemployments RETURN SYS_REFCURSOR AS st_cursor SYS_REFCURSOR; BEGIN OPEN st_cursor FOR SELECT EMPLOYEE, EMPLOYER, STARTDATE, ENDDATE, REGIONCODE, EID, VALUE, CURRENCY FROM EMPLOYMENT; RETURN st_cursor; END; To use this query in Hibernate you need to map it via a named query. <sql-query name="selectallemployees_sp" callable="true"> <return alias="emp" class="employment"> <return-property name="employee" column="employee"/> <return-property name="employer" column="employer"/> <return-property name="startdate" column="startdate"/> <return-property name="enddate" column="enddate"/> <return-property name="regioncode" column="regioncode"/> <return-property name="id" column="eid"/> <return-property name="salary"> <return-column name="value"/> <return-column name="currency"/> </return-property> </return> {? = call selectallemployments() </sql-query> Stored procedures currently only return scalars and entities. <return-join> and <loadcollection> are not supported Rules/limitations for using stored procedures You cannot use stored procedures with Hibernate unless you follow some procedure/function rules. If they do not follow those rules they are not usable with Hibernate. If you still want to use these procedures you have to execute them via session.connection(). The rules are different for each database, since database vendors have different stored procedure semantics/syntax. Stored procedure queries cannot be paged with setfirstresult()/setmaxresults(). 309

322 Chapter 18. Native SQL The recommended call form is standard SQL92: {? = call functionname(<parameters>) or {? = call procedurename(<parameters>. Native call syntax is not supported. For Oracle the following rules apply: A function must return a result set. The first parameter of a procedure must be an OUT that returns a result set. This is done by using a SYS_REFCURSOR type in Oracle 9 or 10. In Oracle you need to define a REF CURSOR type. See Oracle literature for further information. For Sybase or MS SQL server the following rules apply: The procedure must return a result set. Note that since these servers can return multiple result sets and update counts, Hibernate will iterate the results and take the first result that is a result set as its return value. Everything else will be discarded. If you can enable SET NOCOUNT ON in your procedure it will probably be more efficient, but this is not a requirement Custom SQL for create, update and delete Hibernate3 can use custom SQL for create, update, and delete operations. The SQL can be overridden at the statement level or inidividual column level. This section describes statement overrides. For columns, see Section 5.6, Column transformers: read and write expressions. Example 18.11, Custom CRUD via annotations shows how to define custom SQL operatons using annotations. Example Custom CRUD @SQLInsert( sql="insert INTO CHAOS(size, name, nickname, id) sql="update CHAOS SET size =?, name = upper(?), nickname =? WHERE id sql="delete CHAOS WHERE id sql="delete = query="select id, size, name, lower( nickname ) as nickname from CHAOS where id=?", resultclass = Chaos.class) public class Chaos private Long id; private Long size; private String name; private respectively override the INSERT, UPDATE, DELETE, and DELETE all statement. The same can be achieved using Hibernate mapping files and the <sql-insert>, <sql-update> and <sql-delete> nodes. This can be seen in Example 18.12, Custom CRUD XML. 310

323 Custom SQL for create, update and delete Example Custom CRUD XML <class name="person"> <id name="id"> <generator class="increment"/> </id> <property name="name" not-null="true"/> <sql-insert>insert INTO PERSON (NAME, ID) VALUES ( UPPER(?),? )</sql-insert> <sql-update>update PERSON SET NAME=UPPER(?) WHERE ID=?</sql-update> <sql-delete>delete FROM PERSON WHERE ID=?</sql-delete> </class> If you expect to call a store procedure, be sure to set the callable attribute to true. In annotations as well as in xml. To check that the execution happens correctly, Hibernate allows you to define one of those three strategies: none: no check is performed: the store procedure is expected to fail upon issues count: use of rowcount to check that the update is successful param: like COUNT but using an output parameter rather that the standard mechanism To define the result check style, use the check parameter which is again available in annoations as well as in xml. You can use the exact same set of annotations respectively xml nodes to override the collection related statements -see Example 18.13, Overriding SQL statements for collections using annotations. Example Overriding SQL statements for collections @SQLInsert( sql="update CASIMIR_PARTICULE SET chaos_fk =? where id sql="update CASIMIR_PARTICULE SET chaos_fk = null where id =?") private Set<CasimirParticle> particles = new HashSet<CasimirParticle>(); Tip The parameter order is important and is defined by the order Hibernate handles properties. You can see the expected order by enabling debug logging for the org.hibernate.persister.entity level. With this level enabled Hibernate will print out the static SQL that is used to create, update, delete etc. entities. (To 311

324 Chapter 18. Native SQL see the expected sequence, remember to not include your custom SQL through annotations or mapping files as that will override the Hibernate generated static sql) Overriding SQL statements for secondary tables is also possible and either (or all) attributes sqlinsert, sqlupdate, sqldelete: Example Overriding SQL statements for @SecondaryTable(name = "`Cat = = "Cat", comment = "My cat table" = "Cat2", foreignkey fetch = FetchMode.SELECT, sqlinsert=@sqlinsert(sql="insert into Cat2(storyPart2, id) values(upper(?),?)") ) ) public class Cat implements Serializable { The previous example also shows that you can give a comment to a given table (primary or secondary): This comment will be used for DDL generation. Tip The SQL is directly executed in your database, so you can use any dialect you like. This will, however, reduce the portability of your mapping if you use database specific SQL. Last but not least, stored procedures are in most cases required to return the number of rows inserted, updated and deleted. Hibernate always registers the first statement parameter as a numeric output parameter for the CUD operations: Example Stored procedures and their return value CREATE OR REPLACE FUNCTION updateperson (uid IN NUMBER, uname IN VARCHAR2) BEGIN RETURN NUMBER IS update PERSON set NAME = uname, where ID = uid; return SQL%ROWCOUNT; 312

325 Custom SQL for loading END updateperson; Custom SQL for loading You can also declare your own SQL (or HQL) queries for entity loading. As with inserts, updates, and deletes, this can be done at the individual column level as described in Section 5.6, Column transformers: read and write expressions or at the statement level. Here is an example of a statement level override: <sql-query name="person"> <return alias="pers" class="person" lock-mode="upgrade"/> SELECT NAME AS {pers.name, ID AS {pers.id FROM PERSON WHERE ID=? FOR UPDATE </sql-query> This is just a named query declaration, as discussed earlier. You can reference this named query in a class mapping: <class name="person"> <id name="id"> <generator class="increment"/> </id> <property name="name" not-null="true"/> <loader query-ref="person"/> </class> This even works with stored procedures. You can even define a query for collection loading: <set name="employments" inverse="true"> <key/> <one-to-many class="employment"/> <loader query-ref="employments"/> </set> <sql-query name="employments"> <load-collection alias="emp" role="person.employments"/> SELECT {emp.* FROM EMPLOYMENT emp WHERE EMPLOYER = :id ORDER BY STARTDATE ASC, EMPLOYEE ASC </sql-query> 313

326 Chapter 18. Native SQL You can also define an entity loader that loads a collection by join fetching: <sql-query name="person"> <return alias="pers" class="person"/> <return-join alias="emp" property="pers.employments"/> SELECT NAME AS {pers.*, {emp.* FROM PERSON pers LEFT OUTER JOIN EMPLOYMENT emp ON pers.id = emp.person_id WHERE ID=? </sql-query> The annotation equivalent <loader> is annotation as seen in Example 18.11, Custom CRUD via annotations. 314

327 Chapter 19. Filtering data Hibernate3 provides an innovative new approach to handling data with "visibility" rules. A Hibernate filter is a global, named, parameterized filter that can be enabled or disabled for a particular Hibernate session Hibernate filters Hibernate3 has the ability to pre-define filter criteria and attach those filters at both a class level and a collection level. A filter criteria allows you to define a restriction clause similar to the existing "where" attribute available on the class and various collection elements. These filter conditions, however, can be parameterized. The application can then decide at runtime whether certain filters should be enabled and what their parameter values should be. Filters can be used like database views, but they are parameterized inside the application. Using annotatons filters are defined A filter definition has a name() and an array of parameters(). A parameter will allow you to adjust the behavior of the filter at runtime. Each parameter is defined by which has a name and a type. You can also define a defaultcondition() parameter for a to set the default condition to use when none are defined in can be defined at the class or package level. We now need to define the SQL filter clause applied to either the entity load or the collection is used and placed either on the entity or the collection element. The connection is a matching name. Example @FilterDef(name="minLength", parameters=@paramdef( name="minlength", type="integer" ) condition=":minlength <= length and :maxlength >= condition=":minlength <= length") ) public class Forest {... When the collection use an association table as a relational representation, you might want to apply the filter condition to the association table itself or to the target entity table. To apply the constraint on the target entity, use the annotation. However, if you want to target the association table, use annotation. Example for filterting on the association 315

328 Chapter 19. Filtering //filter on the target entity condition=":minlength <= length and :maxlength >= length") //filter on the association condition=":userlevel >= requredlevel") public Set<Forest> getforests() {... Using Hibernate mapping files for defining filters the situtation is very similar. The filters must first be defined and then attached to the appropriate mapping elements. To define a filter, use the <filter-def/> element within a <hibernate-mapping/> element: Example Defining a filter definition via <filter-def> <filter-def name="myfilter"> <filter-param name="myfilterparam" type="string"/> </filter-def> This filter can then be attached to a class or collection (or, to both or multiples of each at the same time): Example Attaching a filter to a class or collection using <filter> <class name="myclass"...>... <filter name="myfilter" condition=":myfilterparam = MY_FILTERED_COLUMN"/> <set...> <filter name="myfilter" condition=":myfilterparam = MY_FILTERED_COLUMN"/> </set> </class> The methods on Session are: enablefilter(string filtername), getenabledfilter(string filtername), and disablefilter(string filtername). By default, filters are not enabled for a given session. Filters must be enabled through use of the Session.enableFilter() method, which returns an instance of the Filter interface. If you used the simple filter defined above, it would look like this: session.enablefilter("myfilter").setparameter("myfilterparam", "some-value"); Methods on the org.hibernate.filter interface do allow the method-chaining common to much of Hibernate. The following is a full example, using temporal data with an effective record date pattern: <filter-def name="effectivedate"> 316

329 Hibernate filters <filter-param name="asofdate" type="date"/> </filter-def> <class name="employee"...>... <many-to-one name="department" column="dept_id" class="department"/> <property name="effectivestartdate" type="date" column="eff_start_dt"/> <property name="effectiveenddate" type="date" column="eff_end_dt"/>... <!-- Note that this assumes non-terminal records have an eff_end_dt set to a max db date for simplicity-sake --> <filter name="effectivedate" condition=":asofdate BETWEEN eff_start_dt and eff_end_dt"/> </class> <class name="department"...>... <set name="employees" lazy="true"> <key column="dept_id"/> <one-to-many class="employee"/> <filter name="effectivedate" condition=":asofdate BETWEEN eff_start_dt and eff_end_dt"/> </set> </class> In order to ensure that you are provided with currently effective records, enable the filter on the session prior to retrieving employee data: Session session =...; session.enablefilter("effectivedate").setparameter("asofdate", new Date()); List results = session.createquery("from Employee as e where e.salary > :targetsalary").setlong("targetsalary", new Long( )).list(); Even though a salary constraint was mentioned explicitly on the results in the above HQL, because of the enabled filter, the query will return only currently active employees who have a salary greater than one million dollars. If you want to use filters with outer joining, either through HQL or load fetching, be careful of the direction of the condition expression. It is safest to set this up for left outer joining. Place the parameter first followed by the column name(s) after the operator. After being defined, a filter might be attached to multiple entities and/or collections each with its own condition. This can be problematic when the conditions are the same each time. Using <filter-def/> allows you to definine a default condition, either as an attribute or CDATA: <filter-def name="myfilter" condition="abc > xyz">...</filter-def> <filter-def name="myotherfilter">abc=xyz</filter-def> 317

330 Chapter 19. Filtering data This default condition will be used whenever the filter is attached to something without specifying a condition. This means you can give a specific condition as part of the attachment of the filter that overrides the default condition in that particular case. 318

331 Chapter 20. XML Mapping XML Mapping is an experimental feature in Hibernate 3.0 and is currently under active development Working with XML data Hibernate allows you to work with persistent XML data in much the same way you work with persistent POJOs. A parsed XML tree can be thought of as another way of representing the relational data at the object level, instead of POJOs. Hibernate supports dom4j as API for manipulating XML trees. You can write queries that retrieve dom4j trees from the database and have any modification you make to the tree automatically synchronized to the database. You can even take an XML document, parse it using dom4j, and write it to the database with any of Hibernate's basic operations: persist(), saveorupdate(), merge(), delete(), replicate() (merging is not yet supported). This feature has many applications including data import/export, externalization of entity data via JMS or SOAP and XSLT-based reporting. A single mapping can be used to simultaneously map properties of a class and nodes of an XML document to the database, or, if there is no class to map, it can be used to map just the XML Specifying XML and class mapping together Here is an example of mapping a POJO and XML simultaneously: <class name="account" table="accounts" node="account"> <id name="accountid" column="account_id" node="@id"/> <many-to-one name="customer" column="customer_id" node="customer/@id" embed-xml="false"/> <property name="balance" column="balance" node="balance"/>... </class> 319

332 Chapter 20. XML Mapping Specifying only an XML mapping Here is an example where there is no POJO class: <class entity-name="account" table="accounts" node="account"> <id name="id" column="account_id" type="string"/> <many-to-one name="customerid" column="customer_id" embed-xml="false" entity-name="customer"/> <property name="balance" column="balance" node="balance" type="big_decimal"/>... </class> This mapping allows you to access the data as a dom4j tree, or as a graph of property name/ value pairs or java Maps. The property names are purely logical constructs that can be referred to in HQL queries XML mapping metadata A range of Hibernate mapping elements accept the node attribute. This lets you specify the name of an XML attribute or element that holds the property or entity data. The format of the node attribute must be one of the following: "element-name": map to the named XML element "@attribute-name": map to the named XML attribute ".": map to the parent element "element-name/@attribute-name": map to the named attribute of the named element For collections and single valued associations, there is an additional embed-xml attribute. If embed-xml="true", the default, the XML tree for the associated entity (or collection of value type) will be embedded directly in the XML tree for the entity that owns the association. Otherwise, if embed-xml="false", then only the referenced identifier value will appear in the XML for single point associations and collections will not appear at all. 320

333 XML mapping metadata Do not leave embed-xml="true" for too many associations, since XML does not deal well with circularity. <class name="customer" table="customer" node="customer"> <id name="id" column="cust_id" <map name="accounts" node="." embed-xml="true"> <key column="customer_id" not-null="true"/> <map-key column="short_desc" type="string"/> <one-to-many entity-name="account" embed-xml="false" node="account"/> </map> <component name="name" node="name"> <property name="firstname" node="first-name"/> <property name="initial" node="initial"/> <property name="lastname" node="last-name"/> </component>... </class> In this case, the collection of account ids is embedded, but not the actual account data. The following HQL query: from Customer c left join fetch c.accounts where c.lastname like :lastname would return datasets such as this: <customer id=" "> <account short-desc="savings"> </account> <account short-desc="credit Card"> </account> <name> <first-name>gavin</first-name> <initial>a</initial> <last-name>king</last-name> 321

334 Chapter 20. XML Mapping </name>... </customer> If you set embed-xml="true" on the <one-to-many> mapping, the data might look more like this: <customer id=" "> <account id=" " short-desc="savings"> <customer id=" "/> <balance>100.29</balance> </account> <account id=" " short-desc="credit Card"> <customer id=" "/> <balance> </balance> </account> <name> <first-name>gavin</first-name> <initial>a</initial> <last-name>king</last-name> </name>... </customer> Manipulating XML data You can also re-read and update XML documents in the application. You can do this by obtaining a dom4j session: Document doc =...; Session session = factory.opensession(); Session dom4jsession = session.getsession(entitymode.dom4j); Transaction tx = session.begintransaction(); List results = dom4jsession.createquery("from Customer c left join fetch c.accounts where c.lastname like :lastname").list(); for ( int i=0; i<results.size(); i++ ) { //add the customer data to the XML document Element customer = (Element) results.get(i); doc.add(customer); tx.commit(); session.close(); Session session = factory.opensession(); Session dom4jsession = session.getsession(entitymode.dom4j); Transaction tx = session.begintransaction(); 322

335 Manipulating XML data Element cust = (Element) dom4jsession.get("customer", customerid); for ( int i=0; i<results.size(); i++ ) { Element customer = (Element) results.get(i); //change the customer name in the XML and database Element name = customer.element("name"); name.element("first-name").settext(firstname); name.element("initial").settext(initial); name.element("last-name").settext(lastname); tx.commit(); session.close(); When implementing XML-based data import/export, it is useful to combine this feature with Hibernate's replicate() operation. 323

336 324

337 Chapter 21. Improving performance Fetching strategies Hibernate uses a fetching strategy to retrieve associated objects if the application needs to navigate the association. Fetch strategies can be declared in the O/R mapping metadata, or overridden by a particular HQL or Criteria query. Hibernate3 defines the following fetching strategies: Join fetching: Hibernate retrieves the associated instance or collection in the same SELECT, using an OUTER JOIN. Select fetching: a second SELECT is used to retrieve the associated entity or collection. Unless you explicitly disable lazy fetching by specifying lazy="false", this second select will only be executed when you access the association. Subselect fetching: a second SELECT is used to retrieve the associated collections for all entities retrieved in a previous query or fetch. Unless you explicitly disable lazy fetching by specifying lazy="false", this second select will only be executed when you access the association. Batch fetching: an optimization strategy for select fetching. Hibernate retrieves a batch of entity instances or collections in a single SELECT by specifying a list of primary or foreign keys. Hibernate also distinguishes between: Immediate fetching: an association, collection or attribute is fetched immediately when the owner is loaded. Lazy collection fetching: a collection is fetched when the application invokes an operation upon that collection. This is the default for collections. "Extra-lazy" collection fetching: individual elements of the collection are accessed from the database as needed. Hibernate tries not to fetch the whole collection into memory unless absolutely needed. It is suitable for large collections. Proxy fetching: a single-valued association is fetched when a method other than the identifier getter is invoked upon the associated object. "No-proxy" fetching: a single-valued association is fetched when the instance variable is accessed. Compared to proxy fetching, this approach is less lazy; the association is fetched even when only the identifier is accessed. It is also more transparent, since no proxy is visible to the application. This approach requires buildtime bytecode instrumentation and is rarely necessary. Lazy attribute fetching: an attribute or single valued association is fetched when the instance variable is accessed. This approach requires buildtime bytecode instrumentation and is rarely necessary. 325

338 Chapter 21. Improving performance We have two orthogonal notions here: when is the association fetched and how is it fetched. It is important that you do not confuse them. We use fetch to tune performance. We can use lazy to define a contract for what data is always available in any detached instance of a particular class Working with lazy associations By default, Hibernate3 uses lazy select fetching for collections and lazy proxy fetching for single-valued associations. These defaults make sense for most associations in the majority of applications. If you set hibernate.default_batch_fetch_size, Hibernate will use the batch fetch optimization for lazy fetching. This optimization can also be enabled at a more granular level. Please be aware that access to a lazy association outside of the context of an open Hibernate session will result in an exception. For example: s = sessions.opensession(); Transaction tx = s.begintransaction(); User u = (User) s.createquery("from User u where u.name=:username").setstring("username", username).uniqueresult(); Map permissions = u.getpermissions(); tx.commit(); s.close(); Integer accesslevel = (Integer) permissions.get("accounts"); // Error! Since the permissions collection was not initialized when the Session was closed, the collection will not be able to load its state. Hibernate does not support lazy initialization for detached objects. This can be fixed by moving the code that reads from the collection to just before the transaction is committed. Alternatively, you can use a non-lazy collection or association, by specifying lazy="false" for the association mapping. However, it is intended that lazy initialization be used for almost all collections and associations. If you define too many non-lazy associations in your object model, Hibernate will fetch the entire database into memory in every transaction. On the other hand, you can use join fetching, which is non-lazy by nature, instead of select fetching in a particular transaction. We will now explain how to customize the fetching strategy. In Hibernate3, the mechanisms for choosing a fetch strategy are identical for single-valued associations and collections Tuning fetch strategies Select fetching (the default) is extremely vulnerable to N+1 selects problems, so we might want to enable join fetching in the mapping document: 326

339 Single-ended association proxies <set name="permissions" fetch="join"> <key column="userid"/> <one-to-many class="permission"/> </set <many-to-one name="mother" class="cat" fetch="join"/> The fetch strategy defined in the mapping document affects: retrieval via get() or load() retrieval that happens implicitly when an association is navigated Criteria queries HQL queries if subselect fetching is used Irrespective of the fetching strategy you use, the defined non-lazy graph is guaranteed to be loaded into memory. This might, however, result in several immediate selects being used to execute a particular HQL query. Usually, the mapping document is not used to customize fetching. Instead, we keep the default behavior, and override it for a particular transaction, using left join fetch in HQL. This tells Hibernate to fetch the association eagerly in the first select, using an outer join. In the Criteria query API, you would use setfetchmode(fetchmode.join). If you want to change the fetching strategy used by get() or load(), you can use a Criteria query. For example: User user = (User) session.createcriteria(user.class).setfetchmode("permissions", FetchMode.JOIN).add( Restrictions.idEq(userId) ).uniqueresult(); This is Hibernate's equivalent of what some ORM solutions call a "fetch plan". A completely different approach to problems with N+1 selects is to use the second-level cache Single-ended association proxies Lazy fetching for collections is implemented using Hibernate's own implementation of persistent collections. However, a different mechanism is needed for lazy behavior in single-ended associations. The target entity of the association must be proxied. Hibernate implements lazy initializing proxies for persistent objects using runtime bytecode enhancement which is accessed via the CGLIB library. 327

340 Chapter 21. Improving performance At startup, Hibernate3 generates proxies by default for all persistent classes and uses them to enable lazy fetching of many-to-one and one-to-one associations. The mapping file may declare an interface to use as the proxy interface for that class, with the proxy attribute. By default, Hibernate uses a subclass of the class. The proxied class must implement a default constructor with at least package visibility. This constructor is recommended for all persistent classes. There are potential problems to note when extending this approach to polymorphic classes.for example: <class name="cat" proxy="cat">... <subclass name="domesticcat">... </subclass> </class> 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!... Secondly, it is possible to break proxy ==: Cat cat = (Cat) session.load(cat.class, id); // instantiate a Cat proxy DomesticCat dc = (DomesticCat) session.load(domesticcat.class, id); // acquire new DomesticCat proxy! System.out.println(cat==dc); // false 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: cat.setweight(11.0); // hit the db to initialize the proxy System.out.println( dc.getweight() ); // 11.0 Third, you cannot use a CGLIB proxy for a final class or a class with any final methods. Finally, if your persistent object acquires any resources upon instantiation (e.g. in initializers or default constructor), then those resources will also be acquired by the proxy. The proxy class is an actual subclass of the persistent class. 328

341 Initializing collections and proxies These problems are all due to fundamental limitations in Java's single inheritance model. To avoid these problems your persistent classes must each implement an interface that declares its business methods. You should specify these interfaces in the mapping file where CatImpl implements the interface Cat and DomesticCatImpl implements the interface DomesticCat. For example: <class name="catimpl" proxy="cat">... <subclass name="domesticcatimpl" proxy="domesticcat">... </subclass> </class> Then proxies for instances of Cat and DomesticCat can be returned by load() or iterate(). Cat cat = (Cat) session.load(catimpl.class, catid); Iterator iter = session.createquery("from CatImpl as cat where cat.name='fritz'").iterate(); Cat fritz = (Cat) iter.next(); Note list() does not usually return proxies. Relationships are also lazily initialized. This means you must declare any properties to be of type Cat, not CatImpl. Certain operations do not require proxy initialization: equals(): if the persistent class does not override equals() hashcode(): if the persistent class does not override hashcode() The identifier getter method Hibernate will detect persistent classes that override equals() or hashcode(). By choosing lazy="no-proxy" instead of the default lazy="proxy", you can avoid problems associated with typecasting. However, buildtime bytecode instrumentation is required, and all operations will result in immediate proxy initialization Initializing collections and proxies A LazyInitializationException will be thrown by Hibernate if an uninitialized collection or proxy is accessed outside of the scope of the Session, i.e., when the entity owning the collection or having the reference to the proxy is in the detached state. 329

342 Chapter 21. Improving performance Sometimes a proxy or collection needs to be initialized before closing the Session. You can force initialization by calling cat.getsex() or cat.getkittens().size(), for example. However, this can be confusing to readers of the code and it is not convenient for generic code. The static methods Hibernate.initialize() and Hibernate.isInitialized(), provide the application with a convenient way of working with lazily 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 effect for the collection of kittens. Another option is to keep the Session open until all required collections and proxies have been loaded. In some application architectures, particularly where the code that accesses data using Hibernate, and the code that uses it are in different application layers or different physical processes, it can be a problem to ensure that the Session is open when a collection is initialized. There are two basic ways to deal with this issue: In a web-based application, a servlet filter can be used to close the Session only at the end of a user request, once the rendering of the view is complete (the Open Session in View pattern). Of course, this places heavy demands on the correctness of the exception handling of your application infrastructure. It is vitally important that the Session is closed and the transaction ended before returning to the user, even when an exception occurs during rendering of the view. See the Hibernate Wiki for examples of this "Open Session in View" pattern. In an application with a separate business tier, the business logic must "prepare" all collections that the web tier needs before returning. This means that the business tier should load all the data and return all the data already initialized to the presentation/web tier that is required for a particular use case. Usually, the application calls Hibernate.initialize() for each collection that will be needed in the web tier (this call must occur before the session is closed) or retrieves the collection eagerly using a Hibernate query with a FETCH clause or a FetchMode.JOIN in Criteria. This is usually easier if you adopt the Command pattern instead of a Session Facade. You can also attach a previously loaded object to a new Session with merge() or lock() before accessing uninitialized collections or other proxies. Hibernate does not, and certainly should not, do this automatically since it would introduce impromptu transaction semantics. Sometimes you do not want to initialize a large collection, but still need some information about it, like its size, for example, or a subset of the data. You can use a collection filter to get the size of a collection without initializing it: ( (Integer) s.createfilter( collection, "select count(*)" ).list().get(0) ).intvalue() The createfilter() method is also used to efficiently retrieve subsets of a collection without needing to initialize the whole collection: 330

343 Using batch fetching s.createfilter( lazycollection, "").setfirstresult(0).setmaxresults(10).list(); Using batch fetching Using batch fetching, Hibernate can load several uninitialized proxies if one proxy is accessed. Batch fetching is an optimization of the lazy select fetching strategy. There are two ways you can configure batch fetching: on the class level and the collection level. Batch fetching for classes/entities is easier to understand. Consider the following example: at runtime you have 25 Cat instances loaded in a Session, and each Cat has a reference to its owner, a Person. The Person class is mapped with a proxy, lazy="true". If you now iterate through all cats and call getowner() on each, Hibernate will, by default, execute 25 SELECT statements to retrieve the proxied owners. You can tune this behavior by specifying a batch-size in the mapping of Person: <class name="person" batch-size="10">...</class> Hibernate will now execute only three queries: the pattern is 10, 10, 5. You can also enable batch fetching of collections. For example, if each Person has a lazy collection of Cats, and 10 persons are currently loaded in the Session, iterating through all persons will generate 10 SELECTs, one for every call to getcats(). If you enable batch fetching for the cats collection in the mapping of Person, Hibernate can pre-fetch collections: <class name="person"> <set name="cats" batch-size="3">... </set> </class> With a batch-size of 3, Hibernate will load 3, 3, 3, 1 collections in four SELECTs. Again, the value of the attribute depends on the expected number of uninitialized collections in a particular Session. Batch fetching of collections is particularly useful if you have a nested tree of items, i.e. the typical bill-of-materials pattern. However, a nested set or a materialized path might be a better option for read-mostly trees Using subselect fetching If one lazy collection or single-valued proxy has to be fetched, Hibernate will load all of them, re-running the original query in a subselect. This works in the same way as batch-fetching but without the piecemeal loading. 331

344 Chapter 21. Improving performance Fetch profiles Another way to affect the fetching strategy for loading associated objects is through something called a fetch profile, which is a named configuration associated with the org.hibernate.sessionfactory but enabled, by name, on the org.hibernate.session. Once enabled on a org.hibernate.session, the fetch profile will be in affect for that org.hibernate.session until it is explicitly disabled. So what does that mean? Well lets explain that by way of an example which show the different available approaches to configure a fetch profile: Example Specifying a fetch @FetchProfile(name = "customer-with-orders", fetchoverrides = = Customer.class, association = "orders", mode = FetchMode.JOIN) ) public class private long id; private String name; private long private Set<Order> orders; // standard getter/setter... Example Specifying a fetch profile using <fetch-profile> outside <class> node <hibernate-mapping> <class name="customer">... <set name="orders" inverse="true"> <key column="cust_id"/> <one-to-many class="order"/> </set> </class> <class name="order">... </class> <fetch-profile name="customer-with-orders"> <fetch entity="customer" association="orders" style="join"/> </fetch-profile> 332

345 Fetch profiles </hibernate-mapping> Example Specifying a fetch profile using <fetch-profile> inside <class> node <hibernate-mapping> <class name="customer">... <set name="orders" inverse="true"> <key column="cust_id"/> <one-to-many class="order"/> </set> <fetch-profile name="customer-with-orders"> <fetch association="orders" style="join"/> </fetch-profile> </class> <class name="order">... </class> </hibernate-mapping> Now normally when you get a reference to a particular customer, that customer's set of orders will be lazy meaning we will not yet have loaded those orders from the database. Normally this is a good thing. Now lets say that you have a certain use case where it is more efficient to load the customer and their orders together. One way certainly is to use "dynamic fetching" strategies via an HQL or criteria queries. But another option is to use a fetch profile to achieve that. The following code will load both the customer andtheir orders: Example Activating a fetch profile for a given Session Session session =...; session.enablefetchprofile( "customer-with-orders" ); // name matches from mapping Customer customer = (Customer) session.get( Customer.class, customerid ); definitions are global and it does not matter on which class you place them. You can place annotation either onto a class or package (package-info.java). In order to define multiple fetch profiles for the same class or can be used. Currently only join style fetch profiles are supported, but they plan is to support additional styles. See HHH-3414 [ for details. 333

346 Chapter 21. Improving performance Using lazy property fetching Hibernate3 supports the lazy fetching of individual properties. This optimization technique is also known as fetch groups. Please note that this is mostly a marketing feature; optimizing row reads is much more important than optimization of column reads. However, only loading some properties of a class could be useful in extreme cases. For example, when legacy tables have hundreds of columns and the data model cannot be improved. To enable lazy property loading, set the lazy attribute on your particular property mappings: <class name="document"> <id name="id"> <generator class="native"/> </id> <property name="name" not-null="true" length="50"/> <property name="summary" not-null="true" length="200" lazy="true"/> <property name="text" not-null="true" length="2000" lazy="true"/> </class> Lazy property loading requires buildtime bytecode instrumentation. If your persistent classes are not enhanced, Hibernate will ignore lazy property settings and return to immediate fetching. For bytecode instrumentation, use the following Ant task: <target name="instrument" depends="compile"> <taskdef name="instrument" classname="org.hibernate.tool.instrument.instrumenttask"> <classpath path="${jar.path"/> <classpath path="${classes.dir"/> <classpath refid="lib.class.path"/> </taskdef> <instrument verbose="true"> <fileset dir="${testclasses.dir/org/hibernate/auction/model"> <include name="*.class"/> </fileset> </instrument> </target> A different way of avoiding unnecessary column reads, at least for read-only transactions, is to use the projection features of HQL or Criteria queries. This avoids the need for buildtime bytecode processing and is certainly a preferred solution. You can force the usual eager fetching of properties using fetch all properties in HQL The Second Level Cache A Hibernate Session is a transaction-level cache of persistent data. It is possible to configure a cluster or JVM-level (SessionFactory-level) cache on a class-by-class and collection-bycollection basis. You can even plug in a clustered cache. Be aware that caches are not aware of 334

347 Cache mappings changes made to the persistent store by another application. They can, however, be configured to regularly expire cached data. You have the option to tell Hibernate which caching implementation to use by specifying the name of a class that implements org.hibernate.cache.cacheprovider using the property hibernate.cache.provider_class. Hibernate is bundled with a number of built-in integrations with the open-source cache providers that are listed in Table 21.1, Cache Providers. You can also implement your own and plug it in as outlined above. Note that versions prior to Hibernate 3.2 use EhCache as the default cache provider. Table Cache Providers Cache Provider class Type Cluster Safe Query Cache Supported Hashtable (not intended for production use) org.hibernate.cache.hashtablecacheprovider memory yes EHCache OSCache org.hibernate.cache.ehcacheprovidermemory, disk org.hibernate.cache.oscacheprovidermemory, disk yes yes SwarmCacheorg.hibernate.cache.SwarmCacheProvider clustered (ip multicast) yes (clustered invalidation) JBoss org.hibernate.cache.treecacheprovider clustered yes yes (clock Cache 1.x (ip (replication) sync req.) multicast), transactional JBoss Cache 2 org.hibernate.cache.jbc.jbosscacheregionfactory clustered yes (ip (replication multicast), or transactional invalidation) yes (clock sync req.) Cache mappings As we have done in previous chapters we are looking at the two different possibiltites to configure caching. First configuration via annotations and then via Hibernate mapping files. By default, entities are not part of the second level cache and we recommend you to stick to this setting. However, you can override this by setting the shared-cache-mode element in your 335

348 Chapter 21. Improving performance persistence.xml file or by using the javax.persistence.sharedcache.mode property in your configuration. The following values are possible: ENABLE_SELECTIVE (Default and recommended value): entities are not cached unless explicitly marked as cacheable. DISABLE_SELECTIVE: entities are cached unless explicitly marked as not cacheable. ALL: all entities are always cached even if marked as non cacheable. NONE: no entity are cached even if marked as cacheable. This option can make sense to disable second-level cache altogether. The cache concurrency strategy used by default can be set globaly via the hibernate.cache.default_cache_concurrency_strategy configuration property. The values for this property are: read-only read-write nonstrict-read-write transactional Note It is recommended to define the cache concurrency strategy per entity rather than using a global one. Use annotation for that. Example Definition of cache concurrency = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public class Forest {... Hibernate also let's you cache the content of a collection or the identifiers if the collection contains other entities. Use annotation on the collection property. Example Caching collections using fetch=fetchtype.eager) = CacheConcurrencyStrategy.NONSTRICT_READ_WRITE) public SortedSet<Ticket> gettickets() { 336

349 Cache mappings return tickets; Example annotation with attributes shows annotations with its attributes. It allows you to define the caching strategy and region of a given second level cache. Example annotation with CacheConcurrencyStrategy usage(); String region() default ""; ) String include() default "all"; usage: the given cache concurrency strategy (NONE, READ_ONLY, NONSTRICT_READ_WRITE, READ_WRITE, TRANSACTIONAL) region (optional): the cache region (default to the fqcn of the class or the fq role name of the collection) include (optional): all to include all properties, non-lazy to only include non lazy properties (default all). Let's now take a look at Hibernate mapping files. There the <cache> element of a class or collection mapping is used to configure the second level cache. Looking at Example 21.8, The Hibernate <cache> mapping element the parallels to anotations is obvious. Example The Hibernate <cache> mapping element <cache usage="transactional read-write nonstrict-read-write read-only" region="regionname" /> include="all non-lazy" usage (required) specifies the caching strategy: transactional, read-write, nonstrictread-write or read-only region (optional: defaults to the class or collection role name): specifies the name of the second level cache region include (optional: defaults to all) non-lazy: specifies that properties of the entity mapped with lazy="true" cannot be cached when attribute-level lazy fetching is enabled Alternatively to <cache>, you can use <class-cache> and <collection-cache> elements in hibernate.cfg.xml. 337

350 Chapter 21. Improving performance Let's now have a closer look at the different usage strategies Strategy: read only If your application needs to read, but not modify, instances of a persistent class, a read-only cache can be used. This is the simplest and optimal performing strategy. It is even safe for use in a cluster Strategy: read/write 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 and naming a strategy for obtaining the JTA TransactionManager. In other environments, you should ensure that the transaction is completed when Session.close() or Session.disconnect() is called. If you want to use this strategy in a cluster, you should ensure that the underlying cache implementation supports locking. The builtin cache providers do not support locking Strategy: nonstrict read/write If the application only occasionally needs to update data (i.e. if it is extremely unlikely that two transactions would try to update the same item simultaneously), and strict transaction isolation is not required, a nonstrict-read-write cache might be appropriate. If the cache is used in a JTA environment, you must specify hibernate.transaction.manager_lookup_class. In other environments, you should ensure that the transaction is completed when Session.close() or Session.disconnect() is called Strategy: transactional The transactional cache strategy provides support for fully transactional cache providers such as JBoss TreeCache. Such a cache can only be used in a JTA environment and you must specify hibernate.transaction.manager_lookup_class Cache-provider/concurrency-strategy compatibility Important None of the cache providers support all of the cache concurrency strategies. The following table shows which providers are compatible with which concurrency strategies. 338

351 Managing the caches Table Cache Concurrency Strategy Support Cache read-only nonstrict-readwrite read-write transactional Hashtable (not intended for production use) yes yes yes EHCache yes yes yes OSCache yes yes yes SwarmCache yes yes JBoss Cache 1.x yes yes JBoss Cache 2 yes yes Managing the caches Whenever you pass an object to save(), update() or saveorupdate(), and whenever you retrieve an object using load(), get(), list(), iterate() or scroll(), that object is added to the internal cache of the Session. When flush() is subsequently called, the state of that object will be synchronized with the database. If you do not want this synchronization to occur, or if you are processing a huge number of objects and need to manage memory efficiently, the evict() method can be used to remove the object and its collections from the first-level cache. Example Explcitly evicting a cached instance from the first level cache using Session.evict() ScrollableResult cats = sess.createquery("from Cat as cat").scroll(); //a huge result set while ( cats.next() ) { Cat cat = (Cat) cats.get(0); dosomethingwithacat(cat); sess.evict(cat); The Session also provides a contains() method to determine if an instance belongs to the session cache. To 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. 339

352 Chapter 21. Improving performance Example Second-level cache eviction via SessionFactoty.evict() and SessionFacyory.evictCollection() sessionfactory.evict(cat.class, catid); //evict a particular Cat sessionfactory.evict(cat.class); //evict all Cats sessionfactory.evictcollection("cat.kittens", catid); //evict a particular collection of kittens sessionfactory.evictcollection("cat.kittens"); //evict all kitten collections The CacheMode controls how a particular session interacts with the second-level cache: CacheMode.NORMAL: will read items from and write items to the second-level cache CacheMode.GET: will read items from the second-level cache. Do not write to the second-level cache except when updating data CacheMode.PUT: will write items to the second-level cache. Do not read from the second-level cache CacheMode.REFRESH: will write items to the second-level cache. Do not read from the secondlevel cache. Bypass the effect of hibernate.cache.use_minimal_puts forcing a refresh of the second-level cache for all items read from the database To browse the contents of a second-level or query cache region, use the Statistics API: Example Browsing the second-level cache entries via the Statistics API Map cacheentries = sessionfactory.getstatistics().getsecondlevelcachestatistics(regionname).getentries(); You will need to enable statistics and, optionally, force Hibernate to keep the cache entries in a more readable format: Example Enabling Hibernate statistics hibernate.generate_statistics true hibernate.cache.use_structured_entries true The Query Cache Query result sets can also be cached. This is only useful for queries that are run frequently with the same parameters. 340

353 Enabling query caching Enabling query caching Caching of query results introduces some overhead in terms of your applications normal transactional processing. For example, if you cache results of a query against Person Hibernate will need to keep track of when those results should be invalidated because changes have been committed against Person. That, coupled with the fact that most applications simply gain no benefit from caching query results, leads Hibernate to disable caching of query results by default. To use query caching, you will first need to enable the query cache: hibernate.cache.use_query_cache true This setting creates two new cache regions: org.hibernate.cache.standardquerycache, holding the cached query results org.hibernate.cache.updatetimestampscache, holding timestamps of the most recent updates to queryable tables. These are used to validate the results as they are served from the query cache. Important If you configure your underlying cache implementation to use expiry or timeouts is very important that the cache timeout of the underlying cache region for the UpdateTimestampsCache be set to a higher value than the timeouts of any of the query caches. In fact, we recommend that the the UpdateTimestampsCache region not be configured for expiry at all. Note, in particular, that an LRU cache expiry policy is never appropriate. As mentioned above, most queries do not benefit from caching or their results. So by default, individual queries are not cached even after enabling query caching. To enable results caching for a particular query, call org.hibernate.query.setcacheable(true). This call allows the query to look for existing cache results or add its results to the cache when it is executed. Note The query cache does not cache the state of the actual entities in the cache; it caches only identifier values and results of value type. For this reaso, the query cache should always be used in conjunction with the second-level cache for those entities expected to be cached as part of a query result cache (just as with collection caching). 341

354 Chapter 21. Improving performance Query cache regions If you require fine-grained control over query cache expiration policies, you can specify a named cache region for a particular query by calling Query.setCacheRegion(). List blogs = sess.createquery("from Blog blog where blog.blogger = :blogger").setentity("blogger", blogger).setmaxresults(15).setcacheable(true).setcacheregion("frontpages").list(); If you want to force the query cache to refresh one of its regions (disregard any cached results it finds there) you can use org.hibernate.query.setcachemode(cachemode.refresh). In conjunction with the region you have defined for the given query, Hibernate will selectively force the results cached in that particular region to be refreshed. This is particularly useful in cases where underlying data may have been updated via a separate process and is a far more efficient alternative to bulk eviction of the region via org.hibernate.sessionfactory.evictqueries() Understanding Collection performance In the previous sections we have covered collections and their applications. In this section we explore some more issues in relation to collections at runtime Taxonomy Hibernate defines three basic kinds of collections: collections of values one-to-many associations many-to-many associations This classification distinguishes the various table and foreign key relationships but does not tell us quite everything we need to know about the relational model. To fully understand the relational structure and performance characteristics, we must also consider the structure of the primary key that is used by Hibernate to update or delete collection rows. This suggests the following classification: indexed collections sets bags All indexed collections (maps, lists, and arrays) have a primary key consisting of the <key> and <index> columns. In this case, collection updates are extremely efficient. The primary key can be 342

355 Lists, maps, idbags and sets are the most efficient collections to update efficiently indexed and a particular row can be efficiently located when Hibernate tries to update or delete it. Sets have a primary key consisting of <key> and element columns. This can be less efficient for some types of collection element, particularly composite elements or large text or binary fields, as the database may not be able to index a complex primary key as efficiently. However, for one-tomany or many-to-many associations, particularly in the case of synthetic identifiers, it is likely to be just as efficient. If you want SchemaExport to actually create the primary key of a <set>, you must declare all columns as not-null="true". <idbag> mappings define a surrogate key, so they are efficient to update. In fact, they are the best case. Bags are the worst case since they permit duplicate element values and, as they have no index column, no primary key can be defined. Hibernate has no way of distinguishing between duplicate rows. Hibernate resolves this problem by completely removing in a single DELETE and recreating the collection whenever it changes. This can be inefficient. For a one-to-many association, the "primary key" may not be the physical primary key of the database table. Even in this case, the above classification is still useful. It reflects how Hibernate "locates" individual rows of the collection Lists, maps, idbags and sets are the most efficient collections to update From the discussion above, it should be clear that indexed collections and sets allow the most efficient operation in terms of adding, removing and updating elements. There is, arguably, one more advantage that indexed collections have over sets for many-to-many associations or collections of values. Because of the structure of a Set, Hibernate does not UPDATE a row when an element is "changed". Changes to a Set always work via INSERT and DELETE of individual rows. Once again, this consideration does not apply to one-to-many associations. After observing that arrays cannot be lazy, you can conclude that lists, maps and idbags are the most performant (non-inverse) collection types, with sets not far behind. You can expect sets to be the most common kind of collection in Hibernate applications. This is because the "set" semantics are most natural in the relational model. However, in well-designed Hibernate domain models, most collections are in fact one-to-many associations with inverse="true". For these associations, the update is handled by the manyto-one end of the association, and so considerations of collection update performance simply do not apply Bags and lists are the most efficient inverse collections There is a particular case, however, in which bags, and also lists, are much more performant than sets. For a collection with inverse="true", the standard bidirectional one-to-many relationship 343

356 Chapter 21. Improving performance idiom, for example, we can add elements to a bag or list without needing to initialize (fetch) the bag elements. This is because, unlike a set, Collection.add() or Collection.addAll() must always return true for a bag or List. This can make the following common code much faster: Parent p = (Parent) sess.load(parent.class, id); Child c = new Child(); c.setparent(p); p.getchildren().add(c); //no need to fetch the collection! sess.flush(); One shot delete Deleting collection elements one by one can sometimes be extremely inefficient. Hibernate knows not to do that in the case of an newly-empty collection (if you called list.clear(), for example). In this case, Hibernate will issue a single DELETE. Suppose you added a single element to a collection of size twenty and then remove two elements. Hibernate will issue one INSERT statement and two DELETE statements, unless the collection is a bag. This is certainly desirable. However, suppose that we remove eighteen elements, leaving two and then add thee new elements. There are two possible ways to proceed delete eighteen rows one by one and then insert three rows remove the whole collection in one SQL DELETE and insert all five current elements one by one Hibernate cannot know that the second option is probably quicker. It would probably be undesirable for Hibernate to be that intuitive as such behavior might confuse database triggers, etc. Fortunately, you can force this behavior (i.e. the second strategy) at any time by discarding (i.e. dereferencing) the original collection and returning a newly instantiated collection with all the current elements. One-shot-delete does not apply to collections mapped inverse="true" Monitoring performance Optimization is not much use without monitoring and access to performance numbers. Hibernate provides a full range of figures about its internal operations. Statistics in Hibernate are available per SessionFactory Monitoring a SessionFactory You can access SessionFactory metrics in two ways. Your first option is to call sessionfactory.getstatistics() and read or display the Statistics yourself. 344

357 Metrics Hibernate can also use JMX to publish metrics if you enable the StatisticsService MBean. You can enable a single MBean for all your SessionFactory or one per factory. See the following code for minimalistic configuration examples: // MBean service registration for a specific SessionFactory Hashtable tb = new Hashtable(); tb.put("type", "statistics"); tb.put("sessionfactory", "myfinancialapp"); ObjectName on = new ObjectName("hibernate", tb); // MBean object name StatisticsService stats = new StatisticsService(); // MBean implementation stats.setsessionfactory(sessionfactory); // Bind the stats to a SessionFactory server.registermbean(stats, on); // Register the Mbean on the server // MBean service registration for all SessionFactory's Hashtable tb = new Hashtable(); tb.put("type", "statistics"); tb.put("sessionfactory", "all"); ObjectName on = new ObjectName("hibernate", tb); // MBean object name StatisticsService stats = new StatisticsService(); // MBean implementation server.registermbean(stats, on); // Register the MBean on the server You can activate and deactivate the monitoring for a SessionFactory: at configuration time, set hibernate.generate_statistics to false at runtime: sf.getstatistics().setstatisticsenabled(true) or hibernatestatsbean.setstatisticsenabled(true) Statistics can be reset programmatically using the clear() method. A summary can be sent to a logger (info level) using the logsummary() method Metrics Hibernate provides a number of metrics, from basic information to more specialized information that is only relevant in certain scenarios. All available counters are described in the Statistics interface API, in three categories: Metrics related to the general Session usage, such as number of open sessions, retrieved JDBC connections, etc. Metrics related to the entities, collections, queries, and caches as a whole (aka global metrics). Detailed metrics related to a particular entity, collection, query or cache region. For example, you can check the cache hit, miss, and put ratio of entities, collections and queries, and the average time a query needs. Be aware that the number of milliseconds is subject to 345

358 Chapter 21. Improving performance approximation in Java. Hibernate is tied to the JVM precision and on some platforms this might only be accurate to 10 seconds. Simple getters are used to access the global metrics (i.e. not tied to a particular entity, collection, cache region, etc.). You can access the metrics of a particular entity, collection or cache region through its name, and through its HQL or SQL representation for queries. Please refer to the Statistics, EntityStatistics, CollectionStatistics, SecondLevelCacheStatistics, and QueryStatistics API Javadoc for more information. The following code is a simple example: Statistics stats = HibernateUtil.sessionFactory.getStatistics(); double querycachehitcount = stats.getquerycachehitcount(); double querycachemisscount = stats.getquerycachemisscount(); double querycachehitratio = querycachehitcount / (querycachehitcount + querycachemisscount); log.info("query Hit ratio:" + querycachehitratio); EntityStatistics entitystats = stats.getentitystatistics( Cat.class.getName() ); long changes = entitystats.getinsertcount() + entitystats.getupdatecount() + entitystats.getdeletecount(); log.info(cat.class.getname() + " changed " + changes + "times" ); You can work on all entities, collections, queries and region caches, by retrieving the list of names of entities, collections, queries and region caches using the following methods: getqueries(), getentitynames(), getcollectionrolenames(), and getsecondlevelcacheregionnames(). 346

359 Chapter 22. Toolset Guide Roundtrip engineering with Hibernate is possible using a set of Eclipse plugins, commandline tools, and Ant tasks. Hibernate Tools currently include plugins for the Eclipse IDE as well as Ant tasks for reverse engineering of existing databases: Mapping Editor: an editor for Hibernate XML mapping files that supports auto-completion and syntax highlighting. It also supports semantic auto-completion for class names and property/ field names, making it more versatile than a normal XML editor. Console: the console is a new view in Eclipse. In addition to a tree overview of your console configurations, you are also provided with an interactive view of your persistent classes and their relationships. The console allows you to execute HQL queries against your database and browse the result directly in Eclipse. Development Wizards: several wizards are provided with the Hibernate Eclipse tools. You can use a wizard to quickly generate Hibernate configuration (cfg.xml) files, or to reverse engineer an existing database schema into POJO source files and Hibernate mapping files. The reverse engineering wizard supports customizable templates. Please refer to the Hibernate Tools package documentation for more information. However, the Hibernate main package comes bundled with an integrated tool : SchemaExport aka hbm2ddl.it can even be used from "inside" Hibernate Automatic schema generation DDL can be generated from your mapping files by a Hibernate utility. The generated schema includes referential integrity constraints, primary and foreign keys, for entity and collection 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, as DDL is highly vendor-specific. First, you must customize your mapping files to improve the generated schema. The next section covers schema customization Customizing the schema Many Hibernate mapping elements define optional attributes named length, precision and scale. You can set the length, precision and scale of a column with this attribute. <property name="zip" length="5"/> 347

360 Chapter 22. Toolset Guide <property name="balance" precision="12" scale="2"/> 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. <many-to-one name="bar" column="barid" not-null="true"/> <element column="serialnumber" type="long" not-null="true" unique="true"/> A unique-key attribute can be used to group columns in a single, unique key constraint. Currently, the specified value of the unique-key attribute is not used to name the constraint in the generated DDL. It is only used to group the columns in the mapping file. <many-to-one name="org" column="orgid" unique-key="orgemployeeid"/> <property name="employeeid" unique-key="orgemployee"/> An index attribute specifies the name of an index that will be created using the mapped column or columns. Multiple columns can be grouped into the same index by simply specifying the same index name. <property name="lastname" index="custname"/> <property name="firstname" index="custname"/> A foreign-key attribute can be used to override the name of any generated foreign key constraint. <many-to-one name="bar" column="barid" foreign-key="fkfoobar"/> Many mapping elements also accept a child <column> element. This is particularly useful for mapping multi-column types: <property name="name" type="my.customtypes.name"/> <column name="last" not-null="true" index="bar_idx" length="30"/> <column name="first" not-null="true" index="bar_idx" length="20"/> <column name="initial"/> </property> The default attribute allows you to specify a default value for a column.you should assign the same value to the mapped property before saving a new instance of the mapped class. 348

361 Customizing the schema <property name="credits" type="integer" insert="false"> <column name="credits" default="10"/> </property> <version name="version" type="integer" insert="false"> <column name="version" default="0"/> </property> The sql-type attribute allows the user to override the default mapping of a Hibernate type to SQL datatype. <property name="balance" type="float"> <column name="balance" sql-type="decimal(13,3)"/> </property> The check attribute allows you to specify a check constraint. <property name="foo" type="integer"> <column name="foo" check="foo > 10"/> </property> <class name="foo" table="foos" check="bar < 100.0">... <property name="bar" type="float"/> </class> The following table summarizes these optional attributes. Table Summary Attribute Values Interpretation length number column length precision number column decimal precision scale number column decimal scale not-null true false specifies that the column should be non-nullable unique true false specifies that the column should have a unique constraint index index_name specifies the name of a (multi-column) index unique-key unique_key_name specifies the name of a multi-column unique constraint 349

362 Chapter 22. Toolset Guide Attribute Values Interpretation foreign-key foreign_key_name specifies the name of the foreign key constraint generated for an association, for a <one-toone>, <many-to-one>, <key>, or <many-to-many> mapping element. Note that inverse="true" sides will not be considered by SchemaExport. sql-type SQL column type overrides the default column type (attribute of <column> element only) default SQL expression specify a default value for the column check SQL expression create an SQL check constraint on either column or table The <comment> element allows you to specify comments for the generated schema. <class name="customer" table="curcust"> <comment>current customers only</comment>... </class> <property name="balance"> <column name="bal"> <comment>balance in USD</comment> </column> </property> This results in a comment on table or comment on column statement in the generated DDL where supported Running the tool The SchemaExport tool writes a DDL script to standard out and/or executes the DDL statements. The following table displays the SchemaExport command line options java -cp hibernate_classpaths org.hibernate.tool.hbm2ddl.schemaexport options mapping_files Table SchemaExport Command Line Options Option --quiet --drop --create Description do not output the script to stdout only drop the tables only create the tables 350

363 Properties Option --text --output=my_schema.ddl --naming=eg.mynamingstrategy --config=hibernate.cfg.xml -- properties=hibernate.properties --format --delimiter=; Description do not export to the database output the ddl script to a file select a NamingStrategy read Hibernate configuration from an XML file read database properties from a file format the generated SQL nicely in the script set an end of line delimiter for the script You can even embed SchemaExport in your application: Configuration cfg =...; new SchemaExport(cfg).create(false, true); Properties Database properties can be specified: as system properties with -D<property> in hibernate.properties in a named properties file with --properties The needed properties are: Table SchemaExport Connection Properties Property Name Description hibernate.connection.driver_class jdbc driver class hibernate.connection.url hibernate.connection.username hibernate.connection.password hibernate.dialect jdbc url database user user password dialect Using Ant You can call SchemaExport from your Ant build script: <target name="schemaexport"> <taskdef name="schemaexport" classname="org.hibernate.tool.hbm2ddl.schemaexporttask" 351

364 Chapter 22. Toolset Guide classpathref="class.path"/> <schemaexport properties="hibernate.properties" quiet="no" text="no" drop="no" delimiter=";" output="schema-export.sql"> <fileset dir="src"> <include name="**/*.hbm.xml"/> </fileset> </schemaexport> </target> Incremental schema updates The SchemaUpdate tool will update an existing schema with "incremental" changes. The SchemaUpdate depends upon the JDBC metadata API and, as such, will not work with all JDBC drivers. java -cp hibernate_classpaths org.hibernate.tool.hbm2ddl.schemaupdate options mapping_files Table SchemaUpdate Command Line Options Option --quiet --text --naming=eg.mynamingstrategy -- properties=hibernate.properties --config=hibernate.cfg.xml Description do not output the script to stdout do not export the script to the database select a NamingStrategy read database properties from a file specify a.cfg.xml file You can embed SchemaUpdate in your application: Configuration cfg =...; new SchemaUpdate(cfg).execute(false); Using Ant for incremental schema updates You can call SchemaUpdate from the Ant script: <target name="schemaupdate"> <taskdef name="schemaupdate" classname="org.hibernate.tool.hbm2ddl.schemaupdatetask" 352

365 Schema validation classpathref="class.path"/> <schemaupdate properties="hibernate.properties" quiet="no"> <fileset dir="src"> <include name="**/*.hbm.xml"/> </fileset> </schemaupdate> </target> Schema validation The SchemaValidator tool will validate that the existing database schema "matches" your mapping documents. The SchemaValidator depends heavily upon the JDBC metadata API and, as such, will not work with all JDBC drivers. This tool is extremely useful for testing. java -cp hibernate_classpaths org.hibernate.tool.hbm2ddl.schemavalidator options mapping_files The following table displays the SchemaValidator command line options: Table SchemaValidator Command Line Options Option --naming=eg.mynamingstrategy -- properties=hibernate.properties --config=hibernate.cfg.xml Description select a NamingStrategy read database properties from a file specify a.cfg.xml file You can embed SchemaValidator in your application: Configuration cfg =...; new SchemaValidator(cfg).validate(); Using Ant for schema validation You can call SchemaValidator from the Ant script: <target name="schemavalidate"> <taskdef name="schemavalidator" classname="org.hibernate.tool.hbm2ddl.schemavalidatortask" classpathref="class.path"/> <schemavalidator properties="hibernate.properties"> <fileset dir="src"> <include name="**/*.hbm.xml"/> 353

366 Chapter 22. Toolset Guide </fileset> </schemavalidator> </target> 354

367 Chapter 23. Additional modules Hibernate Core also offers integration with some external modules/projects. This includes Hibernate Validator the reference implementation of Bean Validation (JSR 303) and Hibernate Search Bean Validation Bean Validation standardizes how to define and declare domain model level constraints. You can, for example, express that a property should never be null, that the account balance should be strictly positive, etc. These domain model constraints are declared in the bean itself by annotating its properties. Bean Validation can then read them and check for constraint violations. The validation mechanism can be executed in different layers in your application without having to duplicate any of these rules (presentation layer, data access layer). Following the DRY principle, Bean Validation and its reference implementation Hibernate Validator has been designed for that purpose. The integration between Hibernate and Bean Validation works at two levels. First, it is able to check in-memory instances of a class for constraint violations. Second, it can apply the constraints to the Hibernate metamodel and incorporate them into the generated database schema. Each constraint annotation is associated to a validator implementation responsible for checking the constraint on the entity instance. A validator can also (optionally) apply the constraint to the Hibernate metamodel, allowing Hibernate to generate DDL that expresses the constraint. With the appropriate event listener, you can execute the checking operation on inserts, updates and deletes done by Hibernate. When checking instances at runtime, Hibernate Validator returns information about constraint violations in a set of ConstraintViolations. Among other information, the ConstraintViolation contains an error description message that can embed the parameter values bundle with the annotation (eg. size limit), and message strings that may be externalized to a ResourceBundle Adding Bean Validation To enable Hibernate's Bean Validation integration, simply add a Bean Validation provider (preferably Hibernate Validation 4) on your classpath Configuration By default, no configuration is necessary. The Default group is validated on entity insert and update and the database model is updated accordingly based on the Default group as well. 355

368 Chapter 23. Additional modules You can customize the Bean Validation integration by setting the validation mode. Use the javax.persistence.validation.mode property and set it up for example in your persistence.xml file or your hibernate.cfg.xml file. Several options are possible: auto (default): enable integration between Bean Validation and Hibernate (callback and ddl generation) only if Bean Validation is present in the classpath. none: disable all integration between Bean Validation and Hibernate callback: only validate entities when they are either inserted, updated or deleted. An exception is raised if no Bean Validation provider is present in the classpath. ddl: only apply constraints to the database schema when generated by Hibernate. An exception is raised if no Bean Validation provider is present in the classpath. This value is not defined by the Java Persistence spec and is specific to Hibernate. Note You can use both callback and ddl together by setting the property to callback, dll <persistence...> <persistence-unit...>... <properties> <property name="javax.persistence.validation.mode" value="callback, ddl"/> </properties> </persistence-unit> </persistence> This is equivalent to auto except that if no Bean Validation provider is present, an exception is raised. If you want to validate different groups during insertion, update and deletion, use: javax.persistence.validation.group.pre-persist: groups validated when an entity is about to be persisted (default to Default) javax.persistence.validation.group.pre-update: groups validated when an entity is about to be updated (default to Default) javax.persistence.validation.group.pre-remove: groups validated when an entity is about to be deleted (default to no group) org.hibernate.validator.group.ddl: groups considered when applying constraints on the database schema (default to Default) 356

369 Catching violations Each property accepts the fully qualified class names of the groups validated separated by a comma (,) Example Using custom groups for validation <persistence...> <persistence-unit...>... <properties> <property name="javax.persistence.validation.group.pre-update" value="javax.validation.group.default, com.acme.group.strict"/> <property name="javax.persistence.validation.group.pre-remove" value="com.acme.group.ondelete"/> <property name="org.hibernate.validator.group.ddl" value="com.acme.group.ddl"/> </properties> </persistence-unit> </persistence> Note You can set these properties in hibernate.cfg.xml, hibernate.properties or programmatically Catching violations If an entity is found to be invalid, the list of constraint violations is propagated by the ConstraintViolationException which exposes the set of ConstraintViolations. This exception is wrapped in a RollbackException when the violation happens at commit time. Otherwise the ConstraintViolationException is returned (for example when calling flush(). Note that generally, catchable violations are validated at a higher level (for example in Seam / JSF 2 via the JSF - Bean Validation integration or in your business layer by explicitly calling Bean Validation). An application code will rarely be looking for a ConstraintViolationException raised by Hibernate. This exception should be treated as fatal and the persistence context should be discarded (EntityManager or Session) Database schema Hibernate uses Bean Validation constraints to generate an accurate database leads to a not null column (unless it conflicts with components or table leads to a varchar(max) definition for Strings 357

370 Chapter 23. lead to column checks (like value <= leads to the definition of precision and scale (ever wondered which is which? It's easy now :) ) These constraints can be declared directly on the entity properties or indirectly by using constraint composition. For more information check the Hibernate Validator reference documentation [ docs.jboss.org/hibernate/stable/validator/reference/en-us/html/] Hibernate Search Description Full text search engines like Apache Lucene are a very powerful technology to bring free text/ efficient queries to applications. If suffers several mismatches when dealing with a object domain model (keeping the index up to date, mismatch between the index structure and the domain model, querying mismatch...) Hibernate Search indexes your domain model thanks to a few annotations, takes care of the database / index synchronization and brings you back regular managed objects from free text queries. Hibernate Search is using Apache Lucene [ under the cover Integration with Hibernate Annotations Hibernate Search integrates with Hibernate Core transparently provided that the Hibernate Search jar is present on the classpath. If you do not wish to automatically register Hibernate Search event listeners, you can set hibernate.search.autoregister_listeners to false. Such a need is very uncommon and not recommended. Check the Hibernate Search reference documentation [ search/reference/en-us/html/] for more information. 358

371 Chapter 24. Example: Parent/Child One of the first things that new users want to do with Hibernate is to model a parent/child type relationship. There are two different approaches to this. The most convenient approach, especially for new users, is to model both Parent and Child as entity classes with a <one-tomany> association from Parent to Child. The alternative approach is to declare the Child as a <composite-element>. The default semantics of a one-to-many association in Hibernate are much less close to the usual semantics of a parent/child relationship than those of a composite element mapping. We will explain how to use a bidirectional one-to-many association with cascades to model a parent/child relationship efficiently and elegantly A note about collections Hibernate collections are considered to be a logical part of their owning entity and not of the contained entities. Be aware that this is a critical distinction that has the following consequences: When you remove/add an object from/to a collection, the version number of the collection owner is incremented. If an object that was removed from a collection is an instance of a value type (e.g. a composite element), that object will cease to be persistent and its state will be completely removed from the database. Likewise, adding a value type instance to the collection will cause its state to be immediately persistent. Conversely, 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 behavior 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. Adding an entity to a collection, by default, merely creates a link between the two entities. Removing the entity will remove the link. This is appropriate for all sorts of cases. However, it is not appropriate in the case of a parent/child relationship. In this case, the life of the child is bound to the life cycle of the parent Bidirectional one-to-many Suppose we start with a simple <one-to-many> association from Parent to Child. <set name="children"> <key column="parent_id"/> <one-to-many class="child"/> </set> If we were to execute the following code: 359

372 Chapter 24. Example: Parent/Child Parent p =...; Child c = new Child(); p.getchildren().add(c); session.save(c); session.flush(); Hibernate would issue two SQL statements: an INSERT to create the record for c an UPDATE to create the link from p to c This is not only inefficient, but also violates any NOT NULL constraint on the parent_id column. You can fix the nullability constraint violation by specifying not-null="true" in the collection mapping: <set name="children"> <key column="parent_id" not-null="true"/> <one-to-many class="child"/> </set> However, this is not the recommended solution. The underlying cause of this behavior is that the link (the foreign key parent_id) from p to c is not considered part of the state of the Child object and is therefore not created in the INSERT. The solution is to make the link part of the Child mapping. <many-to-one name="parent" column="parent_id" not-null="true"/> You also need to add the parent property to the Child class. Now that the Child entity is managing the state of the link, we tell the collection not to update the link. We use the inverse attribute to do this: <set name="children" inverse="true"> <key column="parent_id"/> <one-to-many class="child"/> </set> The following code would be used to add a new Child: Parent p = (Parent) session.load(parent.class, pid); Child c = new Child(); c.setparent(p); 360

373 Cascading life cycle p.getchildren().add(c); session.save(c); session.flush(); Only one SQL INSERT would now be issued. You could also create an addchild() method of Parent. public void addchild(child c) { c.setparent(this); children.add(c); The code to add a Child looks like this: Parent p = (Parent) session.load(parent.class, pid); Child c = new Child(); p.addchild(c); session.save(c); session.flush(); Cascading life cycle You can address the frustrations of the explicit call to save() by using cascades. <set name="children" inverse="true" cascade="all"> <key column="parent_id"/> <one-to-many class="child"/> </set> This simplifies the code above to: Parent p = (Parent) session.load(parent.class, pid); Child c = new Child(); p.addchild(c); session.flush(); Similarly, we do not need to iterate over the children when saving or deleting a Parent. The following removes p and all its children from the database. Parent p = (Parent) session.load(parent.class, pid); session.delete(p); session.flush(); 361

374 Chapter 24. Example: Parent/Child However, the following code: Parent p = (Parent) session.load(parent.class, pid); Child c = (Child) p.getchildren().iterator().next(); p.getchildren().remove(c); c.setparent(null); session.flush(); will not remove c from the database. In this case, it will only remove the link to p and cause a NOT NULL constraint violation. You need to explicitly delete() the Child. Parent p = (Parent) session.load(parent.class, pid); Child c = (Child) p.getchildren().iterator().next(); p.getchildren().remove(c); session.delete(c); session.flush(); In our case, a Child cannot exist without its parent. So if we remove a Child from the collection, we do want it to be deleted. To do this, we must use cascade="all-delete-orphan". <set name="children" inverse="true" cascade="all-delete-orphan"> <key column="parent_id"/> <one-to-many class="child"/> </set> Even though the collection mapping specifies inverse="true", cascades are still processed by iterating the collection elements. If you need an object be saved, deleted or updated by cascade, you must add it to the collection. It is not enough to simply call setparent() Cascades and unsaved-value Suppose we loaded up a Parent in one Session, made some changes in a UI action and wanted to persist these changes in a new session by calling update(). The Parent will contain a collection of children and, since the cascading update is enabled, Hibernate needs to know which children are newly instantiated and which represent existing rows in the database. We will also assume that both Parent and Child have generated identifier properties of type Long. Hibernate will use the identifier and version/timestamp property value to determine which of the children are new. (See Section 11.7, Automatic state detection.) In Hibernate3, it is no longer necessary to specify an unsaved-value explicitly. The following code will update parent and child and insert newchild: //parent and child were both loaded in a previous session parent.addchild(child); Child newchild = new Child(); 362

375 Conclusion parent.addchild(newchild); session.update(parent); session.flush(); This may be suitable for the case of a generated identifier, but what about assigned identifiers and composite identifiers? This is more difficult, since Hibernate cannot use the identifier property to distinguish between a newly instantiated object, with an identifier assigned by the user, and an object loaded in a previous session. In this case, Hibernate will either use the timestamp or version property, or will actually query the second-level cache or, worst case, the database, to see if the row exists Conclusion The sections we have just covered can be a bit confusing. However, in practice, it all works out nicely. Most Hibernate applications use the parent/child pattern in many places. We mentioned an alternative in the first paragraph. None of the above issues exist in the case of <composite-element> mappings, which have exactly the semantics of a parent/child relationship. Unfortunately, there are two big limitations with composite element classes: composite elements cannot own collections and they should not be the child of any entity other than the unique parent. 363

376 364

377 Chapter 25. Example: Weblog Application Persistent Classes The persistent classes here represent a weblog and an item posted in a weblog. They are to be modelled as a standard parent/child relationship, but we will use an ordered bag, instead of a set: package eg; import java.util.list; public class Blog { private Long _id; private String _name; private List _items; public Long getid() { return _id; public List getitems() { return _items; public String getname() { return _name; public void setid(long long1) { _id = long1; public void setitems(list list) { _items = list; public void setname(string string) { _name = string; package eg; import java.text.dateformat; import java.util.calendar; public class BlogItem { private Long _id; private Calendar _datetime; private String _text; private String _title; private Blog _blog; public Blog getblog() { return _blog; public Calendar getdatetime() { 365

378 Chapter 25. Example: Weblog A... return _datetime; public Long getid() { return _id; public String gettext() { return _text; public String gettitle() { return _title; public void setblog(blog blog) { _blog = blog; public void setdatetime(calendar calendar) { _datetime = calendar; public void setid(long long1) { _id = long1; public void settext(string string) { _text = string; public void settitle(string string) { _title = string; Hibernate Mappings The XML mappings are now straightforward. For example: <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" " <hibernate-mapping package="eg"> <class name="blog" table="blogs"> <id name="id" column="blog_id"> <generator class="native"/> </id> <property name="name" column="name" not-null="true" unique="true"/> 366

379 Hibernate Mappings <bag name="items" inverse="true" order-by="date_time" cascade="all"> <key column="blog_id"/> <one-to-many class="blogitem"/> </bag> </class> </hibernate-mapping> <?xml version="1.0"?> <!DOCTYPE hibernate-mapping PUBLIC "-//Hibernate/Hibernate Mapping DTD 3.0//EN" " <hibernate-mapping package="eg"> <class name="blogitem" table="blog_items" dynamic-update="true"> <id name="id" column="blog_item_id"> <generator class="native"/> </id> <property name="title" column="title" not-null="true"/> <property name="text" column="text" not-null="true"/> <property name="datetime" column="date_time" not-null="true"/> <many-to-one name="blog" column="blog_id" not-null="true"/> </class> 367

380 Chapter 25. Example: Weblog A... </hibernate-mapping> Hibernate Code The following class demonstrates some of the kinds of things we can do with these classes using Hibernate: package eg; import java.util.arraylist; import java.util.calendar; import java.util.iterator; import java.util.list; import org.hibernate.hibernateexception; import org.hibernate.query; import org.hibernate.session; import org.hibernate.sessionfactory; import org.hibernate.transaction; import org.hibernate.cfg.configuration; import org.hibernate.tool.hbm2ddl.schemaexport; public class BlogMain { private SessionFactory _sessions; public void configure() throws HibernateException { _sessions = new Configuration().addClass(Blog.class).addClass(BlogItem.class).buildSessionFactory(); public void exporttables() throws HibernateException { Configuration cfg = new Configuration().addClass(Blog.class).addClass(BlogItem.class); new SchemaExport(cfg).create(true, true); public Blog createblog(string name) throws HibernateException { Blog blog = new Blog(); blog.setname(name); blog.setitems( new ArrayList() ); Session session = _sessions.opensession(); Transaction tx = null; try { tx = session.begintransaction(); session.persist(blog); tx.commit(); catch (HibernateException he) { 368

381 Hibernate Code if (tx!=null) tx.rollback(); throw he; finally { session.close(); return blog; public BlogItem createblogitem(blog blog, String title, String text) throws HibernateException { BlogItem item = new BlogItem(); item.settitle(title); item.settext(text); item.setblog(blog); item.setdatetime( Calendar.getInstance() ); blog.getitems().add(item); Session session = _sessions.opensession(); Transaction tx = null; try { tx = session.begintransaction(); session.update(blog); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); return item; public BlogItem createblogitem(long blogid, String title, String text) throws HibernateException { BlogItem item = new BlogItem(); item.settitle(title); item.settext(text); item.setdatetime( Calendar.getInstance() ); Session session = _sessions.opensession(); Transaction tx = null; try { tx = session.begintransaction(); Blog blog = (Blog) session.load(blog.class, blogid); item.setblog(blog); blog.getitems().add(item); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); 369

382 Chapter 25. Example: Weblog A... return item; public void updateblogitem(blogitem item, String text) throws HibernateException { item.settext(text); Session session = _sessions.opensession(); Transaction tx = null; try { tx = session.begintransaction(); session.update(item); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); public void updateblogitem(long itemid, String text) throws HibernateException { Session session = _sessions.opensession(); Transaction tx = null; try { tx = session.begintransaction(); BlogItem item = (BlogItem) session.load(blogitem.class, itemid); item.settext(text); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); public List listallblognamesanditemcounts(int max) throws HibernateException { Session session = _sessions.opensession(); Transaction tx = null; List result = null; try { tx = session.begintransaction(); Query q = session.createquery( "select blog.id, blog.name, count(blogitem) " + "from Blog as blog " + "left outer join blog.items as blogitem " + "group by blog.name, blog.id " + "order by max(blogitem.datetime)" 370

383 Hibernate Code ); q.setmaxresults(max); result = q.list(); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); return result; public Blog getblogandallitems(long blogid) throws HibernateException { Session session = _sessions.opensession(); Transaction tx = null; Blog blog = null; try { tx = session.begintransaction(); Query q = session.createquery( "from Blog as blog " + "left outer join fetch blog.items " + "where blog.id = :blogid" ); q.setparameter("blogid", blogid); blog = (Blog) q.uniqueresult(); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); return blog; public List listblogsandrecentitems() throws HibernateException { Session session = _sessions.opensession(); Transaction tx = null; List result = null; try { tx = session.begintransaction(); Query q = session.createquery( "from Blog as blog " + "inner join blog.items as blogitem " + "where blogitem.datetime > :mindate" ); Calendar cal = Calendar.getInstance(); cal.roll(calendar.month, false); q.setcalendar("mindate", cal); 371

384 Chapter 25. Example: Weblog A... result = q.list(); tx.commit(); catch (HibernateException he) { if (tx!=null) tx.rollback(); throw he; finally { session.close(); return result; 372

385 Chapter 26. Example: Various Mappings This chapters explores some more complex association mappings Employer/Employee The following model of the relationship between Employer and Employee uses an entity class (Employment) to represent the association. You can do this when there might be more than one period of employment for the same two parties. Components are used to model monetary values and employee names. Here is a possible mapping document: <hibernate-mapping> <class name="employer" table="employers"> <id name="id"> <generator class="sequence"> <param name="sequence">employer_id_seq</param> </generator> </id> <property name="name"/> </class> <class name="employment" table="employment_periods"> <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"/> <component name="hourlyrate" class="monetaryamount"> <property name="amount"> <column name="hourly_rate" sql-type="numeric(12, 2)"/> </property> 373

386 Chapter 26. Example: Various... <property name="currency" length="12"/> </component> <many-to-one name="employer" column="employer_id" not-null="true"/> <many-to-one name="employee" column="employee_id" not-null="true"/> </class> <class name="employee" table="employees"> <id name="id"> <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> Here is the table schema generated by SchemaExport. create table employers ( id BIGINT not null, name VARCHAR(255), primary key (id) ) create table employment_periods ( id BIGINT not null, hourly_rate NUMERIC(12, 2), currency VARCHAR(12), employee_id BIGINT not null, employer_id BIGINT not null, end_date TIMESTAMP, start_date TIMESTAMP, primary key (id) ) create table employees ( id BIGINT not null, firstname VARCHAR(255), initial CHAR(1), lastname VARCHAR(255), taxfilenumber VARCHAR(255), primary key (id) ) alter table employment_periods add constraint employment_periodsfk0 foreign key (employer_id) references employers alter table employment_periods add constraint employment_periodsfk1 foreign key (employee_id) references employees 374

387 Author/Work create sequence employee_id_seq create sequence employment_id_seq create sequence employer_id_seq Author/Work Consider the following model of the relationships between Work, Author and Person. In the example, the relationship between Work and Author is represented as a many-to-many association and the relationship between Author and Person is represented as one-to-one association. Another possibility would be to have Author extend Person. The following mapping document correctly represents these relationships: <hibernate-mapping> <class name="work" table="works" discriminator-value="w"> <id name="id" column="id"> <generator class="native"/> </id> <discriminator column="type" type="character"/> <property name="title"/> <set name="authors" table="author_work"> <key column name="work_id"/> <many-to-many class="author" column name="author_id"/> </set> <subclass name="book" discriminator-value="b"> <property name="text"/> </subclass> 375

388 Chapter 26. Example: Various... <subclass name="song" discriminator-value="s"> <property name="tempo"/> <property name="genre"/> </subclass> </class> <class name="author" table="authors"> <id name="id" column="id"> <!-- The Author must have the same identifier as the Person --> <generator class="assigned"/> </id> <property name="alias"/> <one-to-one name="person" constrained="true"/> <set name="works" table="author_work" inverse="true"> <key column="author_id"/> <many-to-many class="work" column="work_id"/> </set> </class> <class name="person" table="persons"> <id name="id" column="id"> <generator class="native"/> </id> <property name="name"/> </class> </hibernate-mapping> There are four tables in this mapping: works, authors and persons hold work, author and person data respectively. author_work is an association table linking authors to works. Here is the table schema, as generated by SchemaExport: create table works ( id BIGINT not null generated by default as identity, tempo FLOAT, genre VARCHAR(255), text INTEGER, title VARCHAR(255), type CHAR(1) not null, primary key (id) ) create table author_work ( author_id BIGINT not null, work_id BIGINT not null, primary key (work_id, author_id) ) create table authors ( id BIGINT not null generated by default as identity, 376

389 Customer/Order/Product ) alias VARCHAR(255), primary key (id) create table persons ( id BIGINT not null generated by default as identity, name VARCHAR(255), primary key (id) ) alter table authors add constraint authorsfk0 foreign key (id) references persons alter table author_work add constraint author_workfk0 foreign key (author_id) references authors alter table author_work add constraint author_workfk1 foreign key (work_id) references works Customer/Order/Product In this section we consider a model of the relationships between Customer, Order, Line Item and Product. There is a one-to-many association between Customer and Order, but how can you represent Order / LineItem / Product? In the example, LineItem is mapped as an association class representing the many-to-many association between Order and Product. In Hibernate this is called a composite element. The mapping document will look like this: <hibernate-mapping> <class name="customer" table="customers"> <id name="id"> <generator class="native"/> </id> <property name="name"/> <set name="orders" inverse="true"> <key column="customer_id"/> <one-to-many class="order"/> </set> </class> <class name="order" table="orders"> <id name="id"> <generator class="native"/> </id> 377

Hibernate Reference Documentation. Version: 3.2.2

Hibernate Reference Documentation. Version: 3.2.2 Hibernate Reference Documentation Version: 3.2.2 Table of Contents Preface... ix 1. Introduction to Hibernate... 1 1.1. Preface... 1 1.2. Part 1 - The first Hibernate Application... 1 1.2.1. The first

More information

JBoss Enterprise Application Platform 4.3

JBoss Enterprise Application Platform 4.3 JBoss Enterprise Application Platform 4.3 Hibernate Reference Guide Edition 4.3.10 for Use with JBoss Enterprise Application Platform 4.3 Last Updated: 2017-10-13 JBoss Enterprise Application Platform

More information

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration

foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration contents foreword to the first edition preface xxi acknowledgments xxiii about this book xxv about the cover illustration xix xxxii PART 1 GETTING STARTED WITH ORM...1 1 2 Understanding object/relational

More information

object/relational persistence What is persistence? 5

object/relational persistence What is persistence? 5 contents foreword to the revised edition xix foreword to the first edition xxi preface to the revised edition xxiii preface to the first edition xxv acknowledgments xxviii about this book xxix about the

More information

Lightweight J2EE Framework

Lightweight J2EE Framework Lightweight J2EE Framework Struts, spring, hibernate Software System Design Zhu Hongjun Session 4: Hibernate DAO Refresher in Enterprise Application Architectures Traditional Persistence and Hibernate

More information

International Journal of Advance Research in Engineering, Science & Technology HIBERNATE FRAMEWORK FOR ENTERPRISE APPLICATION

International Journal of Advance Research in Engineering, Science & Technology HIBERNATE FRAMEWORK FOR ENTERPRISE APPLICATION Impact Factor (SJIF): 3.632 International Journal of Advance Research in Engineering, Science & Technology e-issn: 2393-9877, p-issn: 2394-2444 Volume 4, Issue 3, March-2017 HIBERNATE FRAMEWORK FOR ENTERPRISE

More information

find() method, 178 forclass() method, 162 getcurrentsession(), 16 getexecutablecriteria() method, 162 get() method, 17, 177 getreference() method, 178

find() method, 178 forclass() method, 162 getcurrentsession(), 16 getexecutablecriteria() method, 162 get() method, 17, 177 getreference() method, 178 Index A accessor() method, 58 Address entity, 91, 100 @AllArgsConstructor annotations, 106 107 ArrayList collection, 110 Arrays, 116 Associated objects createalias() method, 165 166 createcriteria() method,

More information

Hibernate Interview Questions

Hibernate Interview Questions Hibernate Interview Questions 1. What is Hibernate? Hibernate is a powerful, high performance object/relational persistence and query service. This lets the users to develop persistent classes following

More information

indx.qxd 11/3/04 3:34 PM Page 339 Index

indx.qxd 11/3/04 3:34 PM Page 339 Index indx.qxd 11/3/04 3:34 PM Page 339 Index *.hbm.xml files, 30, 86 @ tags (XDoclet), 77 86 A Access attributes, 145 155, 157 165, 171 ACID (atomic, consistent, independent, and durable), 271 AddClass() method,

More information

Spring & Hibernate. Knowledge of database. And basic Knowledge of web application development. Module 1: Spring Basics

Spring & Hibernate. Knowledge of database. And basic Knowledge of web application development. Module 1: Spring Basics Spring & Hibernate Overview: The spring framework is an application framework that provides a lightweight container that supports the creation of simple-to-complex components in a non-invasive fashion.

More information

Pro JPA 2. Mastering the Java Persistence API. Apress* Mike Keith and Merrick Schnicariol

Pro JPA 2. Mastering the Java Persistence API. Apress* Mike Keith and Merrick Schnicariol Pro JPA 2 Mastering the Java Persistence API Mike Keith and Merrick Schnicariol Apress* Gootents at a Glance g V Contents... ; v Foreword _ ^ Afooyt the Author XXj About the Technical Reviewer.. *....

More information

1 st Step. Prepare the class to be persistent:

1 st Step. Prepare the class to be persistent: 1 st Step Prepare the class to be persistent: Add a surrogate id field, usually int, long, Integer, Long. Encapsulate fields (properties) using exclusively getter and setter methods. Make the setter of

More information

Chapter 3. Harnessing Hibernate

Chapter 3. Harnessing Hibernate Chapter 3. Harnessing Hibernate hibernate.cfg.xml session.save() session.createquery( from Track as track ) session.getnamedquery( tracksnolongerthan ); 1 / 20 Configuring Hibernate using XML (hibernate.cfg.xml)...

More information

Introduction to Session beans. EJB - continued

Introduction to Session beans. EJB - continued Introduction to Session beans EJB - continued Local Interface /** * This is the HelloBean local interface. * * This interface is what local clients operate * on when they interact with EJB local objects.

More information

Lightweight J2EE Framework

Lightweight J2EE Framework Lightweight J2EE Framework Struts, spring, hibernate Software System Design Zhu Hongjun Session 5: Hibernate DAO Transaction Management and Concurrency Hibernate Querying Batch Processing Data Filtering

More information

Step By Step Guideline for Building & Running HelloWorld Hibernate Application

Step By Step Guideline for Building & Running HelloWorld Hibernate Application Step By Step Guideline for Building & Running HelloWorld Hibernate Application 1 What we are going to build A simple Hibernate application persisting Person objects The database table, person, has the

More information

Enterprise JavaBeans 3.1

Enterprise JavaBeans 3.1 SIXTH EDITION Enterprise JavaBeans 3.1 Andrew Lee Rubinger and Bill Burke O'REILLY* Beijing Cambridge Farnham Kbln Sebastopol Tokyo Table of Contents Preface xv Part I. Why Enterprise JavaBeans? 1. Introduction

More information

Installing MySQL. Hibernate: Setup, Use, and Mapping file. Setup Hibernate in IDE. Starting WAMP server. phpmyadmin web console

Installing MySQL. Hibernate: Setup, Use, and Mapping file. Setup Hibernate in IDE. Starting WAMP server. phpmyadmin web console Installing MySQL Hibernate: Setup, Use, and Mapping file B.Tech. (IT), Sem-6, Applied Design Patterns and Application Frameworks (ADPAF) Dharmsinh Desai University Prof. H B Prajapati Way 1 Install from

More information

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX

Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Introduction to Web Application Development Using JEE, Frameworks, Web Services and AJAX Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject

More information

Fast Track to EJB 3.0 and the JPA Using JBoss

Fast Track to EJB 3.0 and the JPA Using JBoss Fast Track to EJB 3.0 and the JPA Using JBoss The Enterprise JavaBeans 3.0 specification is a deep overhaul of the EJB specification that is intended to improve the EJB architecture by reducing its complexity

More information

Unit 6 Hibernate. List the advantages of hibernate over JDBC

Unit 6 Hibernate. List the advantages of hibernate over JDBC Q1. What is Hibernate? List the advantages of hibernate over JDBC. Ans. Hibernate is used convert object data in JAVA to relational database tables. It is an open source Object-Relational Mapping (ORM)

More information

Java Object/Relational Persistence with Hibernate. David Lucek 11 Jan 2005

Java Object/Relational Persistence with Hibernate. David Lucek 11 Jan 2005 Java Object/Relational Persistence with Hibernate David Lucek 11 Jan 2005 Object Relational Persistence Maps objects in your Model to a datastore, normally a relational database. Why? EJB Container Managed

More information

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline

Call: JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline JSP Spring Hibernate Webservice Course Content:35-40hours Course Outline Advanced Java Database Programming JDBC overview SQL- Structured Query Language JDBC Programming Concepts Query Execution Scrollable

More information

Generating A Hibernate Mapping File And Java Classes From The Sql Schema

Generating A Hibernate Mapping File And Java Classes From The Sql Schema Generating A Hibernate Mapping File And Java Classes From The Sql Schema Internally, hibernate maps from Java classes to database tables (and from It also provides data query and retrieval facilities by

More information

Mappings and Queries. with. Hibernate

Mappings and Queries. with. Hibernate Mappings and Queries with Hibernate Mappings Collection mapping Mapping collection of values e.g. holidays, months Association mapping Mapping of relationships between two objects e.g. Account and AccountOwner

More information

Java SE7 Fundamentals

Java SE7 Fundamentals Java SE7 Fundamentals Introducing the Java Technology Relating Java with other languages Showing how to download, install, and configure the Java environment on a Windows system. Describing the various

More information

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java

COURSE DETAILS: CORE AND ADVANCE JAVA Core Java COURSE DETAILS: CORE AND ADVANCE JAVA Core Java 1. Object Oriented Concept Object Oriented Programming & its Concepts Classes and Objects Aggregation and Composition Static and Dynamic Binding Abstract

More information

Enterprise JavaBeans, Version 3 (EJB3) Programming

Enterprise JavaBeans, Version 3 (EJB3) Programming Enterprise JavaBeans, Version 3 (EJB3) Programming Description Audience This course teaches developers how to write Java Enterprise Edition (JEE) applications that use Enterprise JavaBeans, version 3.

More information

Table of Contents - Fast Track to Hibernate 3

Table of Contents - Fast Track to Hibernate 3 Table of Contents - Fast Track to Hibernate 3 Fast Track to Hibernate 1 Workshop Overview and Objectives 2 Workshop Agenda 3 Release Level 4 Typographic Conventions 5 Labs 6 Session 1: Introduction to

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 35 hours Price: $750 Delivery Option: Attend training via an on-demand, self-paced platform paired with personal instructor facilitation.

More information

Web Application Development Using JEE, Enterprise JavaBeans and JPA

Web Application Development Using JEE, Enterprise JavaBeans and JPA Web Application Development Using JEE, Enterprise Java and JPA Duration: 5 days Price: $2795 *California residents and government employees call for pricing. Discounts: We offer multiple discount options.

More information

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p.

Implementing a Web Service p. 110 Implementing a Web Service Client p. 114 Summary p. 117 Introduction to Entity Beans p. 119 Persistence Concepts p. Acknowledgments p. xvi Introduction p. xvii Overview p. 1 Overview p. 3 The Motivation for Enterprise JavaBeans p. 4 Component Architectures p. 7 Divide and Conquer to the Extreme with Reusable Services

More information

The Object-Oriented Paradigm. Employee Application Object. The Reality of DBMS. Employee Database Table. From Database to Application.

The Object-Oriented Paradigm. Employee Application Object. The Reality of DBMS. Employee Database Table. From Database to Application. The Object-Oriented Paradigm CS422 Principles of Database Systems Object-Relational Mapping (ORM) Chengyu Sun California State University, Los Angeles The world consists of objects So we use object-oriented

More information

Java J Course Outline

Java J Course Outline JAVA EE - J2SE - CORE JAVA After all having a lot number of programming languages. Why JAVA; yet another language!!! AND NOW WHY ONLY JAVA??? CHAPTER 1: INTRODUCTION What is Java? History Versioning The

More information

Java EE Application Assembly & Deployment Packaging Applications, Java EE modules. Model View Controller (MVC)2 Architecture & Packaging EJB Module

Java EE Application Assembly & Deployment Packaging Applications, Java EE modules. Model View Controller (MVC)2 Architecture & Packaging EJB Module Java Platform, Enterprise Edition 5 (Java EE 5) Core Java EE Java EE 5 Platform Overview Java EE Platform Distributed Multi tiered Applications Java EE Web & Business Components Java EE Containers services

More information

HIBERNATE - INTERCEPTORS

HIBERNATE - INTERCEPTORS HIBERNATE - INTERCEPTORS http://www.tutorialspoint.com/hibernate/hibernate_interceptors.htm Copyright tutorialspoint.com As you have learnt that in Hibernate, an object will be created and persisted. Once

More information

Hibernate in close action. INF5750/ Lecture 3 (Part III)

Hibernate in close action. INF5750/ Lecture 3 (Part III) Hibernate in close action INF5750/9750 - Lecture 3 (Part III) Recalling Hibernate from Lect 2 Hibernate is an ORM tool? Hibernate can communication with different DBMS through? (mentioned in hibernate.properties)

More information

CO Java EE 6: Develop Database Applications with JPA

CO Java EE 6: Develop Database Applications with JPA CO-77746 Java EE 6: Develop Database Applications with JPA Summary Duration 4 Days Audience Database Developers, Java EE Developers Level Professional Technology Java EE 6 Delivery Method Instructor-led

More information

Index. setmaxresults() method, 169 sorting, 170 SQL DISTINCT query, 171 uniqueresult() method, 169

Index. setmaxresults() method, 169 sorting, 170 SQL DISTINCT query, 171 uniqueresult() method, 169 Index A Annotations Hibernate mappings, 81, 195 Hibernate-specific persistence annotations Immutable annotation, 109 natural ID, 110 Hibernate XML configuration file, 108 JPA 2 persistence (see JPA 2 persistence

More information

Page 1

Page 1 Java 1. Core java a. Core Java Programming Introduction of Java Introduction to Java; features of Java Comparison with C and C++ Download and install JDK/JRE (Environment variables set up) The JDK Directory

More information

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using Spring, Hibernate and JPA Web Application Development Using Spring, Hibernate and JPA Duration: 5 Days US Price: $2795 UK Price: 1,995 *Prices are subject to VAT CA Price: CDN$3,275 *Prices are subject to GST/HST Delivery Options:

More information

Supports 1-1, 1-many, and many to many relationships between objects

Supports 1-1, 1-many, and many to many relationships between objects Author: Bill Ennis TOPLink provides container-managed persistence for BEA Weblogic. It has been available for Weblogic's application server since Weblogic version 4.5.1 released in December, 1999. TOPLink

More information

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using Spring, Hibernate and JPA Web Application Development Using Spring, Hibernate and JPA Duration: 5 Days Price: 1,995 + VAT Course Description: This course provides a comprehensive introduction to JPA (the Java Persistence API),

More information

Web Application Development Using Spring, Hibernate and JPA

Web Application Development Using Spring, Hibernate and JPA Web Application Development Using Spring, Hibernate and JPA Duration: 5 Days Price: CDN$3275 *Prices are subject to GST/HST Course Description: This course provides a comprehensive introduction to JPA

More information

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP

JAVA COURSES. Empowering Innovation. DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP 2013 Empowering Innovation DN InfoTech Pvt. Ltd. H-151, Sector 63, Noida, UP contact@dninfotech.com www.dninfotech.com 1 JAVA 500: Core JAVA Java Programming Overview Applications Compiler Class Libraries

More information

Java EE Architecture, Part Three. Java EE architecture, part three 1(57)

Java EE Architecture, Part Three. Java EE architecture, part three 1(57) Java EE Architecture, Part Three Java EE architecture, part three 1(57) Content Requirements on the Integration layer The Database Access Object, DAO Pattern Frameworks for the Integration layer Java EE

More information

Java- EE Web Application Development with Enterprise JavaBeans and Web Services

Java- EE Web Application Development with Enterprise JavaBeans and Web Services Java- EE Web Application Development with Enterprise JavaBeans and Web Services Duration:60 HOURS Price: INR 8000 SAVE NOW! INR 7000 until December 1, 2011 Students Will Learn How to write Session, Message-Driven

More information

Setting Schema Name For Native Queries In. Hibernate >>>CLICK HERE<<<

Setting Schema Name For Native Queries In. Hibernate >>>CLICK HERE<<< Setting Schema Name For Native Queries In Hibernate Executing a Oracle native query with container managed datasource By default in Oracle I need to specify the schema in the table name to make a query,

More information

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution:

TOPLink for WebLogic. Whitepaper. The Challenge: The Solution: Whitepaper The Challenge: Enterprise JavaBeans (EJB) represents a new standard in enterprise computing: a component-based architecture for developing and deploying distributed object-oriented applications

More information

"Charting the Course... Mastering EJB 3.0 Applications. Course Summary

Charting the Course... Mastering EJB 3.0 Applications. Course Summary Course Summary Description Our training is technology centric. Although a specific application server product will be used throughout the course, the comprehensive labs and lessons geared towards teaching

More information

JAVA. Duration: 2 Months

JAVA. Duration: 2 Months JAVA Introduction to JAVA History of Java Working of Java Features of Java Download and install JDK JDK tools- javac, java, appletviewer Set path and how to run Java Program in Command Prompt JVM Byte

More information

Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB. Marc Stampfli Oracle Software (Switzerland) Ltd.

Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB. Marc Stampfli Oracle Software (Switzerland) Ltd. Efficient Object-Relational Mapping for JAVA and J2EE Applications or the impact of J2EE on RDB Marc Stampfli Oracle Software (Switzerland) Ltd. Underestimation According to customers about 20-50% percent

More information

Spring Persistence. with Hibernate PAUL TEPPER FISHER BRIAN D. MURPHY

Spring Persistence. with Hibernate PAUL TEPPER FISHER BRIAN D. MURPHY Spring Persistence with Hibernate PAUL TEPPER FISHER BRIAN D. MURPHY About the Authors About the Technical Reviewer Acknowledgments xii xiis xiv Preface xv Chapter 1: Architecting Your Application with

More information

[Course Overview] After completing this module you are ready to: Develop Desktop applications, Networking & Multi-threaded programs in java.

[Course Overview] After completing this module you are ready to: Develop Desktop applications, Networking & Multi-threaded programs in java. [Course Overview] The Core Java technologies and application programming interfaces (APIs) are the foundation of the Java Platform, Standard Edition (Java SE). They are used in all classes of Java programming,

More information

Developing Applications with Java EE 6 on WebLogic Server 12c

Developing Applications with Java EE 6 on WebLogic Server 12c Developing Applications with Java EE 6 on WebLogic Server 12c Duration: 5 Days What you will learn The Developing Applications with Java EE 6 on WebLogic Server 12c course teaches you the skills you need

More information

/ / JAVA TRAINING

/ / JAVA TRAINING www.tekclasses.com +91-8970005497/+91-7411642061 info@tekclasses.com / contact@tekclasses.com JAVA TRAINING If you are looking for JAVA Training, then Tek Classes is the right place to get the knowledge.

More information

NetBeans IDE Field Guide

NetBeans IDE Field Guide NetBeans IDE Field Guide Copyright 2005 Sun Microsystems, Inc. All rights reserved. Table of Contents Extending Web Applications with Business Logic: Introducing EJB Components...1 EJB Project type Wizards...2

More information

Chapter 1 Introducing EJB 1. What is Java EE Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7

Chapter 1 Introducing EJB 1. What is Java EE Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7 CONTENTS Chapter 1 Introducing EJB 1 What is Java EE 5...2 Java EE 5 Components... 2 Java EE 5 Clients... 4 Java EE 5 Containers...4 Introduction to EJB...5 Need of EJB...6 Types of Enterprise Beans...7

More information

Hibernate Quickly by Patrick Peak and Nick Heudecker Chapter 3

Hibernate Quickly by Patrick Peak and Nick Heudecker Chapter 3 Hibernate Quickly by Patrick Peak and Nick Heudecker Chapter 3 Brief contents 1 Why Hibernate? 1 2 Installing and building projects with Ant 26 3 Hibernate basics 50 4 Associations and components 88 5

More information

HIBERNATE - SORTEDSET MAPPINGS

HIBERNATE - SORTEDSET MAPPINGS HIBERNATE - SORTEDSET MAPPINGS http://www.tutorialspoint.com/hibernate/hibernate_sortedset_mapping.htm Copyright tutorialspoint.com A SortedSet is a java collection that does not contain any duplicate

More information

Object-relational mapping EJB and Hibernate

Object-relational mapping EJB and Hibernate T A R T U Ü L I K O O L MATEMAATIKA-INFORMAATIKATEADUSKOND Arvutiteaduse instituut Infotehnoloogia eriala Aleksandr Tkatšenko Object-relational mapping EJB and Hibernate Referaat aines Tarkvaratehnika

More information

Understanding Impact of J2EE Applications On Relational Databases. Dennis Leung, VP Development Oracle9iAS TopLink Oracle Corporation

Understanding Impact of J2EE Applications On Relational Databases. Dennis Leung, VP Development Oracle9iAS TopLink Oracle Corporation Understanding Impact of J2EE Applications On Relational Databases Dennis Leung, VP Development Oracle9iAS TopLink Oracle Corporation J2EE Apps and Relational Data J2EE is one of leading technologies used

More information

Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1

Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1 Introduction... xv SECTION 1: DEVELOPING DESKTOP APPLICATIONS USING JAVA Chapter 1: Getting Started with Java... 1 Introducing Object Oriented Programming... 2 Explaining OOP concepts... 2 Objects...3

More information

Module 8 The Java Persistence API

Module 8 The Java Persistence API Module 8 The Java Persistence API Objectives Describe the role of the Java Persistence API (JPA) in a Java EE application Describe the basics of Object Relational Mapping Describe the elements and environment

More information

ADVANCED JAVA TRAINING IN BANGALORE

ADVANCED JAVA TRAINING IN BANGALORE ADVANCED JAVA TRAINING IN BANGALORE TIB ACADEMY #5/3 BEML LAYOUT, VARATHUR MAIN ROAD KUNDALAHALLI GATE, BANGALORE 560066 PH: +91-9513332301/2302 www.traininginbangalore.com 2EE Training Syllabus Java EE

More information

Java Enterprise Edition

Java Enterprise Edition Java Enterprise Edition The Big Problem Enterprise Architecture: Critical, large-scale systems Performance Millions of requests per day Concurrency Thousands of users Transactions Large amounts of data

More information

Java EE Architecture, Part Three. Java EE architecture, part three 1(69)

Java EE Architecture, Part Three. Java EE architecture, part three 1(69) Java EE Architecture, Part Three Java EE architecture, part three 1(69) Content Requirements on the Integration layer The Database Access Object, DAO Pattern Frameworks for the Integration layer Java EE

More information

com Spring + Spring-MVC + Spring-Boot + Design Pattern + XML + JMS Hibernate + Struts + Web Services = 8000/-

com Spring + Spring-MVC + Spring-Boot + Design Pattern + XML + JMS Hibernate + Struts + Web Services = 8000/- www.javabykiran. com 8888809416 8888558802 Spring + Spring-MVC + Spring-Boot + Design Pattern + XML + JMS Hibernate + Struts + Web Services = 8000/- Java by Kiran J2EE SYLLABUS Servlet JSP XML Servlet

More information

Type of Classes Nested Classes Inner Classes Local and Anonymous Inner Classes

Type of Classes Nested Classes Inner Classes Local and Anonymous Inner Classes Java CORE JAVA Core Java Programing (Course Duration: 40 Hours) Introduction to Java What is Java? Why should we use Java? Java Platform Architecture Java Virtual Machine Java Runtime Environment A Simple

More information

Table of Index Hadoop for Developers Hibernate: Using Hibernate For Java Database Access HP FlexNetwork Fundamentals, Rev. 14.21 HP Navigating the Journey to Cloud, Rev. 15.11 HP OneView 1.20 Rev.15.21

More information

Chapter 2. Introduction to Mapping

Chapter 2. Introduction to Mapping Chapter 2. Introduction to Mapping 1 / 20 Class and Table Generation of Track TRACK id title filepath

More information

HIBERNATE - MANY-TO-ONE MAPPINGS

HIBERNATE - MANY-TO-ONE MAPPINGS HIBERNATE - MANY-TO-ONE MAPPINGS http://www.tutorialspoint.com/hibernate/hibernate_many_to_one_mapping.htm Copyright tutorialspoint.com A many-to-one association is the most common kind of association

More information

SDN Community Contribution

SDN Community Contribution SDN Community Contribution (This is not an official SAP document.) Disclaimer & Liability Notice This document may discuss sample coding or other information that does not include SAP official interfaces

More information

Hibernate in Action CHRISTIAN BAUER GAVIN KING MANNING. Greenwich (74" w. long.)

Hibernate in Action CHRISTIAN BAUER GAVIN KING MANNING. Greenwich (74 w. long.) Hibernate in Action CHRISTIAN BAUER GAVIN KING M MANNING Greenwich (74" w. long.) foreword xi preface xiii ncknowledgrnents xu about this book xvi about Hibernate3 and EJB 3 xx nuthor online xxi about

More information

HIBERNATE MOCK TEST HIBERNATE MOCK TEST IV

HIBERNATE MOCK TEST HIBERNATE MOCK TEST IV http://www.tutorialspoint.com HIBERNATE MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to Hibernate Framework. You can download these sample mock tests

More information

Middleware for Heterogeneous and Distributed Information Systems Sample Solution Exercise Sheet 5

Middleware for Heterogeneous and Distributed Information Systems Sample Solution Exercise Sheet 5 AG Heterogene Informationssysteme Prof. Dr.-Ing. Stefan Deßloch Fachbereich Informatik Technische Universität Kaiserslautern Middleware for Heterogeneous and Distributed Information Systems Sample Solution

More information

HIBERNATE - ONE-TO-ONE MAPPINGS

HIBERNATE - ONE-TO-ONE MAPPINGS HIBERNATE - ONE-TO-ONE MAPPINGS http://www.tutorialspoint.com/hibernate/hibernate_one_to_one_mapping.htm Copyright tutorialspoint.com A one-to-one association is similar to many-to-one association with

More information

Courses For Event Java Advanced Summer Training 2018

Courses For Event Java Advanced Summer Training 2018 Courses For Event Java Advanced Summer Training 2018 Java Fundamentals Oracle Java SE 8 Advanced Java Training Java Advanced Expert Edition Topics For Java Fundamentals Variables Data Types Operators Part

More information

HIBERNATE - COMPONENT MAPPINGS

HIBERNATE - COMPONENT MAPPINGS HIBERNATE - COMPONENT MAPPINGS http://www.tutorialspoint.com/hibernate/hibernate_component_mappings.htm Copyright tutorialspoint.com A Component mapping is a mapping for a class having a reference to another

More information

The dialog boxes Import Database Schema, Import Hibernate Mappings and Import Entity EJBs are used to create annotated Java classes and persistence.

The dialog boxes Import Database Schema, Import Hibernate Mappings and Import Entity EJBs are used to create annotated Java classes and persistence. Schema Management In Hibernate Mapping Different Automatic schema generation with SchemaExport Managing the cache Implementing MultiTenantConnectionProvider using different connection pools, 16.3. Hibernate

More information

STARCOUNTER. Technical Overview

STARCOUNTER. Technical Overview STARCOUNTER Technical Overview Summary 3 Introduction 4 Scope 5 Audience 5 Prerequisite Knowledge 5 Virtual Machine Database Management System 6 Weaver 7 Shared Memory 8 Atomicity 8 Consistency 9 Isolation

More information

This course is intended for Java programmers who wish to write programs using many of the advanced Java features.

This course is intended for Java programmers who wish to write programs using many of the advanced Java features. COURSE DESCRIPTION: Advanced Java is a comprehensive study of many advanced Java topics. These include assertions, collection classes, searching and sorting, regular expressions, logging, bit manipulation,

More information

Appendix A - Glossary(of OO software term s)

Appendix A - Glossary(of OO software term s) Appendix A - Glossary(of OO software term s) Abstract Class A class that does not supply an implementation for its entire interface, and so consequently, cannot be instantiated. ActiveX Microsoft s component

More information

Business Component Development with EJB Technology, Java EE 5

Business Component Development with EJB Technology, Java EE 5 Business Component Development with EJB Technology, Java EE 5 Student Guide SL-351-EE5 REV D.2 D61838GC10 Edition 1.0 D62447 Copyright 2008, 2009, Oracle and/or its affiliates. All rights reserved. Disclaimer

More information

Hibernate Tips More than 70 solutions to common Hibernate problems. Thorben Janssen

Hibernate Tips More than 70 solutions to common Hibernate problems. Thorben Janssen Hibernate Tips More than 70 solutions to common Hibernate problems Thorben Janssen Hibernate Tips: More than 70 solutions to common Hibernate problems 2017 Thorben Janssen. All rights reserved. Thorben

More information

ΠΙΝΑΚΑΣ ΠΛΑΝΟΥ ΕΚΠΑΙΔΕΥΣΗΣ

ΠΙΝΑΚΑΣ ΠΛΑΝΟΥ ΕΚΠΑΙΔΕΥΣΗΣ ΠΑΡΑΡΤΗΜΑ «Β» ΠΙΝΑΚΑΣ ΠΛΑΝΟΥ ΕΚΠΑΙΔΕΥΣΗΣ Α/Α ΠΕΡΙΓΡΑΦΗ ΕΚΠΑΙΔΕΥΣΗΣ ΘΕΜΑΤΙΚΕΣ ΕΝΟΤΗΤΕΣ 1. Java SE8 Fundamentals What Is a Java Program? Introduction to Computer Programs Key Features of the Java Language

More information

Spring Interview Questions

Spring Interview Questions Spring Interview Questions By Srinivas Short description: Spring Interview Questions for the Developers. @2016 Attune World Wide All right reserved. www.attuneww.com Contents Contents 1. Preface 1.1. About

More information

Chapter 6 Object Persistence, Relationships and Queries

Chapter 6 Object Persistence, Relationships and Queries Prof. Dr.-Ing. Stefan Deßloch AG Heterogene Informationssysteme Geb. 36, Raum 329 Tel. 0631/205 3275 dessloch@informatik.uni-kl.de Chapter 6 Object Persistence, Relationships and Queries Object Persistence

More information

Table of Contents EJB 3.1 and JPA 2

Table of Contents EJB 3.1 and JPA 2 Table of Contents EJB 3.1 and JPA 2 Enterprise JavaBeans and the Java Persistence API 1 Workshop Overview 2 Workshop Objectives 3 Workshop Agenda 4 Course Prerequisites 5 Labs 6 Session 1: Introduction

More information

JVA-163. Enterprise JavaBeans

JVA-163. Enterprise JavaBeans JVA-163. Enterprise JavaBeans Version 3.0.2 This course gives the experienced Java developer a thorough grounding in Enterprise JavaBeans -- the Java EE standard for scalable, secure, and transactional

More information

Java EE 7: Back-End Server Application Development

Java EE 7: Back-End Server Application Development Oracle University Contact Us: Local: 0845 777 7 711 Intl: +44 845 777 7 711 Java EE 7: Back-End Server Application Development Duration: 5 Days What you will learn The Java EE 7: Back-End Server Application

More information

1 OBJECT-ORIENTED PROGRAMMING 1

1 OBJECT-ORIENTED PROGRAMMING 1 PREFACE xvii 1 OBJECT-ORIENTED PROGRAMMING 1 1.1 Object-Oriented and Procedural Programming 2 Top-Down Design and Procedural Programming, 3 Problems with Top-Down Design, 3 Classes and Objects, 4 Fields

More information

Introduction to JPA. Fabio Falcinelli

Introduction to JPA. Fabio Falcinelli Introduction to JPA Fabio Falcinelli Me, myself and I Several years experience in active enterprise development I love to design and develop web and standalone applications using Python Java C JavaScript

More information

Object Persistence Design Guidelines

Object Persistence Design Guidelines Object Persistence Design Guidelines Motivation Design guideline supports architects and developers in design and development issues of binding object-oriented applications to data sources The major task

More information

Schema Null Cannot Be Resolved For Table Jpa

Schema Null Cannot Be Resolved For Table Jpa Schema Null Cannot Be Resolved For Table Jpa (14, 19) The abstract schema type 'Movie' is unknown. (28, 35) The state field path 'm.title' cannot be resolved to a valid type. at org.springframework.web.servlet.

More information

Course Description. Learn To: : Intro to JAVA SE7 and Programming using JAVA SE7. Course Outline ::

Course Description. Learn To: : Intro to JAVA SE7 and Programming using JAVA SE7. Course Outline :: Module Title Duration : Intro to JAVA SE7 and Programming using JAVA SE7 : 9 days Course Description The Java SE 7 Fundamentals course was designed to enable students with little or no programming experience

More information

CORE JAVA. Saying Hello to Java: A primer on Java Programming language

CORE JAVA. Saying Hello to Java: A primer on Java Programming language CORE JAVA Saying Hello to Java: A primer on Java Programming language Intro to Java & its features Why Java very famous? Types of applications that can be developed using Java Writing my first Java program

More information

Oracle TopLink. Developer s Guide, Volume 4 10g ( ) B September 2006 Understanding Non-Relational Mappings

Oracle TopLink. Developer s Guide, Volume 4 10g ( ) B September 2006 Understanding Non-Relational Mappings Oracle TopLink Developer s Guide, Volume 4 10g (10.1.3.1.0) B28218-01 September 2006 Understanding Non-Relational Mappings Oracle TopLink Developer s Guide, Volume 4, 10g (10.1.3.1.0) B28218-01 Copyright

More information

Java SE 8 Programming

Java SE 8 Programming Oracle University Contact Us: +52 1 55 8525 3225 Java SE 8 Programming Duration: 5 Days What you will learn This Java SE 8 Programming training covers the core language features and Application Programming

More information

Java SE 8 Programming

Java SE 8 Programming Java SE 8 Programming Training Calendar Date Training Time Location 16 September 2019 5 Days Bilginç IT Academy 28 October 2019 5 Days Bilginç IT Academy Training Details Training Time : 5 Days Capacity

More information