Class OpenSessionInViewInterceptor
- All Implemented Interfaces:
AsyncWebRequestInterceptor
,WebRequestInterceptor
Session
to the
thread for the entire processing of the request.
This class is a concrete expression of the "Open Session in View" pattern, which is a pattern that allows for the lazy loading of associations in web views despite the original transactions already being completed.
This interceptor makes Hibernate Sessions available via the current thread,
which will be autodetected by transaction managers. It is suitable for service layer
transactions via HibernateTransactionManager
as well as for non-transactional execution (if configured appropriately).
In contrast to OpenSessionInViewFilter
, this interceptor is configured
in a Spring application context and can thus take advantage of bean wiring.
WARNING: Applying this interceptor to existing logic can cause issues
that have not appeared before, through the use of a single Hibernate
Session
for the processing of an entire request. In particular, the
reassociation of persistent objects with a Hibernate Session
has to
occur at the very beginning of request processing, to avoid clashes with already
loaded instances of the same objects.
- Since:
- 4.2
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
afterCompletion
(WebRequest request, Exception ex) Unbind the HibernateSession
from the thread and close it).void
afterConcurrentHandlingStarted
(WebRequest request) Called instead ofpostHandle
andafterCompletion
, when the handler started handling the request concurrently.protected String
Return the name of the request attribute that identifies that a request is already intercepted.Return the Hibernate SessionFactory that should be used to create Hibernate Sessions.protected Session
Open a Session for the SessionFactory that this interceptor uses.void
postHandle
(WebRequest request, ModelMap model) Intercept the execution of a request handler after its successful invocation, right before view rendering (if any).void
preHandle
(WebRequest request) Open a new HibernateSession
according and bind it to the thread via theTransactionSynchronizationManager
.void
setSessionFactory
(SessionFactory sessionFactory) Set the Hibernate SessionFactory that should be used to create Hibernate Sessions.
-
Field Details
-
PARTICIPATE_SUFFIX
Suffix that gets appended to theSessionFactory
toString()
representation for the "participate in existing session handling" request attribute. -
logger
-
-
Constructor Details
-
OpenSessionInViewInterceptor
public OpenSessionInViewInterceptor()
-
-
Method Details
-
setSessionFactory
Set the Hibernate SessionFactory that should be used to create Hibernate Sessions. -
getSessionFactory
Return the Hibernate SessionFactory that should be used to create Hibernate Sessions. -
preHandle
Open a new HibernateSession
according and bind it to the thread via theTransactionSynchronizationManager
.- Specified by:
preHandle
in interfaceWebRequestInterceptor
- Parameters:
request
- the current web request- Throws:
DataAccessException
-
postHandle
Description copied from interface:WebRequestInterceptor
Intercept the execution of a request handler after its successful invocation, right before view rendering (if any).Allows for modifying context resources after successful handler execution (for example, flushing a Hibernate Session).
- Specified by:
postHandle
in interfaceWebRequestInterceptor
- Parameters:
request
- the current web requestmodel
- the map of model objects that will be exposed to the view (may benull
). Can be used to analyze the exposed model and/or to add further model attributes, if desired.
-
afterCompletion
Unbind the HibernateSession
from the thread and close it).- Specified by:
afterCompletion
in interfaceWebRequestInterceptor
- Parameters:
request
- the current web requestex
- exception thrown on handler execution, if any- Throws:
DataAccessException
- See Also:
-
afterConcurrentHandlingStarted
Description copied from interface:AsyncWebRequestInterceptor
Called instead ofpostHandle
andafterCompletion
, when the handler started handling the request concurrently.- Specified by:
afterConcurrentHandlingStarted
in interfaceAsyncWebRequestInterceptor
- Parameters:
request
- the current request
-
openSession
Open a Session for the SessionFactory that this interceptor uses.The default implementation delegates to the
SessionFactory.openSession()
method and sets theSession
's flush mode to "MANUAL".- Returns:
- the Session to use
- Throws:
DataAccessResourceFailureException
- if the Session could not be created- See Also:
-
getParticipateAttributeName
Return the name of the request attribute that identifies that a request is already intercepted.The default implementation takes the
toString()
representation of theSessionFactory
instance and appendsPARTICIPATE_SUFFIX
.
-