Hibernate Core Guide
An Introductory Guide for Hibernate with Red Hat JBoss Web Server 2.0.1
Abstract
Chapter 1. Hibernate Copy linkLink copied to clipboard!
1.1. About Hibernate Core Copy linkLink copied to clipboard!
1.2. Java Persistence API (JPA) Copy linkLink copied to clipboard!
1.2.1. About JPA Copy linkLink copied to clipboard!
1.2.2. Hibernate EntityManager Copy linkLink copied to clipboard!
1.2.3. Configuration Copy linkLink copied to clipboard!
1.2.3.1. Hibernate Configuration Properties Copy linkLink copied to clipboard!
| Property Name | Description |
|---|---|
| hibernate.dialect |
The classname of a Hibernate
org.hibernate.dialect.Dialect. Allows Hibernate to generate SQL optimized for a particular relational database.
In most cases Hibernate will be able to choose the correct
org.hibernate.dialect.Dialect implementation, based on the JDBC metadata returned by the JDBC driver.
|
| hibernate.show_sql |
Boolean. Writes all SQL statements to console. This is an alternative to setting the log category
org.hibernate.SQL to debug.
|
| hibernate.format_sql |
Boolean. Pretty print the SQL in the log and console.
|
| hibernate.default_schema |
Qualify unqualified table names with the given schema/tablespace in generated SQL.
|
| hibernate.default_catalog |
Qualifies unqualified table names with the given catalog in generated SQL.
|
| hibernate.session_factory_name |
The
org.hibernate.SessionFactory will be automatically bound to this name in JNDI after it has been created. For example, 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. The recommended value is between 0 and 3.
|
| hibernate.default_batch_fetch_size |
Sets a default size for Hibernate batch fetching of associations. The recommended values are
4, 8, and 16.
|
| hibernate.default_entity_mode |
Sets a default mode for entity representation for all sessions opened from this
SessionFactory. Values include: dynamic-map, dom4j, pojo.
|
| hibernate.order_updates |
Boolean. 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.
|
| hibernate.generate_statistics |
Boolean. If enabled, Hibernate will collect statistics useful for performance tuning.
|
| hibernate.use_identifier_rollback |
Boolean. If enabled, generated identifier properties will be reset to default values when objects are deleted.
|
| hibernate.use_sql_comments |
Boolean. If turned on, Hibernate will generate comments inside the SQL, for easier debugging. Default value is
false.
|
| hibernate.id.new_generator_mappings |
Boolean. This property is relevant when using
@GeneratedValue. 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 value is true.
|
Important
hibernate.id.new_generator_mappings, new applications should keep the default value of true. Existing applications that used Hibernate 3.3.x may need to change it to false to continue using a sequence object or table based generator, and maintain backward compatibility.
1.2.3.2. Hibernate JDBC and Connection Properties Copy linkLink copied to clipboard!
| Property Name | Description |
|---|---|
| hibernate.jdbc.fetch_size |
A non-zero value that determines the JDBC fetch size (calls
Statement.setFetchSize()).
|
| hibernate.jdbc.batch_size |
A non-zero value enables use of JDBC2 batch updates by Hibernate. The recommended values are between
5 and 30.
|
| hibernate.jdbc.batch_versioned_data |
Boolean. Set this property to
true if the JDBC driver returns correct row counts from executeBatch(). Hibernate will then use batched DML for automatically versioned data. Default value is to false.
|
| hibernate.jdbc.factory_class |
Select a custom
org.hibernate.jdbc.Batcher. Most applications will not need this configuration property.
|
| hibernate.jdbc.use_scrollable_resultset |
Boolean. Enables use of JDBC2 scrollable resultsets by Hibernate. This property is only necessary when using user-supplied JDBC connections. Hibernate uses connection metadata otherwise.
|
| hibernate.jdbc.use_streams_for_binary |
Boolean. This is a system-level property. Use streams when writing/reading
binary or serializable types to/from JDBC.
|
| hibernate.jdbc.use_get_generated_keys |
Boolean. Enables use of JDBC3
PreparedStatement.getGeneratedKeys() to retrieve natively generated keys after insert. Requires JDBC3+ driver and JRE1.4+. Set to false if JDBC driver has problems with the Hibernate identifier generators. By default, it tries to determine the driver capabilities using connection metadata.
|
| hibernate.connection.provider_class |
The classname of a custom
org.hibernate.connection.ConnectionProvider which provides JDBC connections to Hibernate.
|
| 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. Standard values are 1, 2, 4, 8.
|
| hibernate.connection.autocommit |
Boolean. This property is not recommended for use. Enables autocommit for JDBC pooled connections.
|
| 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. The default value
auto will choose after_statement for the JTA and CMT transaction strategies, and after_transaction for the JDBC transaction strategy.
Available values are
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.
|
| hibernate.connection.<propertyName> |
Pass the JDBC property <propertyName> to
DriverManager.getConnection().
|
| hibernate.jndi.<propertyName> |
Pass the property <propertyName> to the JNDI
InitialContextFactory.
|
1.2.3.3. Hibernate Cache Properties Copy linkLink copied to clipboard!
| Property Name | Description |
|---|---|
hibernate.cache.region.factory_class |
The classname of a custom
CacheProvider.
|
hibernate.cache.use_minimal_puts |
Boolean. 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.
|
hibernate.cache.use_query_cache |
Boolean. Enables the query cache. Individual queries still have to be set cacheable.
|
hibernate.cache.use_second_level_cache |
Boolean. Used to completely disable the second level cache, which is enabled by default for classes that specify a
<cache> mapping.
|
hibernate.cache.query_cache_factory |
The classname of a custom
QueryCache interface. The default value is the built-in StandardQueryCache.
|
hibernate.cache.region_prefix |
A prefix to use for second-level cache region names.
|
hibernate.cache.use_structured_entries |
Boolean. Forces Hibernate to store data in the second-level cache in a more human-friendly format.
|
hibernate.cache.default_cache_concurrency_strategy |
Setting used to give the name of the default
org.hibernate.annotations.CacheConcurrencyStrategy to use when either @Cacheable or @Cache is used. @Cache(strategy="..") is used to override this default.
|
1.2.3.4. Hibernate Transaction Properties Copy linkLink copied to clipboard!
| Property Name | Description |
|---|---|
hibernate.transaction.factory_class |
The classname of a
TransactionFactory to use with Hibernate Transaction API. Defaults to JDBCTransactionFactory).
|
jta.UserTransaction |
A JNDI name used by
JTATransactionFactory to obtain the JTA UserTransaction from the application server.
|
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.
|
hibernate.transaction.flush_before_completion |
Boolean. 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.
|
hibernate.transaction.auto_close_session |
Boolean. If enabled, the session will be automatically closed during the after completion phase of the transaction. Built-in and automatic session context management is preferred.
|
1.2.3.5. Miscellaneous Hibernate Properties Copy linkLink copied to clipboard!
| Property Name | Description |
|---|---|
hibernate.current_session_context_class |
Supply a custom strategy for the scoping of the "current"
Session. Values include jta | thread | managed | custom.Class.
|
hibernate.query.factory_class |
Chooses the HQL parser implementation:
org.hibernate.hql.internal.ast.ASTQueryTranslatorFactory or org.hibernate.hql.internal.classic.ClassicQueryTranslatorFactory.
|
hibernate.query.substitutions |
Used to map from tokens in Hibernate queries to SQL tokens (tokens might be function or literal names). For example,
hqlLiteral=SQL_LITERAL, hqlFunction=SQLFUNC.
|
hibernate.hbm2ddl.auto |
Automatically validates or exports schema DDL to the database when the
SessionFactory is created. With create-drop, the database schema will be dropped when the SessionFactory is closed explicitly. Property value options are validate | update | create | create-drop
|
hibernate.hbm2ddl.import_files |
Comma-separated names of the optional files containing SQL DML statements executed during the
SessionFactory creation. This is useful for testing or demonstrating. For example, by adding INSERT statements, the database can be populated with a minimal set of data when it is deployed. An example value is /humans.sql,/dogs.sql.
File order matters, as the statements of a given file are executed before the statements of the following files. These statements are only executed if the schema is created (i.e. if
hibernate.hbm2ddl.auto is set to create or create-drop).
|
hibernate.hbm2ddl.import_files_sql_extractor |
The classname of a custom
ImportSqlCommandExtractor. Defaults to the built-in SingleLineSqlCommandExtractor. This is useful for implementing a dedicated parser that extracts a single SQL statement from each import file. Hibernate also provides MultipleLinesSqlCommandExtractor, which supports instructions/comments and quoted strings spread over multiple lines (mandatory semicolon at the end of each statement).
|
hibernate.bytecode.use_reflection_optimizer |
Boolean. This is a system-level property, which cannot be set in the
hibernate.cfg.xml file. Enables the use of bytecode manipulation instead of runtime reflection. Reflection can sometimes be useful when troubleshooting. Hibernate always requires either CGLIB or javassist even if the optimizer is turned off.
|
hibernate.bytecode.provider |
Both javassist or cglib can be used as byte manipulation engines. The default is
javassist. Property value is either javassist or cglib
|
1.2.3.6. Hibernate SQL Dialects Copy linkLink copied to clipboard!
Important
hibernate.dialect property should be set to the correct org.hibernate.dialect.Dialect subclass for the application database. If a dialect is specified, Hibernate will use sensible defaults for some of the other properties. This means that they do not have to be specified manually.
| RDBMS | Dialect |
|---|---|
| DB2 | org.hibernate.dialect.DB2Dialect |
| DB2 AS/400 | org.hibernate.dialect.DB2400Dialect |
| DB2 OS390 | org.hibernate.dialect.DB2390Dialect |
| Firebird | org.hibernate.dialect.FirebirdDialect |
| FrontBase | org.hibernate.dialect.FrontbaseDialect |
| H2 Database | org.hibernate.dialect.H2Dialect |
| HypersonicSQL | org.hibernate.dialect.HSQLDialect |
| Informix | org.hibernate.dialect.InformixDialect |
| Ingres | org.hibernate.dialect.IngresDialect |
| Interbase | org.hibernate.dialect.InterbaseDialect |
| Mckoi SQL | org.hibernate.dialect.MckoiDialect |
| Microsoft SQL Server 2000 | org.hibernate.dialect.SQLServerDialect |
| Microsoft SQL Server 2005 | org.hibernate.dialect.SQLServer2005Dialect |
| Microsoft SQL Server 2008 | org.hibernate.dialect.SQLServer2008Dialect |
| Microsoft SQL Server 2012 | org.hibernate.dialect.SQLServer2008Dialect |
| MySQL5 | org.hibernate.dialect.MySQL5Dialect |
| MySQL5 with InnoDB | org.hibernate.dialect.MySQL5InnoDBDialect |
| MySQL with MyISAM | org.hibernate.dialect.MySQLMyISAMDialect |
| Oracle (any version) | org.hibernate.dialect.OracleDialect |
| Oracle 9i | org.hibernate.dialect.Oracle9iDialect |
| Oracle 10g | org.hibernate.dialect.Oracle10gDialect |
| Oracle 11g | org.hibernate.dialect.Oracle10gDialect |
| Pointbase | org.hibernate.dialect.PointbaseDialect |
| PostgreSQL | org.hibernate.dialect.PostgreSQLDialect |
| PostgreSQL 9.2 | org.hibernate.dialect.PostgreSQL82Dialect |
| Postgres Plus Advanced Server | org.hibernate.dialect.PostgresPlusDialect |
| Progress | org.hibernate.dialect.ProgressDialect |
| SAP DB | org.hibernate.dialect.SAPDBDialect |
| Sybase | org.hibernate.dialect.SybaseASE15Dialect |
| Sybase 15.7 | org.hibernate.dialect.SybaseASE157Dialect |
| Sybase Anywhere | org.hibernate.dialect.SybaseAnywhereDialect |
1.3. Connection Pooling Copy linkLink copied to clipboard!
1.3.1. About Connection Pooling Copy linkLink copied to clipboard!
hibernate.connection.pool_size property with the appropriate settings for your selected connection pool. Setting a new value automatically disabled Hibernate's internal connection pool.
1.3.2. C3P0 Connection Pool Copy linkLink copied to clipboard!
lib/ directory. Hibernate uses org.hibernate.service.jdbc.connections.internal.C3P0ConnectionProvider for connection pooling if the hibernate.c3p0 connection properties are set.
hibernate.c3p0 connection properties to set to use the c3p0 connection pool in Hibernate:
| Property | Details |
|---|---|
hibernate.c3p0.min_size | The minimum number of concurrent connections per connection identity. |
hibernate.c3p0.max_size | The maximum number of concurrent connections per connection identity. |
hibernate.c3p0.timeout | The period an idle connection is allowed to remain in the connection pool before it is closed and removed from the pool. |
hibernate.c3p0.max_statements | The maximum size of the statement cache. |
1.3.3. Use JNDI to Obtain a Connection Copy linkLink copied to clipboard!
javax.sql.Datasource) that is registered in JNDI. Set more than one of the following properties to configure JNDI to obtain a connection:
hibernate.connection.datasource(mandatory)hibernate.jndi.urlhibernate.jndi.classhibernate.connection.usernamehibernate.connection.password
1.3.4. Other Connection Specific Configurations Copy linkLink copied to clipboard!
hibernate.connection. For example, to specify a charSet property, specify a new charSet connection property names hibernate.connection.charSet.
org.hibernate.service.jdbc.connections.spi.ConnectionProvider and by specifying a custom implementation with the hibernate.connection.provider_class property.
1.4. Hibernate Annotations Copy linkLink copied to clipboard!
1.4.1. Hibernate Annotations Copy linkLink copied to clipboard!
| Annotation | Description |
|---|---|
| AccessType | Property Access type. |
| Any | Defines a ToOne association pointing to several entity types. Matching the according entity type is done through a metadata discriminator column. This kind of mapping should be only marginal. |
| AnyMetaDef | Defines @Any and @manyToAny metadata. |
| AnyMedaDefs | Defines @Any and @ManyToAny set of metadata. Can be defined at the entity level or the package level. |
| BatchSize | Batch size for SQL loading. |
| Cache | Add caching strategy to a root entity or a collection. |
| Cascade | Apply a cascade strategy on an association. |
| Check | Arbitrary SQL check constraints which can be defined at the class, property or collection level. |
| Columns | Support an array of columns. Useful for component user type mappings. |
| ColumnTransformer | Custom SQL expression used to read the value from and write a value to a column. Use for direct object loading/saving as well as queries. The write expression must contain exactly one '?' placeholder for the value. |
| ColumnTransformers | Plural annotation for @ColumnTransformer. Useful when more than one column is using this behavior. |
| DiscriminatorFormula | Discriminator formula to be placed at the root entity. |
| DiscriminatorOptions | Optional annotation to express Hibernate specific discriminator properties. |
| Entity | Extends Entity with Hibernate features. |
| Fetch | Defines the fetching strategy used for the given association. |
| FetchProfile | Defines the fetching strategy profile. |
| FetchProfiles | Plural annotation for @FetchProfile. |
| Filter | Adds filters to an entity or a target entity of a collection. |
| FilterDef | Filter definition. |
| FilterDefs | Array of filter definitions. |
| FilterJoinTable | Adds filters to a join table collection. |
| FilterJoinTables | Adds multiple @FilterJoinTable to a collection. |
| Filters | Adds multiple @Filters. |
| Formula | To be used as a replacement for @Column in most places. The formula has to be a valid SQL fragment. |
| Generated | This annotated property is generated by the database. |
| GenericGenerator | Generator annotation describing any kind of Hibernate generator in a detyped manner. |
| GenericGenerators | Array of generic generator definitions. |
| Immutable |
Mark an Entity or a Collection as immutable. No annotation means the element is mutable.
An immutable entity may not be updated by the application. Updates to an immutable entity will be ignored, but no exception is thrown.
@Immutable placed on a collection makes the collection immutable, meaning additions and deletions to and from the collection are not allowed. A HibernateException is thrown in this case.
|
| Index | Defines a database index. |
| JoinFormula | To be used as a replacement for @JoinColumn in most places. The formula has to be a valid SQL fragment. |
| LazyCollection | Defines the lazy status of a collection. |
| LazyToOne | Defines the lazy status of a ToOne association (i.e. OneToOne or ManyToOne). |
| Loader | Overwrites Hibernate default FIND method. |
| ManyToAny | Defines a ToMany association pointing to different entity types. Matching the according entity type is done through a metadata discriminator column. This kind of mapping should be only marginal. |
| MapKeyType | Defines the type of key of a persistent map. |
| MetaValue | Represents a discriminator value associated to a given entity type. |
| NamedNativeQueries | Extends NamedNativeQueries to hold Hibernate NamedNativeQuery objects. |
| NamedNativeQuery | Extends NamedNativeQuery with Hibernate features. |
| NamedQueries | Extends NamedQueries to hold Hibernate NamedQuery objects. |
| NamedQuery | Extends NamedQuery with Hibernate features. |
| NaturalId | Specifies that a property is part of the natural id of the entity. |
| NotFound | Action to do when an element is not found on an association. |
| OnDelete | Strategy to use on collections, arrays and on joined subclasses delete. OnDelete of secondary tables is currently not supported. |
| OptimisticLock | Whether or not a change of the annotated property will trigger an entity version increment. If the annotation is not present, the property is involved in the optimistic lock strategy (default). |
| OptimisticLocking | Used to define the style of optimistic locking to be applied to an entity. In a hierarchy, only valid on the root entity. |
| OrderBy | Order a collection using SQL ordering (not HQL ordering). |
| ParamDef | A parameter definition. |
| Parameter | Key/value pattern. |
| Parent | Reference the property as a pointer back to the owner (generally the owning entity). |
| Persister | Specify a custom persister. |
| Polymorphism | Used to define the type of polymorphism Hibernate will apply to entity hierarchies. |
| Proxy | Lazy and proxy configuration of a particular class. |
| RowId | Support for ROWID mapping feature of Hibernate. |
| Sort | Collection sort (Java level sorting). |
| Source | Optional annotation in conjunction with Version and timestamp version properties. The annotation value decides where the timestamp is generated. |
| SQLDelete | Overwrites the Hibernate default DELETE method. |
| SQLDeleteAll | Overwrites the Hibernate default DELETE ALL method. |
| SQLInsert | Overwrites the Hibernate default INSERT INTO method. |
| SQLUpdate | Overwrites the Hibernate default UPDATE method. |
| Subselect | Maps an immutable and read-only entity to a given SQL subselect expression. |
| Synchronize | Ensures that auto-flush happens correctly and that queries against the derived entity do not return stale data. Mostly used with Subselect. |
| Table | Complementary information to a table either primary or secondary. |
| Tables | Plural annotation of Table. |
| Target | Defines an explicit target, avoiding reflection and generics resolving. |
| Tuplizer | Defines a tuplizer for an entity or a component. |
| Tuplizers | Defines a set of tuplizers for an entity or a component. |
| Type | Hibernate Type. |
| TypeDef | Hibernate Type definition. |
| TypeDefs | Hibernate Type definition array. |
| Where | Where clause to add to the element Entity or target entity of a collection. The clause is written in SQL. |
| WhereJoinTable | Where clause to add to the collection join table. The clause is written in SQL. |
Note
1.5. Envers Copy linkLink copied to clipboard!
1.5.1. About Hibernate Envers Copy linkLink copied to clipboard!
@Audited, which store the history of changes made to the entity. The data can then be retrieved and queried.
- audit all mappings defined by the JPA specification,
- audit all hibernate mappings that extend the JPA specification,
- audit entities mapped by or using the native Hibernate API
- log data for each revision using a revision entity, and
- query historical data.
1.5.2. About Auditing Persistent Classes Copy linkLink copied to clipboard!
@Audited annotation. When the annotation is applied to a class, a table is created, which stores the revision history of the entity.
1.5.3. Auditing Strategies Copy linkLink copied to clipboard!
1.5.3.1. About Auditing Strategies Copy linkLink copied to clipboard!
- Default Audit Strategy
- This strategy persists the audit data together with a start revision. For each row that is inserted, updated or deleted in an audited table, one or more rows are inserted in the audit tables, along with the start revision of its validity.Rows in the audit tables are never updated after insertion. Queries of audit information use subqueries to select the applicable rows in the audit tables, which are slow and difficult to index.
- Validity Audit Strategy
- This strategy stores the start revision, as well as the end revision of the audit information. For each row that is inserted, updated or deleted in an audited table, one or more rows are inserted in the audit tables, along with the start revision of its validity.At the same time, the end revision field of the previous audit rows (if available) is set to this revision. Queries on the audit information can then use between start and end revision, instead of subqueries. This means that persisting audit information is a little slower because of the extra updates, but retrieving audit information is a lot faster.This can also be improved by adding extra indexes.
1.5.4. Getting Started with Entity Auditing Copy linkLink copied to clipboard!
1.5.4.1. Add Auditing Support to a JPA Entity Copy linkLink copied to clipboard!
- Task Summary
- This topic covers adding auditing support for a JPA entity.
Procedure 1.1. Add Auditing Support to a JPA Entity
- Configure the available auditing parameters to suit the deployment (refer to Section 1.5.5.1, “Configure Envers Parameters”)
- Open the JPA entity to be audited.
- Import the
org.hibernate.envers.Auditedinterface. - Apply the
@Auditedannotation to each field or property to be audited, or apply it once to the whole class.Example 1.1. Audit Two Fields
Copy to Clipboard Copied! Toggle word wrap Toggle overflow Example 1.2. Audit an entire Class
Copy to Clipboard Copied! Toggle word wrap Toggle overflow
- Result
- The JPA entity has been configured for auditing. A table called
Entity_AUDwill be created to store the historical changes.
1.5.5. Configuration Copy linkLink copied to clipboard!
1.5.5.1. Configure Envers Parameters Copy linkLink copied to clipboard!
- Task Summary
- This topic covers configuring the available Envers parameters.
Procedure 1.2. Configure Envers Parameters
- Open the
persistence.xmlfile for the application. - Add, remove or configure Envers properties as required. For a list of available properties, refer to Section 1.5.5.4, “Envers Configuration Properties”.
Example 1.3. Example Envers Parameters
- Result
- Auditing has been configured for all JPA entities in the application.
1.5.5.2. Enable or Disable Auditing at Runtime Copy linkLink copied to clipboard!
This task covers the configuration steps required to enable/disable entity version auditing at runtime.
Procedure 1.3. Enable/Disable Auditing
- Subclass the
AuditEventListenerclass. - Override the following methods that are called on Hibernate events:
- onPostInsert
- onPostUpdate
- onPostDelete
- onPreUpdateCollection
- onPreRemoveCollection
- onPostRecreateCollection
- Specify the subclass as the listener for the events.
- Determine if the change should be audited.
- Pass the call to the superclass if the change should be audited.
1.5.5.3. Configure Conditional Auditing Copy linkLink copied to clipboard!
Hibernate Envers persists audit data in reaction to various Hibernate events, using a series of event listeners. These listeners are registered automatically if the Envers jar is in the class path. This task covers the steps required to implement conditional auditing, by overriding some of the Envers event listeners.
Procedure 1.4. Implement Conditional Auditing
- Set the
hibernate.listeners.envers.autoRegisterHibernate property to false in thepersistence.xmlfile. - Subclass each event listener to be overridden. Place the conditional auditing logic in the subclass, and call the super method if auditing should be performed.
- Create a custom implementation of
org.hibernate.integrator.spi.Integrator, similar toorg.hibernate.envers.event.EnversIntegrator. Use the event listener subclasses created in step two, rather than the default classes. - Add a
META-INF/services/org.hibernate.integrator.spi.Integratorfile to the jar. This file should contain the fully qualified name of the class implementing the interface.
Conditional auditing has been configured, overriding the default Envers event listeners.
1.5.5.4. Envers Configuration Properties Copy linkLink copied to clipboard!
| Property Name | Default Value | Description |
|---|---|---|
|
org.hibernate.envers.audit_table_prefix
| |
A string that is prepended to the name of an audited entity, to create the name of the entity that will hold the audit information.
|
|
org.hibernate.envers.audit_table_suffix
|
_AUD
|
A string that is appended to the name of an audited entity to create the name of the entity that will hold the audit information. For example, if an entity with a table name of
Person is audited, Envers will generate a table called Person_AUD to store the historical data.
|
|
org.hibernate.envers.revision_field_name
|
REV
|
The name of the field in the audit entity that holds the revision number.
|
|
org.hibernate.envers.revision_type_field_name
|
REVTYPE
|
The name of the field in the audit entity that holds the type of revision. The current types of revisions possible are:
add, mod and del.
|
|
org.hibernate.envers.revision_on_collection_change
|
true
|
This property determines if a revision should be generated if a relation field that is not owned changes. This can either be a collection in a one-to-many relation, or the field using the
mappedBy attribute in a one-to-one relation.
|
|
org.hibernate.envers.do_not_audit_optimistic_locking_field
|
true
|
When true, properties used for optimistic locking (annotated with
@Version) will automatically be excluded from auditing.
|
|
org.hibernate.envers.store_data_at_delete
|
false
|
This property defines whether or not entity data should be stored in the revision when the entity is deleted, instead of only the ID, with all other properties marked as null. This is not usually necessary, as the data is present in the last-but-one revision. Sometimes, however, it is easier and more efficient to access it in the last revision. However, this means the data the entity contained before deletion is stored twice.
|
|
org.hibernate.envers.default_schema
|
null (same as normal tables)
|
The default schema name used for audit tables. Can be overridden using the
@AuditTable(schema="...") annotation. If not present, the schema will be the same as the schema of the normal tables.
|
|
org.hibernate.envers.default_catalog
|
null (same as normal tables)
|
The default catalog name that should be used for audit tables. Can be overridden using the
@AuditTable(catalog="...") annotation. If not present, the catalog will be the same as the catalog of the normal tables.
|
|
org.hibernate.envers.audit_strategy
|
org.hibernate.envers.strategy.DefaultAuditStrategy
|
This property defines the audit strategy that should be used when persisting audit data. By default, only the revision where an entity was modified is stored. Alternatively,
org.hibernate.envers.strategy.ValidityAuditStrategy stores both the start revision and the end revision. Together, these define when an audit row was valid.
|
|
org.hibernate.envers.audit_strategy_validity_end_rev_field_name
|
REVEND
|
The column name that will hold the end revision number in audit entities. This property is only valid if the validity audit strategy is used.
|
|
org.hibernate.envers.audit_strategy_validity_store_revend_timestamp
|
false
|
This property defines whether the timestamp of the end revision, where the data was last valid, should be stored in addition to the end revision itself. This is useful to be able to purge old audit records out of a relational database by using table partitioning. Partitioning requires a column that exists within the table. This property is only evaluated if the
ValidityAuditStrategy is used.
|
|
org.hibernate.envers.audit_strategy_validity_revend_timestamp_field_name
|
REVEND_TSTMP
|
Column name of the timestamp of the end revision at which point the data was still valid. Only used if the
ValidityAuditStrategy is used, and org.hibernate.envers.audit_strategy_validity_store_revend_timestamp evaluates to true.
|
1.5.6. Queries Copy linkLink copied to clipboard!
1.5.6.1. Retrieve Auditing Information Copy linkLink copied to clipboard!
Hibernate Envers provides the functionality to retrieve audit information through queries. This topic provides examples of those queries.
Note
live data, as they involve correlated subselects.
Example 1.4. Querying for Entities of a Class at a Given Revision
AuditQuery query = getAuditReader()
.createQuery()
.forEntitiesAtRevision(MyEntity.class, revisionNumber);
AuditQuery query = getAuditReader()
.createQuery()
.forEntitiesAtRevision(MyEntity.class, revisionNumber);
AuditEntity factory class. The query below only selects entities where the name property is equal to John:
query.add(AuditEntity.property("name").eq("John"));
query.add(AuditEntity.property("name").eq("John"));
query.add(AuditEntity.property("address").eq(relatedEntityInstance));
// or
query.add(AuditEntity.relatedId("address").eq(relatedEntityId));
query.add(AuditEntity.property("address").eq(relatedEntityInstance));
// or
query.add(AuditEntity.relatedId("address").eq(relatedEntityId));
Example 1.5. Query Revisions where Entities of a Given Class Changed
AuditQuery query = getAuditReader().createQuery()
.forRevisionsOfEntity(MyEntity.class, false, true);
AuditQuery query = getAuditReader().createQuery()
.forRevisionsOfEntity(MyEntity.class, false, true);
AuditEntity.revisionNumber()- Specify constraints, projections and order on the revision number in which the audited entity was modified.
AuditEntity.revisionProperty(propertyName)- Specify constraints, projections and order on a property of the revision entity, corresponding to the revision in which the audited entity was modified.
AuditEntity.revisionType()- Provides accesses to the type of the revision (ADD, MOD, DEL).
MyEntity class, with the entityId ID has changed, after revision number 42:
actualDate for a given entity was larger than a given value, but as small as possible:
minimize() and maximize() methods return a criteria, to which constraints can be added, which must be met by the entities with the maximized/minimized properties.
selectEntitiesOnly- This parameter is only valid when an explicit projection is not set.If true, the result of the query will be a list of entities that changed at revisions satisfying the specified constraints.If false, the result will be a list of three element arrays. The first element will be the changed entity instance. The second will be an entity containing revision data. If no custom entity is used, this will be an instance of
DefaultRevisionEntity. The third element array will be the type of the revision (ADD, MOD, DEL). selectDeletedEntities- This parameter specified if revisions in which the entity was deleted should be included in the results. If true, the entities will have the revision type
DEL, and all fields, except id, will have the valuenull.
Example 1.6. Query Revisions of an Entity that Modified a Given Property
MyEntity with a given id, where the actualDate property has been changed.
AuditQuery query = getAuditReader().createQuery()
.forRevisionsOfEntity(MyEntity.class, false, true)
.add(AuditEntity.id().eq(id));
.add(AuditEntity.property("actualDate").hasChanged())
AuditQuery query = getAuditReader().createQuery()
.forRevisionsOfEntity(MyEntity.class, false, true)
.add(AuditEntity.id().eq(id));
.add(AuditEntity.property("actualDate").hasChanged())
hasChanged condition can be combined with additional criteria. The query below will return a horizontal slice for MyEntity at the time the revisionNumber was generated. It will be limited to the revisions that modified prop1, but not prop2.
AuditQuery query = getAuditReader().createQuery()
.forEntitiesAtRevision(MyEntity.class, revisionNumber)
.add(AuditEntity.property("prop1").hasChanged())
.add(AuditEntity.property("prop2").hasNotChanged());
AuditQuery query = getAuditReader().createQuery()
.forEntitiesAtRevision(MyEntity.class, revisionNumber)
.add(AuditEntity.property("prop1").hasChanged())
.add(AuditEntity.property("prop2").hasNotChanged());
MyEntities changed in revisionNumber with prop1 modified and prop2 untouched."
forEntitiesModifiedAtRevision query:
AuditQuery query = getAuditReader().createQuery()
.forEntitiesModifiedAtRevision(MyEntity.class, revisionNumber)
.add(AuditEntity.property("prop1").hasChanged())
.add(AuditEntity.property("prop2").hasNotChanged());
AuditQuery query = getAuditReader().createQuery()
.forEntitiesModifiedAtRevision(MyEntity.class, revisionNumber)
.add(AuditEntity.property("prop1").hasChanged())
.add(AuditEntity.property("prop2").hasNotChanged());
Example 1.7. Query Entities Modified in a Given Revision
Set<Pair<String, Class>> modifiedEntityTypes = getAuditReader()
.getCrossTypeRevisionChangesReader().findEntityTypes(revisionNumber);
Set<Pair<String, Class>> modifiedEntityTypes = getAuditReader()
.getCrossTypeRevisionChangesReader().findEntityTypes(revisionNumber);
org.hibernate.envers.CrossTypeRevisionChangesReader:
List<Object> findEntities(Number)- Returns snapshots of all audited entities changed (added, updated and removed) in a given revision.Executes
n+1SQL queries, wherenis a number of different entity classes modified within the specified revision. List<Object> findEntities(Number, RevisionType)- Returns snapshots of all audited entities changed (added, updated or removed) in a given revision filtered by modification type. Executes
n+1SQL queries, wherenis a number of different entity classes modified within specified revision. Map<RevisionType, List<Object>> findEntitiesGroupByRevisionType(Number)- Returns a map containing lists of entity snapshots grouped by modification operation (e.g. addition, update and removal). Executes
3n+1SQL queries, wherenis a number of different entity classes modified within specified revision.
Chapter 2. Using Hibernate Copy linkLink copied to clipboard!
2.1. Introduction to Using Hibernate Copy linkLink copied to clipboard!
- Read the Hibernate 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. - Read the Architecture chapter to understand the environments where Hibernate can be used.
- View the
eg/directory in the Hibernate distribution. It contains a simple standalone application. Copy your JDBC driver to thelib/directory and editetc/hibernate.properties, specifying the correct values for your database. From a command prompt in the distribution directory, typeant eg(using Ant), or under Windows, typebuild eg. - Use this reference documentation as your primary source of information. Consider reading Java Persistence with Hibernate (http://www.manning.com/bauer2) if you need more help with application design, or if you prefer a step-by-step tutorial. Also visit http://caveatemptor.hibernate.org and download the example application for Java Persistence with Hibernate.
- FAQs are answered on the Hibernate website.
- Third party demos, examples, and tutorials are linked on the Hibernate website.
- The Community Area on the Hibernate website is a good resource for design patterns and various integration solutions (Tomcat, JBoss Enterprise Application Platform, Struts, EJB, etc.).
2.2. Hibernate Tutorial Copy linkLink copied to clipboard!
Important
Note
tutorial/eg project source directory.
2.3. Your First Hibernate Application Copy linkLink copied to clipboard!
2.3.1. About the Hibernate Application Tutorial Copy linkLink copied to clipboard!
Note
2.3.2. Set Up Your Hibernate Application Copy linkLink copied to clipboard!
src/main/java, src/main/resources and src/main/webapp directories.
Note
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.
pom.xml in the project root directory.
2.3.3. Create the First Class Copy linkLink copied to clipboard!
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.
src/main/java/org/hibernate/tutorial/domain directory.
2.3.4. The Mapping File Copy linkLink copied to clipboard!
hibernate-core.jar (it is also included in the hibernate3.jar, if using the distribution bundle).
Important
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:
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:
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.
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.
Note
native is no longer considered the best strategy in terms of portability.
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
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.
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.
Note
src/main/resources/org/hibernate/tutorial/domain/Event.hbm.xml.
2.3.5. Hibernate Configuration Copy linkLink copied to clipboard!
Note
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.
javax.sql.DataSource). Hibernate comes with support for two third-party open source JDBC connection pools: c3p0 and proxool. However, we will be using the Hibernate built-in connection pool for this tutorial.
Warning
hibernate.properties file, a more sophisticated hibernate.cfg.xml file, or even complete programmatic setup. Most users prefer the XML configuration file:
Note
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.
property elements contain the necessary configuration for the JDBC connection. The dialect property element specifies the particular SQL variant Hibernate generates.
Note
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.
hibernate.cfg.xml into the src/main/resources directory.
2.3.6. Building with Maven Copy linkLink copied to clipboard!
/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:
2.3.7. Startup and Helpers Copy linkLink copied to clipboard!
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.
HibernateUtil helper class that takes care of startup and makes accessing the org.hibernate.SessionFactory more convenient.
src/main/java/org/hibernate/tutorial/util/HibernateUtil.java
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.
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.
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.
2.3.8. Loading and Storing Objects Copy linkLink copied to clipboard!
EventManager class with a main() method:
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.
org.hibernate.Transaction API. In this particular case we are using JDBC-based transactional semantics, but it could also run with JTA.
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
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.
mvn exec:java -Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="store"
Note
mvn compile first.
[java] Hibernate: insert into EVENTS (EVENT_DATE, title, EVENT_ID) values (?, ?, ?)
[java] Hibernate: insert into EVENTS (EVENT_DATE, title, EVENT_ID) values (?, ?, ?)
INSERT executed by Hibernate.
listEvents() method is also added:
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 the Hibernate Query Language chapter for further information.
mvn exec:java -Dexec.mainClass="org.hibernate.tutorial.EventManager" -Dexec.args="list"
2.4. Mapping Associations Copy linkLink copied to clipboard!
2.4.1. About Mapping Associations Copy linkLink copied to clipboard!
2.4.2. Mapping the Person Class Copy linkLink copied to clipboard!
Person class looks like this:
src/main/java/org/hibernate/tutorial/domain/Person.java
src/main/resources/org/hibernate/tutorial/domain/Person.hbm.xml
Event.hbm.xml:
<mapping resource="events/Event.hbm.xml"/> <mapping resource="events/Person.hbm.xml"/>
<mapping resource="events/Event.hbm.xml"/>
<mapping resource="events/Person.hbm.xml"/>
2.4.3. A Unidirectional Set-based Association Copy linkLink copied to clipboard!
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:
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:
set being most common. For a many-to-many association, or n:m entity relationship, an association table is required. Each row in this table represents a link between a person and an event. The table name is decalred using the table attribute of the set element. The identifier column name in the association, for the person side, is defined with the key element, the column name for the event's side with the column attribute of the many-to-many. You also have to tell Hibernate the class of the objects in your collection (the class on the other side of the collection of references).
2.4.4. Working the Association Copy linkLink copied to clipboard!
EventManager:
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.
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:
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.
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):
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.
2.4.5. Collection of Values Copy linkLink copied to clipboard!
Person entity. This will be represented as a java.util.Set of java.lang.String instances:
Set is as follows:
<set name="emailAddresses" table="PERSON_EMAIL_ADDR">
<key column="PERSON_ID"/>
<element type="string" column="EMAIL_ADDR"/>
</set>
<set name="emailAddresses" table="PERSON_EMAIL_ADDR">
<key column="PERSON_ID"/>
<element type="string" column="EMAIL_ADDR"/>
</set>
element part which tells Hibernate that the collection does not contain references to another entity, but is rather a collection whose elements are values types, here specifically of type string. The lowercase name tells you it is a Hibernate mapping type/converter. Again the table attribute of the set element determines the table name for the collection. The key element defines the foreign-key column name in the collection table. The column attribute in the element element defines the column name where the email address values will actually be stored.
2.4.6. Bi-directional Associations Copy linkLink copied to clipboard!
Note
Event class:
Event.hbm.xml.
<set name="participants" table="PERSON_EVENT" inverse="true"> <key column="EVENT_ID"/> <many-to-many column="PERSON_ID" class="org.hibernate.tutorial.domain.Person"/> </set>
<set name="participants" table="PERSON_EVENT" inverse="true">
<key column="EVENT_ID"/>
<many-to-many column="PERSON_ID" class="org.hibernate.tutorial.domain.Person"/>
</set>
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.
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.
2.4.7. Working Bi-directional Links Copy linkLink copied to clipboard!
Person and an Event in the unidirectional example? You add an instance of 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.
Person):
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.
2.5. The EventManager Web Application Copy linkLink copied to clipboard!
2.5.1. About the EventManager Copy linkLink copied to clipboard!
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.
2.5.2. Writing the Basic Servlet Copy linkLink copied to clipboard!
GET requests, we will only implement the doGet() method:
src/main/java/org/hibernate/tutorial/web/EventManagerServlet.java
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.
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.
session-per-request pattern. Instead of the transaction 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.
2.5.3. Processing and Rendering Copy linkLink copied to clipboard!
listEvents() method uses the Hibernate Session bound to the current thread to execute a query:
store action is dispatched to the createAndStoreEvent() method, which also uses the Session of the current thread:
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.
2.5.4. Deploying and Testing Copy linkLink copied to clipboard!
src/main/webapp/WEB-INF/web.xml
mvn package in your project directory and copy the hibernate-tutorial.war file into your $JBOSS_HOME/server/$CONFIG/deploy directory.
http://localhost:8080/hibernate-tutorial/eventmanager. Watch the server log (in $JBOSS_HOME/server/$CONFIG/log/server.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.
2.5.5. Summary Copy linkLink copied to clipboard!
Chapter 3. Hibernate Architecture Copy linkLink copied to clipboard!
3.1. Overview Copy linkLink copied to clipboard!
- SessionFactory (
org.hibernate.SessionFactory) - A threadsafe, immutable cache of compiled mappings for a single database. A factory for
Sessionand a client ofConnectionProvider,SessionFactorycan hold an optional (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. It wraps a JDBC connection and is a factory for
Transaction.Sessionholds a mandatory first-level cache of persistent objects that are 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
Session. Once theSessionis closed, they will be detached and free to use in any application layer (for example, directly as data transfer objects to and from presentation). - Transient and detached objects and collections
- Instances of persistent classes that are not currently associated with a
Session. They may have been instantiated by the application and not yet persisted, or they may have been instantiated by a closedSession. - 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
Sessionmight span severalTransactions in some cases. However, transaction demarcation, either using the underlying API orTransaction, is never optional. - ConnectionProvider (
org.hibernate.connection.ConnectionProvider) - (Optional) A factory for, and pool of, JDBC connections. It abstracts the application from underlying
DatasourceorDriverManager. 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
Transactioninstances. It is not exposed to the application, but it can be extended and/or implemented by the developer. - 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.
Transaction/TransactionFactory and/or ConnectionProvider APIs to communicate with JTA or JDBC directly.
3.2. Instance States Copy linkLink copied to clipboard!
Session object is the persistence context. The three different states are as follows:
- transient
- The instance is not associated with any persistence context. It has no persistent identity or primary key value.
- persistent
- The instance is currently associated with a persistence context. It has a persistent identity (primary key value) and can have a corresponding row in the database. For a particular persistence context, Hibernate guarantees that persistent identity is equivalent to Java identity in relation to the in-memory location of the object.
- detached
- The instance was once associated with a persistence context, but that context was closed, or the instance was serialized to another process. It has a persistent identity and can have a corresponding row in the database. For detached instances, Hibernate does not guarantee the relationship between persistent identity and Java identity.
3.3. JMX Integration Copy linkLink copied to clipboard!
org.hibernate.jmx.HibernateService.
- Session Management: the Hibernate
Session's life cycle can be automatically bound to the scope of a JTA transaction. This means that you no longer have to manually open and close theSession; this becomes the job of a JBoss EJB interceptor. You also do not have to worry about transaction demarcation in your code (if you would like to write a portable persistence layer use the optional HibernateTransactionAPI for this). You call theHibernateContextto access aSession. - HAR deployment: the Hibernate JMX service is deployed using a JBoss service deployment descriptor in an EAR and/or SAR file, as it supports all the usual configuration options of a Hibernate
SessionFactory. However, you still need to name all your mapping files in the deployment descriptor. If you use the optional HAR deployment, JBoss will automatically detect all mapping files in your HAR file.
3.4. JCA Support Copy linkLink copied to clipboard!
3.5. Contextual Sessions Copy linkLink copied to clipboard!
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.
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.
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.
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 aJTAtransaction. 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.org.hibernate.context.ManagedSessionContext: current sessions are tracked by thread of execution. However, you are responsible to bind and unbind aSessioninstance with static methods on this class: it does not open, flush, or close aSession.
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 the Transactions and Concurrency Chapter for more information and code examples.
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".
Chapter 4. Persistent Classes Copy linkLink copied to clipboard!
4.1. About Persistent Classes Copy linkLink copied to clipboard!
Map instances, for example).
4.2. POJO Example Copy linkLink copied to clipboard!
4.2.1. A Simple POJO Example Copy linkLink copied to clipboard!
4.2.2. Implement a No-argument Constructor Copy linkLink copied to clipboard!
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 Constructor.newInstance(). It is recommended that you have a default constructor with at least package visibility for runtime proxy generation in Hibernate.
4.2.3. Provide an Optional Identifier Property Copy linkLink copied to clipboard!
Cat has a property called id. This property maps to the primary key column of a database table. The property might have been called anything, and its type might have been any primitive type, any primitive "wrapper" type, java.lang.String or java.util.Date. If your legacy database table has composite keys, you can use a user-defined class with properties of these types (see the section on composite identifiers later in the chapter.)
- Transitive reattachment for detached objects (cascade update or cascade merge).
Session.saveOrUpdate()Session.merge()
4.2.4. Prefer Optional Non-final Classes Copy linkLink copied to clipboard!
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.
public final methods on the non-final classes. If you want to use a class with a public final method, you must explicitly disable proxying by setting lazy="false".
4.2.5. Declare Optional Accessors and Mutators for Persistent Fields Copy linkLink copied to clipboard!
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.
protected or private get / set pair.
4.3. Additional Information Copy linkLink copied to clipboard!
4.3.1. Implementing Inheritance Copy linkLink copied to clipboard!
Cat. For example:
4.3.2. Implementing equals() and hashCode() Copy linkLink copied to clipboard!
equals() and hashCode() methods if you:
- intend to put instances of persistent classes in a
Set(the recommended way to represent many-valued associations); and - intend to use reattachment of detached instances
equals() and hashCode() if you wish to have meaningful semantics for Sets.
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.
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):
4.3.3. Dynamic Models Copy linkLink copied to clipboard!
Note
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.
SessionFactory using the default_entity_mode configuration option.
Maps. First, in the mapping file an entity-name has to be declared instead of, or in addition to, a class name:
dynamic-map for the SessionFactory, you can, at runtime, work with Maps of Maps:
Session basis:
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.
4.3.4. Tuplizers Copy linkLink copied to clipboard!
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 and how to extract values from and 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.
org.hibernate.tuple.entity.EntityTuplizer and org.hibernate.tuple.component.ComponentTuplizer interfaces. EntityTuplizers are responsible for managing the above mentioned contracts in regards to entities, while ComponentTuplizers do the same for components.
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:
4.3.5. EntityNameResolvers Copy linkLink copied to clipboard!
org.hibernate.EntityNameResolver interface 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.
org.hibernate.EntityNameResolver users must either:
- Implement a custom tupilizer, implementing the
getEntityNameResolversmethod. - Register it with the
org.hibernate.impl.SessionFactoryImpl(which is the implementation class fororg.hibernate.SessionFactory) using theregisterEntityNameResolvermethod.
Chapter 5. Basic O/R Mapping Copy linkLink copied to clipboard!
5.1. Mapping Declaration Copy linkLink copied to clipboard!
5.1.1. About Mapping Declaration Copy linkLink copied to clipboard!
not-null attribute).
5.1.2. Doctype Copy linkLink copied to clipboard!
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.
5.1.3. EntityResolver Copy linkLink copied to clipboard!
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 namespaceis recognized whenever the resolver encounters a systemId starting withhttp://hibernate.sourceforge.net/. The resolver attempts to resolve these entities via the classloader which loaded the Hibernate classes. - a
user namespaceis recognized whenever the resolver encounters a systemId using aclasspath://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.
types.xml is a resource in the your.domain package and contains a custom mapping type.
5.1.4. Hibernate-mapping Copy linkLink copied to clipboard!
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.
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.
auto-import="false". An exception will result if you attempt to assign two classes to the same "imported" name.
hibernate-mapping element allows you to nest several persistent <class> mappings, as shown above. It is, however, good practice (and expected by some tools) to map only a single persistent class, or a single class hierarchy, in one mapping file and name it after the persistent superclass. For example, Cat.hbm.xml, Dog.hbm.xml, or if using inheritance, Animal.hbm.xml.
5.1.5. Class Copy linkLink copied to clipboard!
class element. For example:
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.
polymorphism (optional - defaults to implicit): determines whether implicit or explicit query polymorphism is used.
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.
lazy (optional): lazy fetching can be disabled by setting lazy="false".
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.
check (optional): an SQL expression used to generate a multi-row check constraint for automatic schema generation.
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.
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.
abstract (optional): is used to mark abstract superclasses in <union-subclass> hierarchies.
<subclass> element. You can persist any static inner class. Specify the class name using the standard form i.e. e.g.Foo$Bar.
mutable="false", cannot be updated or deleted by the application. This allows Hibernate to make some minor performance optimizations.
proxy attribute enables lazy initialization of persistent instances of the class. Hibernate will initially return CGLIB proxies that implement the named interface. The persistent object will load when a method of the proxy is invoked. See "Initializing collections and proxies" below.
<class> declaration as a <subclass> or <joined-subclass>. For most purposes, the default polymorphism="implicit" is appropriate. Explicit polymorphism is useful when two different classes are mapped to the same table This allows a "lightweight" class that contains a subset of the table columns.
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.
dynamic-update and dynamic-insert settings are not inherited by subclasses, so they can also be specified on the <subclass> or <joined-subclass> elements. Although these settings can increase performance in some cases, they can actually decrease performance in others.
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.
dynamic-update, you will have a choice of optimistic locking strategies:
version: check the version/timestamp columnsall: check all columnsdirty: check the changed columns, allowing some concurrent updatesnone: do not use optimistic locking
Session.merge() is used).
<subselect> is available both as an attribute and a nested mapping element.
5.1.6. id Copy linkLink copied to clipboard!
<id> element defines the mapping from that property to the primary key column.
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.
name attribute is missing, it is assumed that the class has no identifier property.
unsaved-value attribute is almost never needed in Hibernate3.
<composite-id> declaration that allows access to legacy data with composite keys. Its use is strongly discouraged for anything else.
5.1.7. Generator Copy linkLink copied to clipboard!
<generator> child element names a Java class used to generate unique identifiers for instances of the persistent class. If any parameters are required to configure or initialize the generator instance, they are passed using the <param> element.
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 built-in generators are as follows:
increment- generates identifiers of type
long,shortorintthat 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,shortorint. sequence- uses a sequence in DB2, PostgreSQL, Oracle, SAP DB, McKoi or a generator in Interbase. The returned identifier is of type
long,shortorint hilo- uses a hi/lo algorithm to efficiently generate identifiers of type
long,shortorint, given a table and column (by defaulthibernate_unique_keyandnext_hirespectively) 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,shortorint, given a named database sequence. uuid- uses a 128-bit UUID algorithm to generate identifiers of type string that are unique within a network (the IP address is used). The UUID is encoded as a string of 32 hexadecimal digits in length.
guid- uses a database-generated GUID string on MS SQL Server and MySQL.
native- selects
identity,sequenceorhilodepending upon the capabilities of the underlying database. assigned- lets the application assign an identifier to the object before
save()is called. This is the default strategy if no<generator>element is specified. select- retrieves a primary key, assigned by a database trigger, by selecting the row by some unique key and retrieving the primary key value.
foreign- uses the identifier of another associated object. It is usually used in conjunction with a
<one-to-one>primary key association. sequence-identity- a specialized sequence generation strategy that utilizes a database sequence for the actual value generation, but combines this with JDBC3 getGeneratedKeys to return the generated identifier value as part of the insert statement execution. This strategy is only supported on Oracle 10g drivers targeted for JDK 1.4. Comments on these insert statements are disabled due to a bug in the Oracle drivers.
5.1.8. Hi/Lo Algorithm Copy linkLink copied to clipboard!
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.
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.
5.1.9. UUID Algorithm Copy linkLink copied to clipboard!
5.1.10. Identity Columns and Sequences Copy linkLink copied to clipboard!
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">
<generator class="sequence">
<param name="sequence">person_id_sequence</param>
</generator>
</id>
<id name="id" type="long" column="person_id" unsaved-value="0">
<generator class="identity"/>
</id>
<id name="id" type="long" column="person_id" unsaved-value="0">
<generator class="identity"/>
</id>
native strategy will, depending on the capabilities of the underlying database, choose from the identity, sequence and hilo strategies.
5.1.11. Assigned Identifiers Copy linkLink copied to clipboard!
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 key instead of a surrogate key. This is the default behavior if you do not specify a <generator> element.
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().
5.1.12. Primary Keys Assigned by Triggers Copy linkLink copied to clipboard!
<id name="id" type="long" column="person_id">
<generator class="select">
<param name="key">socialSecurityNumber</param>
</generator>
</id>
<id name="id" type="long" column="person_id">
<generator class="select">
<param name="key">socialSecurityNumber</param>
</generator>
</id>
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.
5.1.13. Enhanced Identifier Generators Copy linkLink copied to clipboard!
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 tohibernate_sequence): the name of the sequence or table to be used.initial_value(optional, defaults to1): 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 to1): 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 tofalse): should we force the use of a table as the backing structure even though the dialect might support sequence?value_column(optional - defaults tonext_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 tonone).
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 re-implementation 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 tohibernate_sequences): the name of the table to be used.value_column_name(optional - defaults tonext_val): the name of the column on the table that is used to hold the value.segment_column_name(optional - defaults tosequence_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 todefault): The "segment key" value for the segment from which we want to pull increment values for this generator.segment_value_length(optional - defaults to255): Used for schema generation; the column size to create this segment key column.initial_value(optional - defaults to1): The initial value to be retrieved from the table.increment_size(optional - defaults to1): The value by which subsequent calls to the table should differ.optimizer(optional - defaults to): Refer to Section 5.1.14, “Identifier Generator Optimization” for further information.
5.1.14. Identifier Generator Optimization Copy linkLink copied to clipboard!
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". Theincrement_sizeis multiplied by that value in memory to define a group "hi value".pooled: as with the case ofhilo, 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_sizerefers to the values coming from the database.
5.1.15. composite-id Copy linkLink copied to clipboard!
<composite-id> element accepts <key-property> property mappings and <key-many-to-one> mappings as child elements.
<composite-id>
<key-property name="medicareNumber"/>
<key-property name="dependent"/>
</composite-id>
<composite-id>
<key-property name="medicareNumber"/>
<key-property name="dependent"/>
</composite-id>
equals() and hashCode() to implement composite identifier equality. It must also implement Serializable.
load() the persistent state associated with a composite key. We call this approach an embedded composite identifier, and discourage it for serious applications.
<composite-id> element are duplicated on both the persistent class and a separate identifier class.
<composite-id class="MedicareId" mapped="true">
<key-property name="medicareNumber"/>
<key-property name="dependent"/>
</composite-id>
<composite-id class="MedicareId" mapped="true">
<key-property name="medicareNumber"/>
<key-property name="dependent"/>
</composite-id>
MedicareId, and the entity class itself have properties named medicareNumber and dependent. The identifier class must override equals() and hashCode() and implement Serializable. The main disadvantage of this approach is code duplication.
mapped(optional - defaults tofalse): indicates that a mapped composite identifier is used, and that the contained property mappings refer to both the entity class and the composite identifier class.class(optional - but required for a mapped composite identifier): the class used as a composite identifier.
name(optional - required for this approach): a property of component type that holds the composite identifier. Please see chapter 9 for more information.access(optional - defaults toproperty): the strategy Hibernate uses for accessing the property value.class(optional - defaults to the property type determined by reflection): the component class used as a composite identifier. Please see the next section for more information.
5.1.16. Discriminator Copy linkLink copied to clipboard!
<discriminator> element is 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. A restricted set of types can be used: string, character, integer, byte, short, boolean, yes_no, true_false.
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.
discriminator-value attribute of the <class> and <subclass> elements.
force attribute is only useful if the table contains rows with "extra" discriminator values that are not mapped to a persistent class. This will not usually be the case.
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"/>
<discriminator
formula="case when CLASS_TYPE in ('a', 'b', 'c') then 0 else 1 end"
type="integer"/>
5.1.17. Version (optional) Copy linkLink copied to clipboard!
<version> element is optional and indicates that the table contains versioned data. This is particularly useful if you plan to use long transactions. See below for more information:
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.
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 0.
long, integer, short, timestamp or calendar.
unsaved-value strategies are specified. Declaring a nullable version or timestamp property is an easy way to avoid problems with transitive reattachment in Hibernate. It is especially useful for people using assigned identifiers or composite keys.
5.1.18. Timestamp (optional) Copy linkLink copied to clipboard!
<timestamp> element indicates that the table contains timestamped data. This provides an alternative to versioning. Timestamps are a less safe implementation of optimistic locking. However, sometimes the application might use the timestamps in other ways.
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.
Note
<Timestamp> is equivalent to <version type="timestamp">. And <timestamp source="db"> is equivalent to <version type="dbtimestamp">
5.1.19. Property Copy linkLink copied to clipboard!
<property> element declares a persistent JavaBean style property of the class.
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.
- The name of a Hibernate basic type:
integer, string, character, date, timestamp, float, binary, serializable, object, blobetc. - 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.Clobetc. - The name of a serializable Java class.
- The class name of a custom type:
com.illflow.type.MyCustomTypeetc.
type attribute. For example, to distinguish between Hibernate.DATE and Hibernate.TIMESTAMP, or to specify a custom type.
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.
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 )"/>
<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 )"/>
customerId in the given example. You can also use the nested <formula> mapping element if you do not want to use the attribute.
5.1.20. Many-to-one Copy linkLink copied to clipboard!
many-to-one element. The relational model is a many-to-one association; a foreign key in one table is referencing the primary key column(s) of the target table.
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.
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 comma-separated combinations of operation names: cascade="persist,merge,evict" or cascade="all,delete-orphan". Note that single valued, many-to-one and one-to-one, associations do not support orphan delete.
many-to-one declaration:
<many-to-one name="product" class="Product" column="PRODUCT_ID"/>
<many-to-one name="product" class="Product" column="PRODUCT_ID"/>
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"/>
<property name="serialNumber" unique="true" type="string" column="SERIAL_NUMBER"/>
OrderItem might use:
<many-to-one name="product" property-ref="serialNumber" column="PRODUCT_SERIAL_NUMBER"/>
<many-to-one name="product" property-ref="serialNumber" column="PRODUCT_SERIAL_NUMBER"/>
<properties> element.
<many-to-one name="owner" property-ref="identity.ssn" column="OWNER_SSN"/>
<many-to-one name="owner" property-ref="identity.ssn" column="OWNER_SSN"/>
5.1.21. One-to-one Copy linkLink copied to clipboard!
one-to-one element.
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.
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
- unique foreign key associations
Employee and Person respectively:
<one-to-one name="person" class="Person"/>
<one-to-one name="person" class="Person"/>
<one-to-one name="employee" class="Employee" constrained="true"/>
<one-to-one name="employee" class="Employee" constrained="true"/>
foreign:
Person is assigned the same primary key value as the Employee instance referred with the employee property of that Person.
Employee to Person, can be expressed as:
<many-to-one name="person" class="Person" column="PERSON_ID" unique="true"/>
<many-to-one name="person" class="Person" column="PERSON_ID" unique="true"/>
Person mapping:
<one-to-one name="employee" class="Employee" property-ref="person"/>
<one-to-one name="employee" class="Employee" property-ref="person"/>
5.1.22. Natural-id Copy linkLink copied to clipboard!
<natural-id mutable="true|false"/>
<property ... />
<many-to-one ... />
......
</natural-id>
<natural-id mutable="true|false"/>
<property ... />
<many-to-one ... />
......
</natural-id>
<natural-id> element. Hibernate will generate the necessary unique key and nullability constraints and, as a result, your mapping will be more self-documenting.
equals() and hashCode() to compare the natural key properties of the entity.
mutable(optional - defaults tofalse): by default, natural identifier properties are assumed to be immutable (constant).
5.1.23. Component and Dynamic-component Copy linkLink copied to clipboard!
<component> element maps properties of a child object to columns of the table of a parent class. Components can, in turn, declare their own properties, components or collections. See the "Component" examples below:
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?
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.
<property> tags map properties of the child class to table columns.
<component> element allows a <parent> subelement that maps a property of the component class as a reference back to the containing entity.
<dynamic-component> element allows a Map to be mapped as a component, where the property names refer to keys of the map.
5.1.24. Properties Copy linkLink copied to clipboard!
<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:
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.
<properties> mapping:
Person table, instead of to the primary key:
5.1.25. Subclass Copy linkLink copied to clipboard!
<subclass> declaration is used. For example:
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.
<version> and <id> properties are assumed to be inherited from the root class. Each subclass in a hierarchy must define a unique discriminator-value. If this is not specified, the fully qualified Java class name is used.
5.1.26. Joined-subclass Copy linkLink copied to clipboard!
<joined-subclass> element. For example:
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.
<key> element. The mapping at the start of the chapter would then be re-written as:
5.1.27. Union-subclass Copy linkLink copied to clipboard!
<class> declaration. However, if you wish use polymorphic associations (e.g. an association to the superclass of your hierarchy), you need to use the <union-subclass> mapping. For example:
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.
5.1.28. Join Copy linkLink copied to clipboard!
<join> element, it is possible to map properties of one class to several tables that have a one-to-one relationship. For example:
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.
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.
5.1.29. Key Copy linkLink copied to clipboard!
<key> element has 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:
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.
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.
not-null and update attributes are useful when mapping a unidirectional one-to-many association. If you map a unidirectional one-to-many association to a non-nullable foreign key, you must declare the key column using <key not-null="true">.
5.1.30. Column and Formula Elements Copy linkLink copied to clipboard!
column attribute will alternatively accept a <column> subelement. Likewise, <formula> is an alternative to the formula attribute. For example:
<formula>SQL expression</formula>
<formula>SQL expression</formula>
column and formula attributes 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>
<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.1.31. Import Copy linkLink copied to clipboard!
auto-import="true". You can also import classes and interfaces that are not explicitly mapped:
<import class="java.lang.Object" rename="Universe"/>
<import class="java.lang.Object" rename="Universe"/>
<import
class="ClassName"
rename="ShortName"
/>
<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.
5.1.32. Any Copy linkLink copied to clipboard!
<any> mapping element 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.
meta-type 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 id-type. You must specify the mapping from values of the meta-type to class names.
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.
5.2. Hibernate Types Copy linkLink copied to clipboard!
5.2.1. Entities and Values Copy linkLink copied to clipboard!
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.
<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.
5.2.2. Basic Value Types Copy linkLink copied to clipboard!
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_noandtrue_falseare all alternative encodings for a Javabooleanorjava.lang.Boolean. string- A type mapping from
java.lang.StringtoVARCHAR(or OracleVARCHAR2). date, time, timestamp- Type mappings from
java.util.Dateand its subclasses to SQL typesDATE,TIMEandTIMESTAMP(or equivalent). calendar, calendar_date- Type mappings from
java.util.Calendarto SQL typesTIMESTAMPandDATE(or equivalent). big_decimal, big_integer- Type mappings from
java.math.BigDecimalandjava.math.BigIntegertoNUMERIC(or OracleNUMBER). locale, timezone, currency- Type mappings from
java.util.Locale,java.util.TimeZoneandjava.util.CurrencytoVARCHAR(or OracleVARCHAR2). Instances ofLocaleandCurrencyare mapped to their ISO codes. Instances ofTimeZoneare mapped to theirID. class- A type mapping from
java.lang.ClasstoVARCHAR(or OracleVARCHAR2). AClassis mapped to its fully qualified name. binary- Maps byte arrays to an appropriate SQL binary type.
text- Maps long Java strings to a SQL
CLOBorTEXTtype. serializable- Maps serializable Java types to an appropriate SQL binary type. You can also indicate the Hibernate type
serializablewith 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.Clobandjava.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. 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 asimm_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.
binary, blob and clob. Composite identifiers are also allowed. See below for more information.
Type constants defined on org.hibernate.Hibernate. For example, Hibernate.STRING represents the string type.
5.2.3. Custom Value Types Copy linkLink copied to clipboard!
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.
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>
<property name="twoStrings" type="org.hibernate.test.DoubleStringType">
<column name="first_string"/>
<column name="second_string"/>
</property>
<column> tags to map a property to multiple columns.
CompositeUserType, EnhancedUserType, UserCollectionType, and UserVersionType interfaces provide support for more specialized uses.
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>
<property name="priority">
<type name="com.mycompany.usertypes.DefaultValueIntegerType">
<param name="default">0</param>
</type>
</property>
UserType can now retrieve the value for the parameter named default from the Properties object passed to it.
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>
<typedef class="com.mycompany.usertypes.DefaultValueIntegerType" name="default_zero">
<param name="default">0</param>
</typedef>
<property name="priority" type="default_zero"/>
<property name="priority" type="default_zero"/>
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.
5.3. Additional Information Copy linkLink copied to clipboard!
5.3.1. Mapping a Class Multiple Times Copy linkLink copied to clipboard!
entity-name instead of class.
5.3.2. SQL Quoted Identifiers Copy linkLink copied to clipboard!
Dialect. This is usually double quotes, but the SQL Server uses brackets and MySQL uses backticks.
<class name="LineItem" table="`Line Item`">
<id name="id" column="`Item Id`"/><generator class="assigned"/></id>
<property name="itemNumber" column="`Item #`"/>
...
</class>
<class name="LineItem" table="`Line Item`">
<id name="id" column="`Item Id`"/><generator class="assigned"/></id>
<property name="itemNumber" column="`Item #`"/>
...
</class>
5.4. Metadata Alternatives Copy linkLink copied to clipboard!
5.4.1. About Metadata Alternatives Copy linkLink copied to clipboard!
5.4.2. Using XDoclet Markup Copy linkLink copied to clipboard!
@hibernate.tags. We do not cover this approach in this reference guide since it is considered part of XDoclet. However, we include the following example of the Cat class with XDoclet mappings:
5.4.3. Using JDK 5.0 Annotations Copy linkLink copied to clipboard!
EntityManager of JSR-220 (the persistence API). Support for mapping metadata is available via the Hibernate Annotations package as a separate download. Both EJB3 (JSR-220) and Hibernate3 metadata is supported.
5.4.4. Generated Properties Copy linkLink copied to clipboard!
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.
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 the 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.
5.4.5. Auxiliary Database Objects Copy linkLink copied to clipboard!
java.sql.Statement.execute() method is valid (for example, ALTERs, INSERTS, etc.). There are essentially two modes for defining auxiliary database objects:
org.hibernate.mapping.AuxiliaryDatabaseObject interface.
Chapter 6. Collection Mapping Copy linkLink copied to clipboard!
6.1. Persistent Collections Copy linkLink copied to clipboard!
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.)
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() for example, Hibernate will actually replace the HashSet with an instance of Hibernate's own implementation of Set. Be aware of the following errors:
HashMap, HashSet, TreeMap, TreeSet or ArrayList, depending on the interface type.
6.2. Collection Mappings Copy linkLink copied to clipboard!
6.2.1. About Collection Mappings Copy linkLink copied to clipboard!
Note
<set> element is used for mapping properties of type Set.
<set>, there is also <list>, <map>, <bag>, <array> and <primitive-array> mapping elements. The <map> element is representative:
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, JDK1.4 only): 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.
6.2.2. Collection Foreign Keys Copy linkLink copied to clipboard!
<key> element.
not-null="true".
<key column="productSerialNumber" not-null="true"/>
<key column="productSerialNumber" not-null="true"/>
ON DELETE CASCADE.
<key column="productSerialNumber" on-delete="cascade"/>
<key column="productSerialNumber" on-delete="cascade"/>
<key> element.
6.2.3. Collection Elements Copy linkLink copied to clipboard!
<element> or <composite-element>, or in the case of entity references, with <one-to-many> or <many-to-many>. The first two map elements with value semantics, the next two are used to map entity associations.
6.2.4. Indexed Collections Copy linkLink copied to clipboard!
List index, or Map key. The index of a Map may be of any basic type, mapped with <map-key>. It can be an entity reference mapped with <map-key-many-to-many>, or it can be a composite type mapped with <composite-map-key>. The index of an array or list is always of type integer and is mapped using the <list-index> element. The mapped column contains sequential integers that are numbered from zero by default.
<list-index
column="column_name"
base="0|1|..."/>
<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.
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.
<map-key-many-to-many
column="column_name"
formula="any SQL expression"
class="ClassName"
/>
<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.
List as the property type, you can map the property as a Hibernate <bag>. A bag does not retain its order when it is persisted to the database, but it can be optionally sorted or ordered when it is retrieved from the database.
6.2.5. Collections of Values and Many-to-many Associations Copy linkLink copied to clipboard!
<element> tag. For example:
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.
<many-to-many> element.
column (optional): the name of the element foreign key column.
formula (optional): an SQL formula used to evaluate the element foreign key value.
class (required): the name of the associated class.
fetch (optional - defaults to join): enables outer-join or sequential select fetching for this association. This is a special case; for full eager fetching in a single SELECT of an entity and its many-to-many relationships to other entities, you would enable join fetching,not only of the collection itself, but also with this attribute on the <many-to-many> nested element.
unique (optional): enables the DDL generation of a unique constraint for the foreign-key column. This makes the association multiplicity effectively one-to-many.
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, as an alternative to class.
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.
<set name="names" table="person_names">
<key column="person_id"/>
<element column="person_name" type="string"/>
</set>
<set name="names" table="person_names">
<key column="person_id"/>
<element column="person_name" type="string"/>
</set>
order-by attribute:
6.2.6. One-to-many Associations Copy linkLink copied to clipboard!
- 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.
Product to Part requires the existence of a foreign key column and possibly an index column to the Part table. A <one-to-many> tag indicates that this is a one-to-many association.
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.
<one-to-many> element does not need to declare any columns. Nor is it necessary to specify the table name anywhere.
Warning
<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 the discussion of bidirectional associations later in this chapter for more information.
Part entities by name, where partName is a persistent property of Part. Notice the use of a formula-based index:
6.3. Advanced collection Mappings Copy linkLink copied to clipboard!
6.3.1. Sorted Collections Copy linkLink copied to clipboard!
java.util.SortedMap and java.util.SortedSet. You must specify a comparator in the mapping file:
sort attribute are unsorted, natural and the name of a class implementing java.util.Comparator.
java.util.TreeSet or java.util.TreeMap.
order-by attribute of set, bag or map mappings. This solution is only available under JDK 1.4 or higher and is implemented using LinkedHashSet or LinkedHashMap. This performs the ordering in the SQL query and not in the memory.
Note
order-by attribute is an SQL ordering, not an HQL ordering.
filter():
sortedUsers = s.createFilter( group.getUsers(), "order by this.name" ).list();
sortedUsers = s.createFilter( group.getUsers(), "order by this.name" ).list();
6.3.2. Bidirectional Associations Copy linkLink copied to clipboard!
- 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
category.getItems().add(item); // The category now "knows" about the relationship item.getCategories().add(category); // The item now "knows" about the relationship session.persist(item); // The relationship won't be saved! session.persist(category); // The relationship will be saved
category.getItems().add(item); // The category now "knows" about the relationship
item.getCategories().add(category); // The item now "knows" about the relationship
session.persist(item); // The relationship won't be saved!
session.persist(category); // The relationship will be saved
inverse="true".
inverse="true" does not affect the operation of cascades as these are orthogonal concepts.
6.3.3. Bidirectional Associations with Indexed Collections Copy linkLink copied to clipboard!
<list> or <map>, requires special consideration. If there is a property of the child class that maps to the index column you can use inverse="true" on the collection mapping:
inverse="true". Instead, you could use the following mapping:
6.3.4. Ternary Associations Copy linkLink copied to clipboard!
Map with an association as its index:
<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>
<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>
<map name="connections">
<key column="incoming_node_id"/>
<map-key-many-to-many column="outgoing_node_id" class="Node"/>
<many-to-many column="connection_id" class="Connection"/>
</map>
<map name="connections">
<key column="incoming_node_id"/>
<map-key-many-to-many column="outgoing_node_id" class="Node"/>
<many-to-many column="connection_id" class="Connection"/>
</map>
6.3.5. Using an idbag Copy linkLink copied to clipboard!
<idbag> element lets you map a List (or Collection) with bag semantics. For example:
<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.
<idbag> supersedes a regular <bag>. Hibernate can locate individual rows efficiently and update or delete them individually, similar to a list, map or set.
native identifier generation strategy is not supported for <idbag> collection identifiers.
6.4. Collection Example Copy linkLink copied to clipboard!
6.4.1. Collection Examples Copy linkLink copied to clipboard!
Child instances:
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
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
NOT NULL constraint:
NOT NULL constraint on the <key> mapping:
Chapter 7. Association Mappings Copy linkLink copied to clipboard!
7.1. About Association Mappings Copy linkLink copied to clipboard!
Person and Address in all the examples.
7.2. Unidirectional Associations Copy linkLink copied to clipboard!
7.2.1. Unidirectional Many-to-one Copy linkLink copied to clipboard!
create table Person ( personId bigint not null primary key, addressId bigint not null ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key, addressId bigint not null )
create table Address ( addressId bigint not null primary key )
7.2.2. Unidirectional One-to-one Copy linkLink copied to clipboard!
create table Person ( personId bigint not null primary key, addressId bigint not null unique ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key, addressId bigint not null unique )
create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key ) create table Address ( personId bigint not null primary key )
create table Person ( personId bigint not null primary key )
create table Address ( personId bigint not null primary key )
7.2.3. Unidirectional One-to-many Copy linkLink copied to clipboard!
create table Person ( personId bigint not null primary key ) create table Address ( addressId bigint not null primary key, personId bigint not null )
create table Person ( personId bigint not null primary key )
create table Address ( addressId bigint not null primary key, personId bigint not null )
7.3. Unidirectional Associations with Join Tables Copy linkLink copied to clipboard!
7.3.1. Unidirectional One-to-many with Join Tables Copy linkLink copied to clipboard!
unique="true", changes the multiplicity from many-to-many to one-to-many.
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 )
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 )
7.3.2. Unidirectional Many-to-one with Join Tables Copy linkLink copied to clipboard!
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 )
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 )
7.3.3. Unidirectional One-to-one with Join Tables Copy linkLink copied to clipboard!
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 )
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 )
7.3.4. Unidirectional Many-to-many with Join Tables Copy linkLink copied to clipboard!
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 )
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 )
7.4. Bidirectional Associations Copy linkLink copied to clipboard!
7.4.1. Bidirectional One-to-many and Many-to-one Copy linkLink copied to clipboard!
create table Person ( personId bigint not null primary key, addressId bigint not null ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key, addressId bigint not null )
create table Address ( addressId bigint not null primary key )
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":
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.
7.4.2. Bidirectional One-to-one Copy linkLink copied to clipboard!
create table Person ( personId bigint not null primary key, addressId bigint not null unique ) create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key, addressId bigint not null unique )
create table Address ( addressId bigint not null primary key )
create table Person ( personId bigint not null primary key ) create table Address ( personId bigint not null primary key )
create table Person ( personId bigint not null primary key )
create table Address ( personId bigint not null primary key )
7.5. Bidirectional Associations with Join Tables Copy linkLink copied to clipboard!
7.5.1. Bidirectional One-to-many and Many-to-one with Join Tables Copy linkLink copied to clipboard!
inverse="true" can go on either end of the association, on the collection, or on the join.
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 )
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 )
7.5.2. Bidirectional One to one with Join Tables Copy linkLink copied to clipboard!
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 )
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 )
7.5.3. Bidirectional Many-to-many with Join Tables Copy linkLink copied to clipboard!
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 )
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 )
7.6. Other Association Mappings Copy linkLink copied to clipboard!
7.6.1. Complex Association Mappings Copy linkLink copied to clipboard!
accountNumber, effectiveEndDate and effectiveStartDatecolumns, it would be mapped as follows:
effectiveEndDate, by using:
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:
Chapter 8. Component Mapping Copy linkLink copied to clipboard!
8.1. About Component Mapping Copy linkLink copied to clipboard!
8.2. Dependent Objects Copy linkLink copied to clipboard!
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.
pid, birthday, initial, first and last.
<component> element allows a <parent> subelement that maps a property of the component class as a reference back to the containing entity.
8.3. Collections of Dependent Objects Copy linkLink copied to clipboard!
Name). Declare your component collection by replacing the <element> tag with a <composite-element> tag:
Important
Set of composite elements, it is important to implement equals() and hashCode() correctly.
<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.
<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>.
<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:
Purchase can be in the set of an Order, but it cannot be referenced by the Item at the same time.
8.4. Components as Map Indices Copy linkLink copied to clipboard!
<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.
8.5. Components as Composite Identifiers Copy linkLink copied to clipboard!
- It must implement
java.io.Serializable. - It must re-implement
equals()andhashCode()consistently with the database's notion of composite key equality.
Note
IdentifierGenerator to generate composite keys. Instead the application must assign its own identifiers.
<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.
OrderLine table are now composite. Declare this in your mappings for other classes. An association to OrderLine is mapped like this:
Note
<column> tag is an alternative to the column attribute everywhere.
many-to-many association to OrderLine also uses the composite foreign key:
OrderLines in Order would use:
<one-to-many> element declares no columns.
OrderLine itself owns a collection, it also has a composite foreign key.
8.6. Dynamic Components Copy linkLink copied to clipboard!
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>
<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>
<dynamic-component> mapping are identical to <component>. The advantage of this kind of mapping is the ability to determine the actual properties of the bean at deployment time just by editing the mapping document. Runtime manipulation of the mapping document is also possible, using a DOM parser. You can also access, and change, Hibernate's configuration-time metamodel via the Configuration object.
Chapter 9. Inheritance Mapping Copy linkLink copied to clipboard!
9.1. Inheritance Mapping Strategies Copy linkLink copied to clipboard!
9.1.1. About Inheritance Mapping Strategies Copy linkLink copied to clipboard!
- table per class hierarchy
- table per subclass
- table per concrete class
- implicit polymorphism
<subclass>, <joined-subclass> and <union-subclass> mappings under the same root <class> element. It is possible to mix together the table per class hierarchy and table per subclass strategies under the the same <class> element, by combining the <subclass> and <join> elements (see below for an example).
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>
<hibernate-mapping>
<subclass name="DomesticCat" extends="Cat" discriminator-value="D">
<property name="name" type="string"/>
</subclass>
</hibernate-mapping>
9.1.2. Table Per Class Hierarchy Copy linkLink copied to clipboard!
Payment with the implementors CreditCardPayment, CashPayment, and ChequePayment. The table per class hierarchy mapping would display in the following way:
CCTYPE, cannot have NOT NULL constraints.
9.1.3. Table Per Subclass Copy linkLink copied to clipboard!
9.1.4. Table Per Subclass: Using a Discriminator Copy linkLink copied to clipboard!
<subclass> and <join>, as follows:
fetch="select" declaration tells Hibernate not to fetch the ChequePayment subclass data using an outer join when querying the superclass.
9.1.5. Mixing Table Per Class Hierarchy with Table Per Subclass Copy linkLink copied to clipboard!
Payment class is mapped using <many-to-one>.
<many-to-one name="payment" column="PAYMENT_ID" class="Payment"/>
<many-to-one name="payment" column="PAYMENT_ID" class="Payment"/>
9.1.6. Table Per Concrete Class Copy linkLink copied to clipboard!
<union-subclass>.
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.
9.1.7. Table Per Concrete Class Using Implicit Polymorphism Copy linkLink copied to clipboard!
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).
UNIONs when performing polymorphic queries.
Payment is usually mapped using <any>.
9.1.8. Mixing Implicit Polymorphism With Other Inheritance Mappings Copy linkLink copied to clipboard!
<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.
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.
9.2. Limitations Copy linkLink copied to clipboard!
9.2.1. Inheritance Mapping Limitations Copy linkLink copied to clipboard!
<union-subclass> mappings.
- table per class-heirarchy, table per subclass
- Polymorphic many-to-one:
<many-to-one> - Polymorphic one-to-one:
<one-to-one> - Polymorphic one-to-many:
<one-to-many> - Polymorphic many-to-many:
<many-to-many> - Polymorphic
load()orget():s.get(Payment.class, id) - Polymorphic queries:
from Payment p - Polymorphic joins:
from Order o join o.payment p
Outer join fetching is supported.- table per concrete-class (union-subclass)
- Polymorphic many-to-one:
<many-to-one> - Polymorphic one-to-one:
<one-to-one> - Polymorphic one-to-many:
<one-to-many>(forinverse="true"only) - Polymorphic many-to-many:
<many-to-many> - Polymorphic
load()orget():s.get(Payment.class, id) - Polymorphic queries:
from Payment p - Polymorphic joins:
from Order o join o.payment p
Outer join fetching is supported.- table per concrete class (implicit polymorphism
- Polymorphic many-to-one:
<any> - Polymorphic many-to-many:
<many-to-many> - Polymorphic
load()orget():s.createCriteria(Payment.class).add( Restrictions.idEq(id) ).uniqueResult() - Polymorphic queries:
from Payment p
Polymorphic one-to-one, polymorphic one-to-many, polymorphic joins, and outer join fetching are not supported.
Chapter 10. Working with Objects Copy linkLink copied to clipboard!
10.1. About Working with Objects Copy linkLink copied to clipboard!
statements in common JDBC/SQL persistence layers, a natural object-oriented view of persistence in Java applications.
10.2. Hibernate Object States Copy linkLink copied to clipboard!
- Transient - an object is transient if it has just been instantiated using the
newoperator, and it is not associated with a HibernateSession. 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 HibernateSessionto 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 manualUPDATEstatements, orDELETEstatements when an object should be made transient. - Detached - a detached instance is an object that has been persistent, but its
Sessionhas 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 newSessionat 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.
10.3. Making Objects Persistent Copy linkLink copied to clipboard!
DomesticCat fritz = new DomesticCat();
fritz.setColor(Color.GINGER);
fritz.setSex('M');
fritz.setName("Fritz");
Long generatedId = (Long) sess.save(fritz);
DomesticCat fritz = new DomesticCat();
fritz.setColor(Color.GINGER);
fritz.setSex('M');
fritz.setName("Fritz");
Long generatedId = (Long) sess.save(fritz);
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 JPA 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 anINSERTstatement 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.
save().
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.
NOT NULL constraint violations do not occur - Hibernate will take care of everything. Transitive persistence is discussed later in this chapter.
10.4. Loading an Object Copy linkLink copied to clipboard!
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.
Cat fritz = (Cat) sess.load(Cat.class, generatedId);
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) );
// you need to wrap primitive identifiers
long id = 1234;
DomesticCat pk = (DomesticCat) sess.load( DomesticCat.class, new Long(id) );
Cat cat = new DomesticCat(); // load pk's state into cat sess.load( cat, new Long(pkId) ); Set kittens = cat.getKittens();
Cat cat = new DomesticCat();
// load pk's state into cat
sess.load( cat, new Long(pkId) );
Set kittens = cat.getKittens();
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.
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();
}
return cat;
Cat cat = (Cat) sess.get(Cat.class, id);
if (cat==null) {
cat = new Cat();
}
return cat;
SELECT ... FOR UPDATE, using a LockMode. See the API documentation for more information.
Cat cat = (Cat) sess.get(Cat.class, id, LockMode.UPGRADE);
Cat cat = (Cat) sess.get(Cat.class, id, LockMode.UPGRADE);
FOR UPDATE, unless you decide to specify lock or all as a cascade style for the association.
refresh() method. This is useful when database triggers are used to initialize some of the properties of the object.
sess.save(cat); sess.flush(); //force the SQL INSERT sess.refresh(cat); //re-read the state (after the trigger executes)
sess.save(cat);
sess.flush(); //force the SQL INSERT
sess.refresh(cat); //re-read the state (after the trigger executes)
SELECTs will it use? This depends on the fetching strategy. This is explained in detail in the "Fetching Strategies" section.
10.5. Querying Copy linkLink copied to clipboard!
10.5.1. About Querying Copy linkLink copied to clipboard!
10.5.2. Executing Queries Copy linkLink copied to clipboard!
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(). 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.
10.5.3. Iterating Results Copy linkLink copied to clipboard!
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.
10.5.4. Queries that Return Tuples Copy linkLink copied to clipboard!
10.5.5. Scalar Results Copy linkLink copied to clipboard!
select clause. They can even call SQL aggregate functions. Properties or aggregates are considered "scalar" results and not entities in persistent state.
10.5.6. Bind Parameters Copy linkLink copied to clipboard!
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();
//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();
//positional parameter
Query q = sess.createQuery("from DomesticCat cat where cat.name = ?");
q.setString(0, "Izi");
Iterator cats = q.iterate();
10.5.7. Pagination Copy linkLink copied to clipboard!
Query interface:
Query q = sess.createQuery("from DomesticCat cat");
q.setFirstResult(20);
q.setMaxResults(10);
List cats = q.list();
Query q = sess.createQuery("from DomesticCat cat");
q.setFirstResult(20);
q.setMaxResults(10);
List cats = q.list();
10.5.8. Scrollable Iteration Copy linkLink copied to clipboard!
ResultSets, the Query interface can be used to obtain a ScrollableResults object that allows flexible navigation of the query results.
setMaxResult()/setFirstResult() if you need offline pagination functionality.
10.5.9. Externalizing Named Queries Copy linkLink copied to clipboard!
CDATA section if your query contains characters that could be interpreted as markup.
<query name="ByNameAndMaximumWeight"><![CDATA[
from eg.DomesticCat as cat
where cat.name = ?
and cat.weight > ?
] ]></query>
<query name="ByNameAndMaximumWeight"><![CDATA[
from eg.DomesticCat as cat
where cat.name = ?
and cat.weight > ?
] ]></query>
Query q = sess.getNamedQuery("ByNameAndMaximumWeight");
q.setString(0, name);
q.setInteger(1, minWeight);
List cats = q.list();
Query q = sess.getNamedQuery("ByNameAndMaximumWeight");
q.setString(0, name);
q.setInteger(1, minWeight);
List cats = q.list();
<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.
10.5.10. Filtering Collections Copy linkLink copied to clipboard!
this, meaning the current collection element.
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();
Collection blackKittenMates = session.createFilter(
pk.getKittens(),
"select this.mate where this.color = eg.Color.BLACK.intValue")
.list();
Collection tenKittens = session.createFilter(
mother.getKittens(), "")
.setFirstResult(0).setMaxResults(10)
.list();
Collection tenKittens = session.createFilter(
mother.getKittens(), "")
.setFirstResult(0).setMaxResults(10)
.list();
10.5.11. Criteria Queries Copy linkLink copied to clipboard!
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();
Criteria crit = session.createCriteria(Cat.class);
crit.add( Restrictions.eq( "color", eg.Color.BLACK ) );
crit.setMaxResults(10);
List cats = crit.list();
10.5.12. Queries in Native SQL Copy linkLink copied to clipboard!
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:
List cats = session.createSQLQuery("SELECT {cat.*} FROM CAT {cat} WHERE ROWNUM<10")
.addEntity("cat", Cat.class)
.list();
List cats = session.createSQLQuery("SELECT {cat.*} FROM CAT {cat} WHERE ROWNUM<10")
.addEntity("cat", Cat.class)
.list();
10.6. Modifying Objects Copy linkLink copied to clipboard!
10.6.1. Modifying Persistent Objects Copy linkLink copied to clipboard!
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
DomesticCat cat = (DomesticCat) sess.load( Cat.class, new Long(69) );
cat.setName("PK");
sess.flush(); // changes to cat are automatically detected and persisted
SELECT to load an object and an SQL UPDATE to persist its updated state. Hibernate offers an alternate approach by using detached instances.
Important
UPDATE or DELETE statements. Hibernate is a state management service, you do not have to think in statements to use it. JDBC is a perfect API for executing SQL statements, you can get a JDBC Connection at any time by calling session.connection(). Furthermore, the notion of mass operations conflicts with object/relational mapping for online transaction processing-oriented applications. Future versions of Hibernate can, however, provide special mass operation functions.
10.6.2. Modifying Detached Objects Copy linkLink copied to clipboard!
Session.update() or Session.merge() methods:
Cat with identifier catId had already been loaded by secondSession when the application tried to reattach it, an exception would have been thrown.
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.
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 the "Transitive Persistence" section for further information.
lock() method also allows an application to reassociate an object with a new session. However, the detached instance has to be unmodified.
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().
10.7. Other Object Operations Copy linkLink copied to clipboard!
10.7.1. Automatic State Detection Copy linkLink copied to clipboard!
saveOrUpdate() method implements this functionality.
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.
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
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
10.7.2. Deleting Persistent Objects Copy linkLink copied to clipboard!
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);
sess.delete(cat);
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.
10.7.3. Replicating an Object Between Two Datastores Copy linkLink copied to clipboard!
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 identifierReplicationMode.OVERWRITE: overwrites any existing database row with the same identifierReplicationMode.EXCEPTION: throws an exception if there is an existing database row with the same identifierReplicationMode.LATEST_VERSION: overwrites the row if its version number is earlier than the version number of the object, or ignore the object otherwise
10.7.4. Flushing the Session Copy linkLink copied to clipboard!
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() - from
Session.flush()
- all entity insertions in the same order the corresponding objects were saved using
Session.save() - all entity updates
- all collection deletions
- all collection element deletions, updates and insertions
- all collection insertions
- all entity deletions in the same order the corresponding objects were deleted using
Session.delete()
native ID generation are inserted when they are saved.
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.
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 the "Extended Session and Automatic Versioning" section for further information).
10.7.5. Transitive Persistence Copy linkLink copied to clipboard!
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"/>
<one-to-one name="person" cascade="persist"/>
<one-to-one name="person" cascade="persist,delete,lock"/>
<one-to-one name="person" cascade="persist,delete,lock"/>
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.
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.
- It does not usually make sense to enable cascade on a
<many-to-one>or<many-to-many>association. Cascade 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,delete-orphan". - 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".
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.
<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 topersist() - If a parent is passed to
merge(), all children are passed tomerge() - If a parent is passed to
save(),update()orsaveOrUpdate(), all children are passed tosaveOrUpdate() - 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.
save-update and delete-orphan are transitive for all associated entities reachable during flush of the Session.
10.7.6. Using Metadata Copy linkLink copied to clipboard!
ClassMetadata and CollectionMetadata interfaces and the Type hierarchy. Instances of the metadata interfaces can be obtained from the SessionFactory.
Chapter 11. Transactions and Concurrency Copy linkLink copied to clipboard!
11.1. About Transactions and Concurrency Copy linkLink copied to clipboard!
Session, which is also a transaction-scoped cache, Hibernate provides repeatable reads for lookup by identifier and entity queries and not reporting queries that return scalar values.
SELECT FOR UPDATE syntax, a (minor) API for pessimistic locking of rows. Optimistic concurrency control and this API are discussed later in this chapter.
Configuration, SessionFactory, and Session, as well as database transactions and long conversations.
11.2. Session and Transaction Scopes Copy linkLink copied to clipboard!
11.2.1. About Session and Transaction Scopes Copy linkLink copied to clipboard!
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.
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.
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.
11.2.2. Unit of Work Copy linkLink copied to clipboard!
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.
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-to-one and this model is a perfect fit for many applications.
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.
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.
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.
11.2.3. Long Conversations Copy linkLink copied to clipboard!
- The first screen of a dialog opens. The data seen by the user has been loaded in a particular
Sessionand 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.
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.
- 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
Sessioncan 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 theSessionwill not be allowed to be flushed automatically, but explicitly.
11.2.4. Considering Object Identity Copy linkLink copied to clipboard!
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:
- Database Identity
foo.getId().equals( bar.getId() )- JVM Identity
foo==bar
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.
Session. Within a Session the application can safely use == to compare objects.
== 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.
11.2.5. Common Issues Copy linkLink copied to clipboard!
- A
Sessionis not thread-safe. Things that work concurrently, like HTTP requests, session beans, or Swing workers, will cause race conditions if aSessioninstance is shared. If you keep your HibernateSessionin yourHttpSession(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 sameSessionin two concurrently running threads. - An exception thrown by Hibernate means you have to rollback your database transaction and close the
Sessionimmediately (this is discussed in more detail later in the chapter). If yourSessionis 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
Sessioncaches 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 callclear()andevict()to manage theSessioncache, but you should consider a Stored Procedure if you need mass data operations. Some solutions are shown in the "Batch Processing" chapter. Keeping aSessionopen for the duration of a user session also means a higher probability of stale data.
11.3. Database Transaction Demarcation Copy linkLink copied to clipboard!
11.3.1. About Database Transaction Demarcation Copy linkLink copied to clipboard!
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.
Session usually involves four distinct phases:
- flush the session
- commit the transaction
- close the session
- handle exceptions
11.3.2. Non-managed Environment Copy linkLink copied to clipboard!
flush() the Session explicitly: the call to commit() automatically triggers the synchronization depending on the flushing set 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.
RuntimeException (and usually can only clean up 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.
org.hibernate.transaction.JDBCTransactionFactory, which is the default, and for the second example select "thread" as your hibernate.current_session_context_class.
11.3.3. Using JTA Copy linkLink copied to clipboard!
Transaction API. The transaction management code is identical to the non-managed environment.
Session, that is, the getCurrentSession() functionality for easy context propagation, use the JTA UserTransaction API directly:
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.
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".
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.)
11.3.4. Exception Handling Copy linkLink copied to clipboard!
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.
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 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.
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.
11.3.5. Transaction Timeout Copy linkLink copied to clipboard!
Transaction object.
setTimeout() cannot be called in a CMT bean, where transaction timeouts must be defined declaratively.
11.4. Optimistic Concurrency Control Copy linkLink copied to clipboard!
11.4.1. About Optimistic Concurrency Control Copy linkLink copied to clipboard!
11.4.2. Application Version Checking Copy linkLink copied to clipboard!
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.
version property is mapped using <version>, and Hibernate will automatically increment it during flush if the entity is dirty.
Session or detached instances as the design paradigm.
11.4.3. Extended Session and Automatic Versioning Copy linkLink copied to clipboard!
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.
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 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.
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.
Note
Session. These methods are deprecated, as beginning and ending a transaction has the same effect.
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.
CurrentSessionContext for this. See the Hibernate Wiki for examples.
11.4.4. Detached Objects and Automatic Versioning Copy linkLink copied to clipboard!
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().
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.
11.4.5. Customizing Automatic Versioning Copy linkLink copied to clipboard!
optimistic-lock mapping attribute to false. Hibernate will then no longer increment versions if the property is dirty.
optimistic-lock="all" in the <class> mapping. This conceptually only works 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).
optimistic-lock="dirty" when mapping the <class>, Hibernate will only compare dirty fields during flush.
UPDATE statement, with an appropriate WHERE clause, per entity to execute the version check and update the information. If you use transitive persistence to cascade reattachment to associated entities, Hibernate may execute unnecessary updates. This is usually not a problem, but on update triggers in the database might be executed even when no changes have been made to detached instances. You can customize this behavior by setting select-before-update="true" in the <class> mapping, forcing Hibernate to SELECT the instance to ensure that changes did occur before updating the row.
11.5. Pessimistic Locking Copy linkLink copied to clipboard!
11.5.1. About Pessimistic Locking Copy linkLink copied to clipboard!
LockMode class defines the different lock levels that can be acquired by Hibernate. A lock is obtained by the following mechanisms:
LockMode.WRITEis acquired automatically when Hibernate updates or inserts a row.LockMode.UPGRADEcan be acquired upon explicit user request usingSELECT ... FOR UPDATEon databases which support that syntax.LockMode.UPGRADE_NOWAITcan be acquired upon explicit user request using aSELECT ... FOR UPDATE NOWAITunder Oracle.LockMode.READis acquired automatically when Hibernate reads data under Repeatable Read or Serializable isolation level. It can be re-acquired by explicit user request.LockMode.NONErepresents the absence of a lock. All objects switch to this lock mode at the end of aTransaction. Objects associated with the session via a call toupdate()orsaveOrUpdate()also start out in this lock mode.
- A call to
Session.load(), specifying aLockMode. - A call to
Session.lock(). - A call to
Query.setLockMode().
Session.load() is called with UPGRADE or UPGRADE_NOWAIT, and the requested object was not yet loaded by the session, the object is loaded using SELECT ... FOR UPDATE. If load() is called for an object that is already loaded with a less restrictive lock than the one requested, Hibernate calls lock() for that object.
Session.lock() performs a version number check if the specified lock mode is READ, UPGRADE or UPGRADE_NOWAIT. In the case of UPGRADE or UPGRADE_NOWAIT, SELECT ... FOR UPDATE is used.
11.5.2. Connection Release Modes Copy linkLink copied to clipboard!
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 aorg.hibernate.Transactionhas 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 oforg.hibernate.ScrollableResults.
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 theorg.hibernate.transaction.TransactionFactory.getDefaultReleaseMode()method. For JTATransactionFactory, this returns ConnectionReleaseMode.AFTER_STATEMENT; for JDBCTransactionFactory, this returns ConnectionReleaseMode.AFTER_TRANSACTION. Do not change this default behavior as failures due to the value of this setting tend to indicate bugs and/or invalid assumptions in user code.on_close: uses ConnectionReleaseMode.ON_CLOSE. This setting is left for backwards compatibility, but its use is discouraged.after_transaction: uses ConnectionReleaseMode.AFTER_TRANSACTION. This setting should not be used in JTA environments. Also note that with ConnectionReleaseMode.AFTER_TRANSACTION, if a session is considered to be in auto-commit mode, connections will be released as if the release mode were AFTER_STATEMENT.after_statement: uses ConnectionReleaseMode.AFTER_STATEMENT. Additionally, the configuredConnectionProvideris consulted to see if it supports this 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 intoConnectionProvider.getConnection()or in auto-commit environments where it does not matter if we re-establish the same connection.
Chapter 12. Interceptors and Events Copy linkLink copied to clipboard!
12.1. Interceptors Copy linkLink copied to clipboard!
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.
Interceptor directly or extend EmptyInterceptor.
Session-scoped and SessionFactory-scoped.
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() );
Session session = sf.openSession( new AuditInterceptor() );
SessionFactory-scoped interceptor is registered with the Configuration object prior to building the SessionFactory. Unless a session is opened explicitly specifying the interceptor to use, the supplied interceptor will be applied to all sessions opened from that SessionFactory. SessionFactory-scoped interceptors must be thread safe. Ensure that you do not store session-specific states, since multiple sessions will use this interceptor potentially concurrently.
new Configuration().setInterceptor( new AuditInterceptor() );
new Configuration().setInterceptor( new AuditInterceptor() );
12.2. Event System Copy linkLink copied to clipboard!
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.
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:
Configuration cfg = new Configuration();
LoadEventListener[] stack = { new MyLoadListener(), new DefaultLoadEventListener() };
cfg.getEventListeners().setLoadEventListeners(stack);
Configuration cfg = new Configuration();
LoadEventListener[] stack = { new MyLoadListener(), new DefaultLoadEventListener() };
cfg.getEventListeners().setLoadEventListeners(stack);
<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.
12.3. Hibernate Declarative Security Copy linkLink copied to clipboard!
<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"/>
<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"/>
<listener type="..." class="..."/> is shorthand for <event type="..."><listener class="..."/></event> when there is exactly one listener for a particular event type.
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="*"/>
<grant role="admin" entity-name="User" actions="insert,update,read"/>
<grant role="su" entity-name="User" actions="*"/>
Chapter 13. Batch Processing Copy linkLink copied to clipboard!
13.1. About Batch Processing Copy linkLink copied to clipboard!
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.
hibernate.jdbc.batch_size 20
hibernate.jdbc.batch_size 20
identity identifier generator.
hibernate.cache.use_second_level_cache false
hibernate.cache.use_second_level_cache false
CacheMode to disable interaction with the second-level cache.
13.2. Batch Inserts Copy linkLink copied to clipboard!
flush() and then clear() the session regularly in order to control the size of the first-level cache.
13.3. Batch Updates Copy linkLink copied to clipboard!
scroll() to take advantage of server-side cursors for queries that return many rows of data.
13.4. The StatelessSession Interface Copy linkLink copied to clipboard!
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.
Customer instances returned by the query are immediately detached. They are never associated with any persistence context.
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.
13.5. DML-style Operations Copy linkLink copied to clipboard!
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 (Refer to the "Hibernate Query Language" chapter for further information).
UPDATE and DELETE statements is: ( UPDATE | DELETE ) FROM? EntityName (WHERE where_conditions)?.
- 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 join syntax forms, 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.
UPDATE, use the Query.executeUpdate() method. The method is named for those familiar with JDBC's PreparedStatement.executeUpdate():
UPDATE statements, by default, do not affect the version or timestamp property values for the relevant 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.
org.hibernate.usertype.UserVersionType, are not allowed in conjunction with a update versioned statement.
DELETE, use the same Query.executeUpdate() method:
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 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.
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 specificationin the SQLINSERTstatement. 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,INSERTstatements are inherently non-polymorphic. - select_statement can be any valid HQL select query, with the caveat that the return types must match the types expected by the insert. Currently, this is checked during query compilation rather than allowing the check to relegate to the database. This might, however, cause problems between Hibernate
Types which are equivalent as opposed to equal. This might cause issues with mismatches between a property defined as aorg.hibernate.type.DateTypeand a property defined as aorg.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 oforg.hibernate.id.PostInsertIdentifierGenerator. The most notable exception here isorg.hibernate.id.TableHiLoGenerator, which cannot be used because it does not expose a selectable way to get its values. - For properties mapped as either
versionortimestamp, 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 theseed valuedefined by theorg.hibernate.type.VersionTypeis used.
INSERT statement execution:
Chapter 14. The Hibernate Query Language (HQL) Copy linkLink copied to clipboard!
14.1. About the Hibernate Query Language Copy linkLink copied to clipboard!
14.2. Case Sensitivity Copy linkLink copied to clipboard!
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.
14.3. The From Clause Copy linkLink copied to clipboard!
from eg.Cat
from eg.Cat
eg.Cat. You do not usually need to qualify the class name, since auto-import is the default. For example:
from Cat
from Cat
Cat in other parts of the query, you will need to assign an alias. For example:
from Cat as cat
from Cat as cat
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
from Cat cat
from Formula, Parameter
from Formula, Parameter
from Formula as form, Parameter as param
from Formula as form, Parameter as param
domesticCat).
14.4. Associations and Joins Copy linkLink copied to clipboard!
join. For example:
from Cat as cat
inner join cat.mate as mate
left outer join cat.kittens as kitten
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 Cat as cat left join cat.mate.kittens as kittens
from Formula form full join form.parameter param
from Formula form full join form.parameter param
inner joinleft outer joinright outer joinfull join(not usually useful)
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
from Cat as cat
join cat.mate as mate
left join cat.kittens as kitten
with keyword.
from Cat as cat
left join cat.kittens as kitten
with kitten.bodyWeight > 10.0
from Cat as cat
left join cat.kittens as kitten
with kitten.bodyWeight > 10.0
from Cat as cat
inner join fetch cat.mate
left join fetch cat.kittens
from Cat as cat
inner join fetch cat.mate
left join fetch cat.kittens
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
from Cat as cat
inner join fetch cat.mate
left join fetch cat.kittens child
left join fetch child.kittens
Important
fetch construct cannot be used in queries called using iterate() (though scroll() can be used). Fetch should not 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.
fetch all properties.
from Document fetch all properties order by name
from Document fetch all properties order by name
from Document doc fetch all properties where lower(doc.name) like '%cats%'
from Document doc fetch all properties where lower(doc.name) like '%cats%'
14.5. Forms of Join Syntax Copy linkLink copied to clipboard!
implicit and explicit.
explicit form, that is, where the join keyword is explicitly used in the from clause. This is the recommended form.
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%'
from Cat as cat where cat.mate.name like '%s%'
14.6. Referring to Identifier Property Copy linkLink copied to clipboard!
- The special property (lowercase)
idmay 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.
id property can be used to reference the identifier property.
Important
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.
14.7. The Select Clause Copy linkLink copied to clipboard!
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
select mate
from Cat as cat
inner join cat.mate as mate
mates of other Cats. You can express this query more compactly as:
select cat.mate from Cat cat
select cat.mate from Cat cat
select cat.name from DomesticCat cat where cat.name like 'fri%'
select cat.name from DomesticCat cat
where cat.name like 'fri%'
select cust.name.firstName from Customer as cust
select cust.name.firstName from Customer as cust
Object[]:
select mother, offspr, mate.name
from DomesticCat as mother
inner join mother.mate as mate
left outer join mother.kittens as offspr
select mother, offspr, mate.name
from DomesticCat as mother
inner join mother.mate as mate
left outer join mother.kittens as offspr
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
select new list(mother, offspr, mate.name)
from DomesticCat as mother
inner join mother.mate as mate
left outer join mother.kittens as offspr
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
select new Family(mother, mate, offspr)
from DomesticCat as mother
join mother.mate as mate
left join mother.kittens as offspr
as:
select max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n from Cat cat
select max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n
from Cat cat
select new map:
select new map( max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n ) from Cat cat
select new map( max(bodyWeight) as max, min(bodyWeight) as min, count(*) as n )
from Cat cat
Map from aliases to selected values.
14.8. Aggregate Functions Copy linkLink copied to clipboard!
select avg(cat.weight), sum(cat.weight), max(cat.weight), count(cat) from Cat cat
select avg(cat.weight), sum(cat.weight), max(cat.weight), count(cat)
from Cat cat
avg(...), sum(...), min(...), max(...)count(*)count(...), count(distinct ...), count(all...)
select cat.weight + sum(kitten.weight)
from Cat cat
join cat.kittens kitten
group by cat.id, cat.weight
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
select firstName||' '||initial||' '||upper(lastName) from Person
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
select distinct cat.name from Cat cat
select count(distinct cat.name), count(cat) from Cat cat
14.9. Polymorphic Queries Copy linkLink copied to clipboard!
from Cat as cat
from Cat as cat
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:
from java.lang.Object o
from java.lang.Object o
Named might be implemented by various persistent classes:
from Named n, Named m where n.name = m.name
from Named n, Named m where n.name = m.name
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().
14.10. The Where Clause Copy linkLink copied to clipboard!
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'
from Cat where name='Fritz'
from Cat as cat where cat.name='Fritz'
from Cat as cat where cat.name='Fritz'
Cat named 'Fritz'.
select foo from Foo foo, Bar bar where foo.startDate = bar.date
select foo
from Foo foo, Bar bar
where foo.startDate = bar.date
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
from Cat cat where cat.mate.name is not null
from Foo foo where foo.bar.baz.customer.address.city is not null
from Foo foo
where foo.bar.baz.customer.address.city is not null
= operator can be used to compare not only properties, but also instances:
from Cat cat, Cat rival where cat.mate = rival.mate
from Cat cat, Cat rival where cat.mate = rival.mate
select cat, mate from Cat cat, Cat mate where cat.mate = mate
select cat, mate
from Cat cat, Cat mate
where cat.mate = mate
id can be used to reference the unique identifier of an object.
from Cat as cat where cat.id = 123 from Cat as cat where cat.mate.id = 69
from Cat as cat where cat.id = 123
from Cat as cat where cat.mate.id = 69
Person has composite identifiers consisting of country and medicareNumber:
from bank.Person person
where person.id.country = 'AU'
and person.id.medicareNumber = 123456
from bank.Person person
where person.id.country = 'AU'
and person.id.medicareNumber = 123456
from bank.Account account
where account.owner.id.country = 'AU'
and account.owner.id.medicareNumber = 123456
from bank.Account account
where account.owner.id.country = 'AU'
and account.owner.id.medicareNumber = 123456
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.
from Cat cat where cat.class = DomesticCat
from Cat cat where cat.class = DomesticCat
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
from AuditLog log, Payment payment
where log.item.class = 'Payment' and log.item.id = payment.id
log.item.class and payment.class would refer to the values of completely different database columns in the above query.
14.11. Expressions Copy linkLink copied to clipboard!
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 ofandnot member of- "Simple" case,
case ... when ... then ... else ... end, and "searched" case,case when ... then ... else ... end - string concatenation
...||...orconcat(...,...) current_date(),current_time(), andcurrent_timestamp()second(...),minute(...),hour(...),day(...),month(...), andyear(...)- Any function or operator defined by EJB-QL 3.0:
substring(), trim(), lower(), upper(), length(), locate(), abs(), sqrt(), bit_length(), mod() coalesce()andnullif()str()for converting numeric or temporal values to a readable stringcast(... as ...), where the second argument is the name of a Hibernate type, andextract(... from ...)if ANSIcast()andextract()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 specialelements()andindicesfunctions that can be quantified usingsome, all, exists, any, in. - Any database-supported SQL scalar function like
sign(),trunc(),rtrim(), andsin() - JDBC-style positional parameters
? - named parameters
:name,:start_date, and:x1 - SQL literals
'foo',69,6.66E+2,'1970-01-01 10:00:01.0' - Java
public static finalconstantseg.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 between 'A' and 'B'
from DomesticCat cat where cat.name in ( 'Foo', 'Bar', 'Baz' )
from DomesticCat cat where cat.name in ( 'Foo', 'Bar', 'Baz' )
from DomesticCat cat where cat.name not between 'A' and 'B'
from DomesticCat cat where cat.name not between 'A' and 'B'
from DomesticCat cat where cat.name not in ( 'Foo', 'Bar', 'Baz' )
from DomesticCat cat where cat.name not in ( 'Foo', 'Bar', 'Baz' )
is null and is not null can be used to test for null values.
<property name="hibernate.query.substitutions">true 1, false 0</property>
<property name="hibernate.query.substitutions">true 1, false 0</property>
true and false with the literals 1 and 0 in the translated SQL from this HQL:
from Cat cat where cat.alive = true
from Cat cat where cat.alive = true
size or the special size() function.
from Cat cat where cat.kittens.size > 0
from Cat cat where cat.kittens.size > 0
from Cat cat where size(cat.kittens) > 0
from Cat cat where size(cat.kittens) > 0
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:
from Calendar cal where maxelement(cal.holidays) > current_date
from Calendar cal where maxelement(cal.holidays) > current_date
from Order order where maxindex(order.items) > 100
from Order order where maxindex(order.items) > 100
from Order order where minelement(order.items) > 10000
from Order order where minelement(order.items) > 10000
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 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)
select p from NameList list, Person p
where p.name = some elements(list.names)
from Cat cat where exists elements(cat.kittens)
from Cat cat where exists elements(cat.kittens)
from Player p where 3 > all elements(p.scores)
from Player p where 3 > all elements(p.scores)
from Show show where 'fizard' in indices(show.acts)
from Show show where 'fizard' in indices(show.acts)
size, elements, indices, minindex, maxindex, minelement, maxelement - can only be used in the where clause in Hibernate3.
from Order order where order.items[0].id = 1234
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
select person from Person person, Calendar calendar
where calendar.holidays['national day'] = person.birthDay
and person.nationality.calendar = calendar
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[ 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
select item from Item item, Order order
where order.items[ maxindex(order.items) ] = item and order.id = 11
[] can even be an arithmetic expression:
select item from Item item, Order order where order.items[ size(order.items) - 1 ] = item
select item from Item item, Order order
where order.items[ size(order.items) - 1 ] = item
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
select item, index(item) from Order order
join order.items item
where index(item) < 5
from DomesticCat cat where upper(cat.name) like 'FRI%'
from DomesticCat cat where upper(cat.name) like 'FRI%'
14.12. The Order by Clause Copy linkLink copied to clipboard!
from DomesticCat cat order by cat.name asc, cat.weight desc, cat.birthdate
from DomesticCat cat
order by cat.name asc, cat.weight desc, cat.birthdate
asc or desc indicate ascending or descending order respectively.
14.13. The Group by Clause Copy linkLink copied to clipboard!
select cat.color, sum(cat.weight), count(cat) from Cat cat group by cat.color
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
select foo.id, avg(name), max(name)
from Foo foo join foo.names name
group by foo.id
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)
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)
having and order by clauses if they are supported by the underlying database (i.e., not in MySQL).
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.
14.14. Subqueries Copy linkLink copied to clipboard!
from Cat as fatcat
where fatcat.weight > (
select avg(cat.weight) from DomesticCat cat
)
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 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 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
)
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
select cat.id, (select max(kit.weight) from cat.kitten kit)
from Cat as cat
row value constructor syntax. Refer to the "Row Value Constructor Syntax" section for further information.
14.15. HQL Examples Copy linkLink copied to clipboard!
ORDER, ORDER_LINE, PRODUCT, CATALOG and PRICE tables has four inner joins and an (uncorrelated) subselect.
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.
statusChanges collection was mapped as a list, instead of a set, the query would have been much simpler to write.
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.
14.16. Bulk Update and Delete Copy linkLink copied to clipboard!
update, delete and insert ... select ... statements. Refer to the the "DML-style Operations" section for further information.
14.17. HQL Tips Copy linkLink copied to clipboard!
( (Integer) session.createQuery("select count(*) from ....").iterate().next() ).intValue()
( (Integer) session.createQuery("select count(*) from ....").iterate().next() ).intValue()
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)
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)
from User usr where size(usr.messages) >= 1
from User usr where size(usr.messages) >= 1
select usr.id, usr.name
from User usr
join usr.messages msg
group by usr.id, usr.name
having count(msg) >= 1
select usr.id, usr.name
from User usr
join usr.messages msg
group by usr.id, usr.name
having count(msg) >= 1
User with zero messages because of the inner join, the following form is also useful:
select usr.id, usr.name
from User as usr
left join usr.messages as msg
group by usr.id, usr.name
having count(msg) = 0
select usr.id, usr.name
from User as usr
left join usr.messages as msg
group by usr.id, usr.name
having count(msg) = 0
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();
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();
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();
Query q = s.createFilter( collection, "" ); // the trivial filter
q.setMaxResults(PAGE_SIZE);
q.setFirstResult(PAGE_SIZE * pageNumber);
List page = q.list();
Collection orderedCollection = s.createFilter( collection, "order by this.amount" ).list(); Collection counts = s.createFilter( collection, "select this.type, count(this) group by this.type" ).list();
Collection orderedCollection = s.createFilter( collection, "order by this.amount" ).list();
Collection counts = s.createFilter( collection, "select this.type, count(this) group by this.type" ).list();
( (Integer) session.createQuery("select count(*) from ....").iterate().next() ).intValue();
( (Integer) session.createQuery("select count(*) from ....").iterate().next() ).intValue();
14.18. Components Copy linkLink copied to clipboard!
select clause as follows:
select p.name from Person p
select p.name from Person p
select p.name.first from Person p
select p.name.first from Person p
where clause:
from Person p where p.name = :name
from Person p where p.name = :name
from Person p where p.name.first = :firstName
from Person p where p.name.first = :firstName
order by clause:
from Person p order by p.name
from Person p order by p.name
from Person p order by p.name.first
from Person p order by p.name.first
14.19. Row Value Constructor Syntax Copy linkLink copied to clipboard!
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'
from Person p where p.name.first='John' and p.name.last='Jingleheimer-Schmidt'
row value constructor syntax:
from Person p where p.name=('John', 'Jingleheimer-Schmidt')
from Person p where p.name=('John', 'Jingleheimer-Schmidt')
select clause:
select p.name from Person p
select p.name from Person p
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
)
from Cat as cat
where not ( cat.name, cat.color ) in (
select cat.name, cat.color from DomesticCat cat
)
Chapter 15. Criteria Queries Copy linkLink copied to clipboard!
15.1. Creating a Criteria Instance Copy linkLink copied to clipboard!
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();
Criteria crit = sess.createCriteria(Cat.class);
crit.setMaxResults(50);
List cats = crit.list();
15.2. Narrowing the Result Set Copy linkLink copied to clipboard!
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();
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.like("name", "Fritz%") )
.add( Restrictions.between("weight", minWeight, maxWeight) )
.list();
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();
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.sqlRestriction("lower({alias}.name) like lower(?)", "Fritz%", Hibernate.STRING) )
.list();
{alias} placeholder with be replaced by the row alias of the queried entity.
Property instance. You can create a Property by calling Property.forName():
15.3. Ordering the results Copy linkLink copied to clipboard!
org.hibernate.criterion.Order.
15.4. Associations Copy linkLink copied to clipboard!
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();
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.like("name", "F%") )
.createCriteria("kittens")
.add( Restrictions.like("name", "F%") )
.list();
createCriteria() returns a new instance of Criteria that refers to the elements of the kittens collection.
List cats = sess.createCriteria(Cat.class)
.createAlias("kittens", "kt")
.createAlias("mate", "mt")
.add( Restrictions.eqProperty("kt.name", "mt.name") )
.list();
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.)
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.
15.5. Dynamic Association Fetching Copy linkLink copied to clipboard!
setFetchMode().
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.like("name", "Fritz%") )
.setFetchMode("mate", FetchMode.EAGER)
.setFetchMode("kittens", FetchMode.EAGER)
.list();
List cats = sess.createCriteria(Cat.class)
.add( Restrictions.like("name", "Fritz%") )
.setFetchMode("mate", FetchMode.EAGER)
.setFetchMode("kittens", FetchMode.EAGER)
.list();
mate and kittens by outer join.
15.6. Example Queries Copy linkLink copied to clipboard!
org.hibernate.criterion.Example allows you to construct a query criterion from a given instance.
Example is applied.
List results = session.createCriteria(Cat.class)
.add( Example.create(cat) )
.createCriteria("mate")
.add( Example.create( cat.getMate() ) )
.list();
List results = session.createCriteria(Cat.class)
.add( Example.create(cat) )
.createCriteria("mate")
.add( Example.create( cat.getMate() ) )
.list();
15.7. Projections, Aggregation and Grouping Copy linkLink copied to clipboard!
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.rowCount() )
.add( Restrictions.eq("color", Color.BLACK) )
.list();
group by clause.
List results = session.createCriteria(Cat.class)
.setProjection( Projections.alias( Projections.groupProperty("color"), "colr" ) )
.addOrder( Order.asc("colr") )
.list();
List results = session.createCriteria(Cat.class)
.setProjection( Projections.alias( Projections.groupProperty("color"), "colr" ) )
.addOrder( Order.asc("colr") )
.list();
List results = session.createCriteria(Cat.class)
.setProjection( Projections.groupProperty("color").as("colr") )
.addOrder( Order.asc("colr") )
.list();
List results = session.createCriteria(Cat.class)
.setProjection( Projections.groupProperty("color").as("colr") )
.addOrder( Order.asc("colr") )
.list();
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:
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( Property.forName("name") )
.add( Property.forName("color").eq(Color.BLACK) )
.list();
15.8. Detached Queries and Subqueries Copy linkLink copied to clipboard!
DetachedCriteria class allows you to create a query outside the scope of a session and then execute it using an arbitrary Session.
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 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();
DetachedCriteria weights = DetachedCriteria.forClass(Cat.class)
.setProjection( Property.forName("weight") );
session.createCriteria(Cat.class)
.add( Subqueries.geAll("weight", weights) )
.list();
15.9. Queries by Natural Identifier Copy linkLink copied to clipboard!
<natural-id> and enable use of the second-level cache.
Restrictions.naturalId() allows you to make use of the more efficient cache algorithm.
Chapter 16. Native SQL Copy linkLink copied to clipboard!
16.1. About Native SQL Copy linkLink copied to clipboard!
SQLQuery interface, which is obtained by calling Session.createSQLQuery(). The following sections describe how to use this API for querying.
16.2. Using SQLQueries Copy linkLink copied to clipboard!
16.2.1. Using a SQLQuery Copy linkLink copied to clipboard!
sess.createSQLQuery("SELECT * FROM CATS").list();
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").list();
sess.createSQLQuery("SELECT * FROM CATS").list();
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").list();
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);
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME", Hibernate.STRING)
.addScalar("BIRTHDATE", Hibernate.DATE);
- the SQL query string
- the columns and types to return
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.
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME")
.addScalar("BIRTHDATE");
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME")
.addScalar("BIRTHDATE");
ResultSetMetaData is used to determine the type of NAME and BIRTHDATE, where as the type of ID is explicitly specified.
registerHibernateType in the Dialect.
16.2.2. Scalar Queries Copy linkLink copied to clipboard!
sess.createSQLQuery("SELECT * FROM CATS").list();
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").list();
sess.createSQLQuery("SELECT * FROM CATS").list();
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").list();
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);
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME", Hibernate.STRING)
.addScalar("BIRTHDATE", Hibernate.DATE);
- the SQL query string
- the columns and types to return
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.
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME")
.addScalar("BIRTHDATE");
sess.createSQLQuery("SELECT * FROM CATS")
.addScalar("ID", Hibernate.LONG)
.addScalar("NAME")
.addScalar("BIRTHDATE");
ResultSetMetaData is used to determine the type of NAME and BIRTHDATE, where as the type of ID is explicitly specified.
registerHibernateType in the Dialect.
16.2.3. Entity Queries Copy linkLink copied to clipboard!
addEntity().
sess.createSQLQuery("SELECT * FROM CATS").addEntity(Cat.class);
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").addEntity(Cat.class);
sess.createSQLQuery("SELECT * FROM CATS").addEntity(Cat.class);
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE FROM CATS").addEntity(Cat.class);
- the SQL query string
- the entity returned by the query
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);
sess.createSQLQuery("SELECT ID, NAME, BIRTHDATE, DOG_ID FROM CATS").addEntity(Cat.class);
16.2.4. Handling Associations and Collections Copy linkLink copied to clipboard!
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.
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("dog", "cat.dog");
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("dog", "cat.dog");
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("dog", "cat.dogs");
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("dog", "cat.dogs");
16.2.5. Returning Multiple Entities Copy linkLink copied to clipboard!
sess.createSQLQuery("SELECT c.*, m.* FROM CATS c, CATS m WHERE c.MOTHER_ID = c.ID")
.addEntity("cat", Cat.class)
.addEntity("mother", Cat.class)
sess.createSQLQuery("SELECT c.*, m.* FROM CATS c, CATS m WHERE c.MOTHER_ID = c.ID")
.addEntity("cat", Cat.class)
.addEntity("mother", Cat.class)
sess.createSQLQuery("SELECT {cat.*}, {mother.*} FROM CATS c, CATS m WHERE c.MOTHER_ID = c.ID")
.addEntity("cat", Cat.class)
.addEntity("mother", Cat.class)
sess.createSQLQuery("SELECT {cat.*}, {mother.*} FROM CATS c, CATS m WHERE c.MOTHER_ID = c.ID")
.addEntity("cat", Cat.class)
.addEntity("mother", Cat.class)
- the SQL query string, with placeholders for Hibernate to inject column aliases
- the entities returned by the query
16.2.6. Returning Non-managed Entities Copy linkLink copied to clipboard!
| Description | Syntax | Example |
|---|---|---|
| A simple property | {[aliasname].[propertyname] | A_NAME as {item.name} |
| A composite property | {[aliasname].[componentname].[propertyname]} | CURRENCY as {item.amount.currency}, VALUE as {item.amount.value} |
| 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} |
| The element of an collection | {[aliasname].element} | XID as {coll.element} |
| property of the element in the collection | {[aliasname].element.[propertyname]} | NAME as {coll.element.name} |
| All properties of the element in the collection | {[aliasname].element.*} | {coll.element.*} |
| All properties of the the collection | {[aliasname].*} | {coll.*} |
16.2.7. Handling Inheritance Copy linkLink copied to clipboard!
16.2.8. Parameters Copy linkLink copied to clipboard!
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();
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();
16.3. Named SQL Queries Copy linkLink copied to clipboard!
16.3.1. About Named SQL Queries Copy linkLink copied to clipboard!
addEntity().
List people = sess.getNamedQuery("persons")
.setString("namePattern", namePattern)
.setMaxResults(50)
.list();
List people = sess.getNamedQuery("persons")
.setString("namePattern", namePattern)
.setMaxResults(50)
.list();
<return-join> element is use to join associations and the <load-collection> element is used to define queries which initialize collections,
<return-scalar> element:
<resultset> element which will allow you to either reuse them across several named queries or through the setResultSetMapping() API.
List cats = sess.createSQLQuery(
"select {cat.*}, {kitten.*} from cats cat, cats kitten where kitten.mother = cat.id"
)
.setResultSetMapping("catAndKitten")
.list();
List cats = sess.createSQLQuery(
"select {cat.*}, {kitten.*} from cats cat, cats kitten where kitten.mother = cat.id"
)
.setResultSetMapping("catAndKitten")
.list();
16.3.2. Using return-property to Explicitly Specify Column/Alias Names Copy linkLink copied to clipboard!
<return-property>, instead of using the {}-syntax to let Hibernate inject its own aliases.For example:
<return-property> also works with multiple columns. This solves a limitation with the {}-syntax which cannot allow fine grained control of multi-column properties.
<return-property> was used in combination with the {}-syntax for injection. This allows users to choose how they want to refer column and properties.
<return-discriminator> to specify the discriminator column.
16.3.3. Using Stored Procedures for Querying Copy linkLink copied to clipboard!
<return-join> and <load-collection> are not supported.
16.3.4. Rules/limitations for Using Stored Procedures Copy linkLink copied to clipboard!
session.connection(). The rules are different for each database, since database vendors have different stored procedure semantics/syntax.
setFirstResult()/setMaxResults().
{ ? = call functionName(<parameters>) } or { ? = call procedureName(<parameters>}. Native call syntax is not supported.
- A function must return a result set. The first parameter of a procedure must be an
OUTthat returns a result set. This is done by using aSYS_REFCURSORtype in Oracle 9 or 10. In Oracle you need to define aREF CURSORtype. See Oracle literature for further information.
- The procedure must return a result set. Note that since these servers can return multiple result sets and update counts, Hibernate will iterate the results and take the first result that is a result set as its return value. Everything else will be discarded.
- If you can enable
SET NOCOUNT ONin your procedure it will probably be more efficient, but this is not a requirement.
16.4. Additional SQL Functions Copy linkLink copied to clipboard!
16.4.1. Custom SQL for Create, Update and Delete Copy linkLink copied to clipboard!
<sql-insert>, <sql-delete>, and <sql-update> override these strings:
callable attribute is set:
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 view the expected sequence, do not include your custom SQL in the mapping files, as this will override the Hibernate generated static SQL.
16.4.2. Custom SQL for Loading Copy linkLink copied to clipboard!
<set name="employments" inverse="true">
<key/>
<one-to-many class="Employment"/>
<loader query-ref="employments"/>
</set>
<set name="employments" inverse="true">
<key/>
<one-to-many class="Employment"/>
<loader query-ref="employments"/>
</set>
Chapter 17. Filtering Data Copy linkLink copied to clipboard!
17.1. About Filtering Data Copy linkLink copied to clipboard!
17.2. About Hibernate Filters Copy linkLink copied to clipboard!
17.3. Using Hibernate Filters Copy linkLink copied to clipboard!
<filter-def/> element within a <hibernate-mapping/> element:
<filter-def name="myFilter">
<filter-param name="myFilterParam" type="string"/>
</filter-def>
<filter-def name="myFilter">
<filter-param name="myFilterParam" type="string"/>
</filter-def>
<class name="myClass" ...>
...
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</class>
<class name="myClass" ...>
...
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</class>
<set ...>
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</set>
<set ...>
<filter name="myFilter" condition=":myFilterParam = MY_FILTERED_COLUMN"/>
</set>
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");
session.enableFilter("myFilter").setParameter("myFilterParam", "some-value");
17.4. Hibernate Filters Example Copy linkLink copied to clipboard!
<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>
<filter-def name="myFilter" condition="abc > xyz">...</filter-def>
<filter-def name="myOtherFilter">abc=xyz</filter-def>
Chapter 18. XML Mapping Copy linkLink copied to clipboard!
18.1. Working with XML Data Copy linkLink copied to clipboard!
18.1.1. About Working with XML Data Copy linkLink copied to clipboard!
persist(), saveOrUpdate(), merge(), delete(), replicate() (merging is not yet supported).
18.1.2. Specifying XML and Class Mapping Together Copy linkLink copied to clipboard!
18.1.3. Specifying Only an XML Mapping Copy linkLink copied to clipboard!
Maps. The property names are purely logical constructs that can be referred to in HQL queries.
18.2. XML Mapping Metadata Copy linkLink copied to clipboard!
18.2.1. About XML Mapping Metadata Copy linkLink copied to clipboard!
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
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.
embed-xml="true" for too many associations, since XML does not deal well with circularity.
from Customer c left join fetch c.accounts where c.lastName like :lastName
from Customer c left join fetch c.accounts where c.lastName like :lastName
embed-xml="true" on the <one-to-many> mapping, the data might look more like this:
18.2.2. Manipulating XML Data Copy linkLink copied to clipboard!
replicate() operation.
Chapter 19. Improving Performance Copy linkLink copied to clipboard!
19.1. Fetching Strategies Copy linkLink copied to clipboard!
19.1.1. About Fetching Strategies Copy linkLink copied to clipboard!
Criteria query.
- Join fetching: Hibernate retrieves the associated instance or collection in the same
SELECT, using anOUTER JOIN. - Select fetching: a second
SELECTis used to retrieve the associated entity or collection. Unless you explicitly disable lazy fetching by specifyinglazy="false", this second select will only be executed when you access the association. - Subselect fetching: a second
SELECTis used to retrieve the associated collections for all entities retrieved in a previous query or fetch. Unless you explicitly disable lazy fetching by specifyinglazy="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
SELECTby specifying a list of primary or foreign keys.
- 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.
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.
19.1.2. Working with Lazy Associations Copy linkLink copied to clipboard!
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.
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.
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.
19.1.3. Tuning Fetch Strategies Copy linkLink copied to clipboard!
<set name="permissions"
fetch="join">
<key column="userId"/>
<one-to-many class="Permission"/>
</set
<set name="permissions"
fetch="join">
<key column="userId"/>
<one-to-many class="Permission"/>
</set
<many-to-one name="mother" class="Cat" fetch="join"/>
<many-to-one name="mother" class="Cat" fetch="join"/>
fetch strategy defined in the mapping document affects:
- retrieval via
get()orload() - retrieval that happens implicitly when an association is navigated
Criteriaqueries- HQL queries if
subselectfetching is used
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).
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();
User user = (User) session.createCriteria(User.class)
.setFetchMode("permissions", FetchMode.JOIN)
.add( Restrictions.idEq(userId) )
.uniqueResult();
19.1.4. Single-ended Association Proxies Copy linkLink copied to clipboard!
many-to-one and one-to-one associations.
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.
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!
....
}
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!
....
}
==:
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
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
cat.setWeight(11.0); // hit the db to initialize the proxy System.out.println( dc.getWeight() ); // 11.0
cat.setWeight(11.0); // hit the db to initialize the proxy
System.out.println( dc.getWeight() ); // 11.0
final class or a class with any final methods.
CatImpl implements the interface Cat and DomesticCatImpl implements the interface DomesticCat. For example:
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();
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.
Cat, not CatImpl.
equals(): if the persistent class does not overrideequals()hashCode(): if the persistent class does not overridehashCode()- The identifier getter method
equals() or hashCode().
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.
19.1.5. Initializing Collections and Proxies Copy linkLink copied to clipboard!
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.
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.
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.
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
Sessiononly 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 theSessionis 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 aFETCHclause or aFetchMode.JOINinCriteria. 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
Sessionwithmerge()orlock()before accessing uninitialized collections or other proxies. Hibernate does not, and certainly should not, do this automatically since it would introduce impromptu transaction semantics.
( (Integer) s.createFilter( collection, "select count(*)" ).list().get(0) ).intValue()
( (Integer) s.createFilter( collection, "select count(*)" ).list().get(0) ).intValue()
createFilter() method is also used to efficiently retrieve subsets of a collection without needing to initialize the whole collection:
s.createFilter( lazyCollection, "").setFirstResult(0).setMaxResults(10).list();
s.createFilter( lazyCollection, "").setFirstResult(0).setMaxResults(10).list();
19.1.6. Using Batch Fetching Copy linkLink copied to clipboard!
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>
<class name="Person" batch-size="10">...</class>
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>
<class name="Person">
<set name="cats" batch-size="3">
...
</set>
</class>
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.
19.1.7. Using Subselect Fetching Copy linkLink copied to clipboard!
19.1.8. Using Lazy Property Fetching Copy linkLink copied to clipboard!
lazy attribute on your particular property mappings:
fetch all properties in HQL.
19.2. Understanding Collection Performance Copy linkLink copied to clipboard!
19.2.1. Taxonomy Copy linkLink copied to clipboard!
- collections of values
- one-to-many associations
- many-to-many associations
- indexed collections
- sets
- bags
<key> and <index> columns. In this case, collection updates are extremely efficient. The primary key can be efficiently indexed and a particular row can be efficiently located when Hibernate tries to update or delete it.
<key> and element columns. This can be less efficient for some types of collection element, particularly composite elements or large text or binary fields, as the database may not be able to index a complex primary key as efficiently. However, for one-to-many or many-to-many associations, particularly in the case of synthetic identifiers, it is likely to be just as efficient. If you want SchemaExport to actually create the primary key of a <set>, you must declare all columns as not-null="true".
<idbag> mappings define a surrogate key, so they are efficient to update. In fact, they are the best case.
DELETE and recreating the collection whenever it changes. This can be inefficient.
19.2.2. Lists, Maps, idbags and Sets Copy linkLink copied to clipboard!
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.
inverse="true". For these associations, the update is handled by the many-to-one end of the association, and so considerations of collection update performance simply do not apply.
19.2.3. Bags and Lists as Inverse Collections Copy linkLink copied to clipboard!
inverse="true", the standard bidirectional one-to-many relationship idiom, for example, we can add elements to a bag or list without needing to initialize (fetch) the bag elements. This is because, 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();
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();
19.2.4. One Shot Delete Copy linkLink copied to clipboard!
list.clear(), for example). In this case, Hibernate will issue a single DELETE.
INSERT statement and two DELETE statements, unless the collection is a bag. This is certainly desirable.
- delete eighteen rows one by one and then insert three rows
- remove the whole collection in one SQL
DELETEand insert all five current elements one by one
inverse="true".
19.3. Monitoring Performance Copy linkLink copied to clipboard!
19.3.1. About Monitoring Performance Copy linkLink copied to clipboard!
SessionFactory.
19.3.2. Monitoring a SessionFactory Copy linkLink copied to clipboard!
SessionFactory metrics in two ways. Your first option is to call sessionFactory.getStatistics() and read or display the Statistics yourself.
StatisticsService MBean. You can enable a single MBean for all your SessionFactory or one per factory. See the following code for minimalistic configuration examples:
SessionFactory:
- at configuration time, set
hibernate.generate_statisticstofalse
- at runtime:
sf.getStatistics().setStatisticsEnabled(true)orhibernateStatsBean.setStatisticsEnabled(true)
clear() method. A summary can be sent to a logger (info level) using the logSummary() method.
19.3.3. Performance Metrics Copy linkLink copied to clipboard!
Statistics interface API, in three categories:
- Metrics related to the general
Sessionusage, 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.
Statistics, EntityStatistics, CollectionStatistics, SecondLevelCacheStatistics, and QueryStatistics API Javadoc for more information. The following code is a simple example:
getQueries(), getEntityNames(), getCollectionRoleNames(), and getSecondLevelCacheRegionNames().
Chapter 20. Toolset Guide Copy linkLink copied to clipboard!
20.1. About the Toolset Guide Copy linkLink copied to clipboard!
- 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.
hbm2ddl.It can even be used from "inside" Hibernate.
20.2. Automatic Schema Generation Copy linkLink copied to clipboard!
20.2.1. About Automatic Schema Generation Copy linkLink copied to clipboard!
- 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.
hbm2ddl.It can even be used from "inside" Hibernate.
20.2.2. Customizing the Schema Copy linkLink copied to clipboard!
length, precision and scale. You can set the length, precision and scale of a column with this attribute.
<property name="zip" length="5"/>
<property name="zip" length="5"/>
<property name="balance" precision="12" scale="2"/>
<property name="balance" precision="12" scale="2"/>
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"/>
<many-to-one name="bar" column="barId" not-null="true"/>
<element column="serialNumber" type="long" not-null="true" unique="true"/>
<element column="serialNumber" type="long" not-null="true" unique="true"/>
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"/>
<many-to-one name="org" column="orgId" unique-key="OrgEmployeeId"/>
<property name="employeeId" unique-key="OrgEmployee"/>
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"/>
<property name="lastName" index="CustName"/>
<property name="firstName" index="CustName"/>
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-to-one name="bar" column="barId" foreign-key="FKFooBar"/>
<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>
<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>
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.
<property name="credits" type="integer" insert="false">
<column name="credits" default="10"/>
</property>
<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>
<version name="version" type="integer" insert="false">
<column name="version" default="0"/>
</property>
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>
<property name="balance" type="float">
<column name="balance" sql-type="decimal(13,3)"/>
</property>
check attribute allows you to specify a check constraint.
<property name="foo" type="integer">
<column name="foo" check="foo > 10"/>
</property>
<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>
<class name="Foo" table="foos" check="bar < 100.0">
...
<property name="bar" type="float"/>
</class>
| 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 |
foreign-key | foreign_key_name | specifies the name of the foreign key constraint generated for an association, for a <one-to-one>, <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 |
<comment> element allows you to specify comments for the generated schema.
<class name="Customer" table="CurCust">
<comment>Current customers only</comment>
...
</class>
<class name="Customer" table="CurCust">
<comment>Current customers only</comment>
...
</class>
<property name="balance">
<column name="bal">
<comment>Balance in USD</comment>
</column>
</property>
<property name="balance">
<column name="bal">
<comment>Balance in USD</comment>
</column>
</property>
comment on table or comment on column statement in the generated DDL where supported.
20.2.3. Running the Tool Copy linkLink copied to clipboard!
SchemaExport tool writes a DDL script to standard out and/or executes the DDL statements.
SchemaExport command line options
java -cphibernate_classpathsorg.hibernate.tool.hbm2ddl.SchemaExport options mapping_files
| Option | Description |
|---|---|
--quiet | do not output the script to stdout |
--drop | only drop the tables |
--create | only create the tables |
--text | do not export to the database |
--output=my_schema.ddl | output the ddl script to a file |
--naming=eg.MyNamingStrategy | select a NamingStrategy |
--config=hibernate.cfg.xml | read Hibernate configuration from an XML file |
--properties=hibernate.properties | read database properties from a file |
--format | format the generated SQL nicely in the script |
--delimiter=; | set an end of line delimiter for the script |
SchemaExport in your application:
Configuration cfg = ....; new SchemaExport(cfg).create(false, true);
Configuration cfg = ....;
new SchemaExport(cfg).create(false, true);
20.2.4. Database Properties Copy linkLink copied to clipboard!
- as system properties with
-D<property> - in
hibernate.properties - in a named properties file with
--properties
| Property Name | Description |
|---|---|
hibernate.connection.driver_class | jdbc driver class |
hibernate.connection.url | jdbc url |
hibernate.connection.username | database user |
hibernate.connection.password | user password |
hibernate.dialect | dialect |
20.2.5. Using Ant Copy linkLink copied to clipboard!
SchemaExport from your Ant build script:
20.2.6. Incremental Schema Updates Copy linkLink copied to clipboard!
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 -cphibernate_classpathsorg.hibernate.tool.hbm2ddl.SchemaUpdate options mapping_files
| Option | Description |
|---|---|
--quiet | do not output the script to stdout |
--text | do not export the script to the database |
--naming=eg.MyNamingStrategy | select a NamingStrategy |
--properties=hibernate.properties | read database properties from a file |
--config=hibernate.cfg.xml | specify a .cfg.xml file |
SchemaUpdate in your application:
Configuration cfg = ....; new SchemaUpdate(cfg).execute(false);
Configuration cfg = ....;
new SchemaUpdate(cfg).execute(false);
20.2.7. Using Ant for Incremental Schema Updates Copy linkLink copied to clipboard!
SchemaUpdate from the Ant script:
20.2.8. Schema Validation Copy linkLink copied to clipboard!
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 -cphibernate_classpathsorg.hibernate.tool.hbm2ddl.SchemaValidator options mapping_files
SchemaValidator command line options:
| Option | Description |
|---|---|
--naming=eg.MyNamingStrategy | select a NamingStrategy |
--properties=hibernate.properties | read database properties from a file |
--config=hibernate.cfg.xml | specify a .cfg.xml file |
SchemaValidator in your application:
Configuration cfg = ....; new SchemaValidator(cfg).validate();
Configuration cfg = ....;
new SchemaValidator(cfg).validate();
20.2.9. Using Ant for Schema Validation Copy linkLink copied to clipboard!
SchemaValidator from the Ant script:
Chapter 21. A Parent/Child Example Copy linkLink copied to clipboard!
21.1. About the Parent/Child Example Copy linkLink copied to clipboard!
Parent and Child as entity classes with a <one-to-many> association from Parent to Child. The alternative approach is to declare the Child as a <composite-element>. The default semantics of a one-to-many association in Hibernate are much less close to the usual semantics of a parent/child relationship than those of a composite element mapping. We will explain how to use a bidirectional one-to-many association with cascades to model a parent/child relationship efficiently and elegantly.
21.2. About Collections Copy linkLink copied to clipboard!
- 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.
21.3. Bidirectional One-to-many Example Copy linkLink copied to clipboard!
<one-to-many> association from Parent to Child.
<set name="children">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
<set name="children">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
Parent p = .....; Child c = new Child(); p.getChildren().add(c); session.save(c); session.flush();
Parent p = .....;
Child c = new Child();
p.getChildren().add(c);
session.save(c);
session.flush();
- an
INSERTto create the record forc - an
UPDATEto create the link fromptoc
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>
<set name="children">
<key column="parent_id" not-null="true"/>
<one-to-many class="Child"/>
</set>
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"/>
<many-to-one name="parent" column="parent_id" not-null="true"/>
parent property to the Child class.
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>
<set name="children" inverse="true">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
Child:
INSERT would now be issued.
addChild() method of Parent.
public void addChild(Child c) {
c.setParent(this);
children.add(c);
}
public void addChild(Child c) {
c.setParent(this);
children.add(c);
}
Child looks like this:
Parent p = (Parent) session.load(Parent.class, pid); Child c = new Child(); p.addChild(c); session.save(c); session.flush();
Parent p = (Parent) session.load(Parent.class, pid);
Child c = new Child();
p.addChild(c);
session.save(c);
session.flush();
21.4. Cascading Life Cycle Copy linkLink copied to clipboard!
save() by using cascades.
<set name="children" inverse="true" cascade="all">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
<set name="children" inverse="true" cascade="all">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
Parent p = (Parent) session.load(Parent.class, pid); Child c = new Child(); p.addChild(c); session.flush();
Parent p = (Parent) session.load(Parent.class, pid);
Child c = new Child();
p.addChild(c);
session.flush();
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();
Parent p = (Parent) session.load(Parent.class, pid);
session.delete(p);
session.flush();
Parent p = (Parent) session.load(Parent.class, pid); Child c = (Child) p.getChildren().iterator().next(); p.getChildren().remove(c); c.setParent(null); session.flush();
Parent p = (Parent) session.load(Parent.class, pid);
Child c = (Child) p.getChildren().iterator().next();
p.getChildren().remove(c);
c.setParent(null);
session.flush();
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();
Parent p = (Parent) session.load(Parent.class, pid);
Child c = (Child) p.getChildren().iterator().next();
p.getChildren().remove(c);
session.delete(c);
session.flush();
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>
<set name="children" inverse="true" cascade="all-delete-orphan">
<key column="parent_id"/>
<one-to-many class="Child"/>
</set>
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().
21.5. Cascades and Unsaved-value Copy linkLink copied to clipboard!
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. (Refer to the "Automatic State Detection: section for further information) In Hibernate3, it is no longer necessary to specify an unsaved-value explicitly.
parent and child and insert newChild:
21.6. Conclusion Copy linkLink copied to clipboard!
<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.
Chapter 22. Weblog Application Example Copy linkLink copied to clipboard!
22.1. Persistent Classes Copy linkLink copied to clipboard!
22.2. Hibernate Mappings Copy linkLink copied to clipboard!
22.3. Hibernate Code Copy linkLink copied to clipboard!
Chapter 23. Various Mappings Example Copy linkLink copied to clipboard!
23.1. Employer/Employee Copy linkLink copied to clipboard!
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.
SchemaExport.
23.2. Author/Work Copy linkLink copied to clipboard!
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.
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:
23.3. Customer/Order/Product Copy linkLink copied to clipboard!
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.
customers, orders, line_items and products hold customer, order, order line item and product data respectively. line_items also acts as an association table linking orders with products.
23.4. Miscellaneous Example Mappings Copy linkLink copied to clipboard!
23.4.1. About the Miscellaneous Example Mappings Copy linkLink copied to clipboard!
test folder of the Hibernate distribution.
23.4.2. Typed One-to-one Association Copy linkLink copied to clipboard!
23.4.3. Composite Key Example Copy linkLink copied to clipboard!
23.4.5. Content Based Discrimination Copy linkLink copied to clipboard!
23.4.6. Associations on Alternate Keys Copy linkLink copied to clipboard!
Chapter 24. Best Practices Copy linkLink copied to clipboard!
24.1. Hibernate Best Practices Copy linkLink copied to clipboard!
- Write fine-grained classes and map them using
<component>: - Use an
Addressclass to encapsulatestreet,suburb,state,postcode. This encourages code reuse and simplifies refactoring. - Declare identifier properties on persistent classes:
- Hibernate makes identifier properties optional. There are a range of reasons why you should use them. We recommend that identifiers be 'synthetic', that is, generated with no business meaning.
- Identify natural keys:
- Identify natural keys for all entities, and map them using
<natural-id>. Implementequals()andhashCode()to compare the properties that make up the natural key. - Place each class mapping in its own file:
- Do not use a single monolithic mapping document. Map
com.eg.Fooin the filecom/eg/Foo.hbm.xml. This makes sense, particularly in a team environment. - Load mappings as resources:
- Deploy the mappings along with the classes they map.
- Consider externalizing query strings:
- This is recommended if your queries call non-ANSI-standard SQL functions. Externalizing the query strings to mapping files will make the application more portable.
- Use bind variables.
- As in JDBC, always replace non-constant values by "?". Do not use string manipulation to bind a non-constant value in a query. You should also consider using named parameters in queries.
- Do not manage your own JDBC connections:
- Hibernate allows the application to manage JDBC connections, but his approach should be considered a last-resort. If you cannot use the built-in connection providers, consider providing your own implementation of
org.hibernate.connection.ConnectionProvider. - Consider using a custom type:
- Suppose you have a Java type from a library that needs to be persisted but does not provide the accessors needed to map it as a component. You should consider implementing
org.hibernate.UserType. This approach frees the application code from implementing transformations to/from a Hibernate type. - Use hand-coded JDBC in bottlenecks:
- In performance-critical areas of the system, some kinds of operations might benefit from direct JDBC. Do not assume, however, that JDBC is necessarily faster. Please wait until you know something is a bottleneck. If you need to use direct JDBC, you can open a Hibernate Session and wrap your JDBC operation as a Work object with
session.doWork(Work). This way you can still use the same transaction strategy and underlying connection provider. - Understand
Sessionflushing: - Sometimes the Session synchronizes its persistent state with the database. Performance will be affected if this process occurs too often. You can sometimes minimize unnecessary flushing by disabling automatic flushing, or even by changing the order of queries and other operations within a particular transaction.
- In a three tiered architecture, consider using detached objects:
- When using a servlet/session bean architecture, you can pass persistent objects loaded in the session bean to and from the servlet/JSP layer. Use a new session to service each request. Use
Session.merge()orSession.saveOrUpdate()to synchronize objects with the database. - In a two tiered architecture, consider using long persistence contexts:
- Database Transactions have to be as short as possible for best scalability. However, it is often necessary to implement long running application transactions, a single unit-of-work from the point of view of a user. An application transaction might span several client request/response cycles. It is common to use detached objects to implement application transactions. An appropriate alternative in a two tiered architecture, is to maintain a single open persistence contact session for the whole life cycle of the application transaction. Then simply disconnect from the JDBC connection at the end of each request and reconnect at the beginning of the subsequent request. Never share a single session across more than one application transaction or you will be working with stale data.
- Do not treat exceptions as recoverable:
- This is more of a necessary practice than a "best" practice. When an exception occurs, roll back the
Transactionand close theSession. If you do not do this, Hibernate cannot guarantee that in-memory state accurately represents the persistent state. For example, do not useSession.load()to determine if an instance with the given identifier exists on the database; useSession.get()or a query instead. - Prefer lazy fetching for associations:
- Use eager fetching sparingly. Use proxies and lazy collections for most associations to classes that are not likely to be completely held in the second-level cache. For associations to cached classes, where there is an a extremely high probability of a cache hit, explicitly disable eager fetching using
lazy="false". When join fetching is appropriate to a particular use case, use a query with aleft join fetch. - Use the open session in view pattern, or a disciplined assembly phase to avoid problems with unfetched data:
- Hibernate frees the developer from writing tedious Data Transfer Objects (DTO). In a traditional EJB architecture, DTOs serve dual purposes: first, they work around the problem that entity beans are not serializable; second, they implicitly define an assembly phase where all data to be used by the view is fetched and marshalled into the DTOs before returning control to the presentation tier. Hibernate eliminates the first purpose. Unless you are prepared to hold the persistence context (the session) open across the view rendering process, you will still need an assembly phase. Think of your business methods as having a strict contract with the presentation tier about what data is available in the detached objects. This is not a limitation of Hibernate. It is a fundamental requirement of safe transactional data access.
- Consider abstracting your business logic from Hibernate:
- Hide Hibernate data-access code behind an interface. Combine the DAO and Thread Local Session patterns. You can even have some classes persisted by handcoded JDBC associated to Hibernate via a
UserType. This advice is, however, intended for "sufficiently large" applications. It is not appropriate for an application with five tables. - Do not use exotic association mappings:
- Practical test cases for real many-to-many associations are rare. Most of the time you need additional information stored in the "link table". In this case, it is much better to use two one-to-many associations to an intermediate link class. In fact, most associations are one-to-many and many-to-one. For this reason, you should proceed cautiously when using any other association style.
- Prefer bidirectional associations:
- Unidirectional associations are more difficult to query. In a large application, almost all associations must be navigable in both directions in queries.
Chapter 25. Database Portability Considerations Copy linkLink copied to clipboard!
25.1. Portability Basics Copy linkLink copied to clipboard!
25.2. Dialect Copy linkLink copied to clipboard!
org.hibernate.dialect.Dialect contract. A dialect encapsulates all the differences in how Hibernate must communicate with a particular database to accomplish some task like getting a sequence value or structuring a SELECT query. Hibernate bundles a wide range of dialects for many of the most popular databases. If you find that your particular database is not among them, it is not terribly difficult to write your own.
25.3. Dialect Resolution Copy linkLink copied to clipboard!
java.sql.DatabaseMetaData obtained from a java.sql.Connection to that database. This was much better, expect that this resolution was limited to databases Hibernate know about ahead of time and was in no way configurable or overrideable.
org.hibernate.dialect.resolver.DialectResolver which defines only a single method:
public Dialect resolveDialect(DatabaseMetaData metaData) throws JDBCConnectionException
public Dialect resolveDialect(DatabaseMetaData metaData) throws JDBCConnectionException
org.hibernate.exception.JDBCConnectionException as possibly being thrown. A JDBCConnectionException here is interpreted to imply a "non transient" (aka non-recoverable) connection problem and is used to indicate an immediate stop to resolution attempts. All other exceptions result in a warning and continuing on to the next resolver.
DIALECT_RESOLVERS constant on org.hibernate.cfg.Environment).
25.4. Identifier Generation Copy linkLink copied to clipboard!
Note
Note
org.hibernate.id.enhanced.SequenceStyleGeneratororg.hibernate.id.enhanced.TableGenerator
org.hibernate.id.enhanced.SequenceStyleGenerator mimics the behavior of a sequence on databases which do not support sequences by using a table.
Appendix A. Revision History Copy linkLink copied to clipboard!
| Revision History | |||
|---|---|---|---|
| Revision 3.0.0-6.1 | Wed Feb 11 2015 | ||
| |||
| Revision 3.0.0-6 | Mon Jun 17 2013 | ||
| |||