Hibernate.orgCommunity Documentation
It is useful for the application to react to certain events that occur inside Hibernate. This allows for the implementation of generic functionality and the extension of Hibernate functionality.
If you have to react to particular events in the persistence layer, you can also use the Hibernate event architecture. The event system can be used in place of or in addition to interceptors.
Many methods of the Session
interface correlate to an event type. The
full range of defined event types is declared as enum values on
org.hibernate.event.spi.EventType
. When a request is made of one of these methods,
the Session generates an appropriate event and passes it to the configured event listener(s) for that type.
Applications are free to implement a customization of one of the listener interfaces
(i.e., the LoadEvent
is processed by the registered implementation
of the LoadEventListener
interface), in which case their
implementation would be responsible for processing any load()
requests
made of the Session
.
The listeners should be considered stateless; they are shared between requests, and should not save any state as instance variables.
A custom listener implements the appropriate interface for the event it wants to process and/or extend one of the convenience base classes (or even the default event listeners used by Hibernate out-of-the-box as these are declared non-final for this purpose). Here is an example of a custom load event listener:
Usually, declarative security in Hibernate applications is managed in a session facade layer. Hibernate allows certain actions to be permissioned via JACC, and authorized via JAAS. This is an optional functionality that is built on top of the event architecture.
First, you must configure the appropriate event listeners, to enable the use of JACC authorization.
Again, see ??? for the details. Below is an example of an
appropriate org.hibernate.integrator.spi.Integrator
implementation for
this purpose.
You must also decide how to configure your JACC provider. Consult your JACC provider documentation.
JPA also defines a more limited set of callbacks through annotations.
Table 13.1. Callback annotations
Type | Description |
---|---|
@PrePersist | Executed before the entity manager persist operation is actually executed or cascaded. This call is synchronous with the persist operation. |
@PreRemove | Executed before the entity manager remove operation is actually executed or cascaded. This call is synchronous with the remove operation. |
@PostPersist | Executed after the entity manager persist operation is actually executed or cascaded. This call is invoked after the database INSERT is executed. |
@PostRemove | Executed after the entity manager remove operation is actually executed or cascaded. This call is synchronous with the remove operation. |
@PreUpdate | Executed before the database UPDATE operation. |
@PostUpdate | Executed after the database UPDATE operation. |
@PostLoad | Executed after an entity has been loaded into the current persistence context or an entity has been refreshed. |
There are 2 available approaches defined for specifying callback handling:
The first approach is to annotate methods on the entity itself to receive notification of particular entity life cycle event(s).
The second is to use a separate entity listener class. An entity listener is a stateless class
with a no-arg constructor. The callback annotations are placed on a method of this class instead
of the entity class. The entity listener class is then associated with the entity using the
javax.persistence.EntityListeners
annotation
Example 13.3. Example of specifying JPA callbacks
@Entity @EntityListeners( LastUpdateListener.class ) public class Cat { @Id private Integer id; private String name; private Calendar dateOfBirth; @Transient private int age; private Date lastUpdate; //getters and setters /** * Set my transient property at load time based on a calculation, * note that a native Hibernate formula mapping is better for this purpose. */ @PostLoad public void calculateAge() { Calendar birth = new GregorianCalendar(); birth.setTime(dateOfBirth); Calendar now = new GregorianCalendar(); now.setTime( new Date() ); int adjust = 0; if ( now.get(Calendar.DAY_OF_YEAR) - birth.get(Calendar.DAY_OF_YEAR) < 0) { adjust = -1; } age = now.get(Calendar.YEAR) - birth.get(Calendar.YEAR) + adjust; } } public class LastUpdateListener { /** * automatic property set before any database persistence */ @PreUpdate @PrePersist public void setLastUpdate(Cat o) { o.setLastUpdate( new Date() ); } }
These approaches can be mixed, meaning you can use both together.
Regardless of whether the callback method is defined on the entity or on an entity listener, it must have
a void-return signature. The name of the method is irrelevant as it is the placement of the callback
annotations that makes the method a callback. In the case of callback methods defined on the
entity class, the method must additionally have a no-argument signature. For callback methods defined on
an entity listener class, the method must have a single argument signature; the type of that argument can
be either java.lang.Object
(to facilitate attachment to multiple entities) or the
specific entity type.
A callback method can throw a RuntimeException
. If the callback method does
throw a RuntimeException
, then the current transaction, if any, must be rolled back.
A callback method must not invoke EntityManager
or
Query
methods!
It is possible that multiple callback methods are defined for a particular lifecycle event. When that is the case, the defined order of execution is well defined by the JPA spec (specifically section 3.5.4):
Any default listeners associated with the entity are invoked first, in the order they were
specified in the XML. See the javax.persistence.ExcludeDefaultListeners
annotation.
Next, entity listener class callbacks associated with the entity hierarchy are invoked, in the order
they are defined in the EntityListeners
. If multiple classes in the
entity hierarchy define entity listeners, the listeners defined for a superclass are invoked before
the listeners defined for its subclasses. See the
javax.persistence.ExcludeSuperclassListeners
annotation.
Lastly, callback methods defined on the entity hierarchy are invoked. If a callback type is annotated on both an entity and one or more of its superclasses without method overriding, both would be called, the most general superclass first. An entity class is also allowed to override a callback method defined in a superclass in which case the super callback would not get invoked; the overriding method would get invoked provided it is annotated.