public class

OpenEntityManagerInViewFilter

extends OncePerRequestFilter
java.lang.Object
   ↳ org.springframework.web.filter.GenericFilterBean
     ↳ org.springframework.web.filter.OncePerRequestFilter
       ↳ org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter

Class Overview

Servlet 2.3 Filter that binds a JPA EntityManager to the thread for the entire processing of the request. Intended for the "Open EntityManager in View" pattern, i.e. to allow for lazy loading in web views despite the original transactions already being completed.

This filter makes JPA EntityManagers available via the current thread, which will be autodetected by transaction managers. It is suitable for service layer transactions via JpaTransactionManager or JtaTransactionManager as well as for non-transactional read-only execution.

Looks up the EntityManagerFactory in Spring's root web application context. Supports a "entityManagerFactoryBeanName" filter init-param in web.xml; the default bean name is "entityManagerFactory". Looks up the EntityManagerFactory on each request, to avoid initialization order issues (when using ContextLoaderServlet, the root application context will get initialized after this filter).

Summary

Constants
String DEFAULT_PERSISTENCE_MANAGER_FACTORY_BEAN_NAME
[Expand]
Inherited Constants
From class org.springframework.web.filter.OncePerRequestFilter
[Expand]
Inherited Fields
From class org.springframework.web.filter.GenericFilterBean
Public Constructors
OpenEntityManagerInViewFilter()
Public Methods
void setEntityManagerFactoryBeanName(String entityManagerFactoryBeanName)
Set the bean name of the EntityManagerFactory to fetch from Spring's root application context.
Protected Methods
EntityManager createEntityManager(EntityManagerFactory emf)
Create a JPA EntityManager to be bound to a request.
void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)
Same contract as for doFilter, but guaranteed to be just invoked once per request.
String getEntityManagerFactoryBeanName()
Return the bean name of the EntityManagerFactory to fetch from Spring's root application context.
EntityManagerFactory lookupEntityManagerFactory(HttpServletRequest request)
Look up the EntityManagerFactory that this filter should use, taking the current HTTP request as argument.
EntityManagerFactory lookupEntityManagerFactory()
Look up the EntityManagerFactory that this filter should use.
[Expand]
Inherited Methods
From class org.springframework.web.filter.OncePerRequestFilter
From class org.springframework.web.filter.GenericFilterBean
From class java.lang.Object
From interface javax.servlet.Filter
From interface org.springframework.beans.factory.BeanNameAware
From interface org.springframework.beans.factory.DisposableBean
From interface org.springframework.beans.factory.InitializingBean
From interface org.springframework.context.EnvironmentAware
From interface org.springframework.web.context.ServletContextAware

Constants

public static final String DEFAULT_PERSISTENCE_MANAGER_FACTORY_BEAN_NAME

Constant Value: "entityManagerFactory"

Public Constructors

public OpenEntityManagerInViewFilter ()

Public Methods

public void setEntityManagerFactoryBeanName (String entityManagerFactoryBeanName)

Set the bean name of the EntityManagerFactory to fetch from Spring's root application context. Default is "entityManagerFactory".

Protected Methods

protected EntityManager createEntityManager (EntityManagerFactory emf)

Create a JPA EntityManager to be bound to a request.

Can be overridden in subclasses.

Parameters
emf the EntityManagerFactory to use
See Also
  • javax.persistence.EntityManagerFactory#createEntityManager()

protected void doFilterInternal (HttpServletRequest request, HttpServletResponse response, FilterChain filterChain)

Same contract as for doFilter, but guaranteed to be just invoked once per request. Provides HttpServletRequest and HttpServletResponse arguments instead of the default ServletRequest and ServletResponse ones.

Throws
IOException
ServletException

protected String getEntityManagerFactoryBeanName ()

Return the bean name of the EntityManagerFactory to fetch from Spring's root application context.

protected EntityManagerFactory lookupEntityManagerFactory (HttpServletRequest request)

Look up the EntityManagerFactory that this filter should use, taking the current HTTP request as argument.

Default implementation delegates to the lookupEntityManagerFactory without arguments.

Returns
  • the EntityManagerFactory to use

protected EntityManagerFactory lookupEntityManagerFactory ()

Look up the EntityManagerFactory that this filter should use. The default implementation looks for a bean with the specified name in Spring's root application context.

Returns
  • the EntityManagerFactory to use