Class OpenEntityManagerInViewFilter
- All Implemented Interfaces:
jakarta.servlet.Filter, Aware, BeanNameAware, DisposableBean, InitializingBean, EnvironmentAware, EnvironmentCapable, ServletContextAware
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 an "entityManagerFactoryBeanName" filter init-param in web.xml;
the default bean name is "entityManagerFactory". As an alternative, the
"persistenceUnitName" init-param allows for retrieval by logical unit name
(as specified in persistence.xml).
- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringDefault EntityManagerFactory bean name: "entityManagerFactory".Fields inherited from class OncePerRequestFilter
ALREADY_FILTERED_SUFFIXFields inherited from class GenericFilterBean
logger -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionprotected jakarta.persistence.EntityManagercreateEntityManager(jakarta.persistence.EntityManagerFactory emf) Create a JPA EntityManager to be bound to a request.protected voiddoFilterInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.FilterChain filterChain) Same contract as fordoFilter, but guaranteed to be just invoked once per request within a single request thread.Return the bean name of the EntityManagerFactory to fetch from spring's root application context.Return the name of the persistence unit to access the EntityManagerFactory for, if any.protected jakarta.persistence.EntityManagerFactoryLook up the EntityManagerFactory that this filter should use.protected jakarta.persistence.EntityManagerFactorylookupEntityManagerFactory(jakarta.servlet.http.HttpServletRequest request) Look up the EntityManagerFactory that this filter should use, taking the current HTTP request as argument.voidsetEntityManagerFactoryBeanName(@Nullable String entityManagerFactoryBeanName) Set the bean name of the EntityManagerFactory to fetch from spring's root application context.voidsetPersistenceUnitName(@Nullable String persistenceUnitName) Set the name of the persistence unit to access the EntityManagerFactory for.protected booleanReturns "false" so that the filter may re-bind the openedEntityManagerto each asynchronously dispatched thread and postpone closing it until the very last asynchronous dispatch.protected booleanReturns "false" so that the filter may provide anEntityManagerto each error dispatches.Methods inherited from class OncePerRequestFilter
doFilter, doFilterNestedErrorDispatch, getAlreadyFilteredAttributeName, isAsyncDispatch, isAsyncStarted, shouldNotFilterMethods inherited from class GenericFilterBean
addRequiredProperty, afterPropertiesSet, createEnvironment, destroy, getEnvironment, getFilterConfig, getFilterName, getServletContext, init, initBeanWrapper, initFilterBean, setBeanName, setEnvironment, setServletContext
-
Field Details
-
DEFAULT_ENTITY_MANAGER_FACTORY_BEAN_NAME
Default EntityManagerFactory bean name: "entityManagerFactory". Only applies when no "persistenceUnitName" param has been specified.- See Also:
-
-
Constructor Details
-
OpenEntityManagerInViewFilter
public OpenEntityManagerInViewFilter()
-
-
Method Details
-
setEntityManagerFactoryBeanName
Set the bean name of the EntityManagerFactory to fetch from spring's root application context.Default is "entityManagerFactory". Note that this default only applies when no "persistenceUnitName" param has been specified.
- See Also:
-
getEntityManagerFactoryBeanName
-
setPersistenceUnitName
Set the name of the persistence unit to access the EntityManagerFactory for.This is an alternative to specifying the EntityManagerFactory by bean name, resolving it by its persistence unit name instead. If no bean name and no persistence unit name have been specified, we'll check whether a bean exists for the default bean name "entityManagerFactory"; if not, a default EntityManagerFactory will be retrieved through finding a single unique bean of type EntityManagerFactory.
- See Also:
-
getPersistenceUnitName
-
shouldNotFilterAsyncDispatch
protected boolean shouldNotFilterAsyncDispatch()Returns "false" so that the filter may re-bind the openedEntityManagerto each asynchronously dispatched thread and postpone closing it until the very last asynchronous dispatch.- Overrides:
shouldNotFilterAsyncDispatchin classOncePerRequestFilter
-
shouldNotFilterErrorDispatch
protected boolean shouldNotFilterErrorDispatch()Returns "false" so that the filter may provide anEntityManagerto each error dispatches.- Overrides:
shouldNotFilterErrorDispatchin classOncePerRequestFilter
-
doFilterInternal
protected void doFilterInternal(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, jakarta.servlet.FilterChain filterChain) throws jakarta.servlet.ServletException, IOException Description copied from class:OncePerRequestFilterSame contract as fordoFilter, but guaranteed to be just invoked once per request within a single request thread. SeeOncePerRequestFilter.shouldNotFilterAsyncDispatch()for details.Provides HttpServletRequest and HttpServletResponse arguments instead of the default ServletRequest and ServletResponse ones.
- Specified by:
doFilterInternalin classOncePerRequestFilter- Throws:
jakarta.servlet.ServletExceptionIOException
-
lookupEntityManagerFactory
protected jakarta.persistence.EntityManagerFactory lookupEntityManagerFactory(jakarta.servlet.http.HttpServletRequest request) Look up the EntityManagerFactory that this filter should use, taking the current HTTP request as argument.The default implementation delegates to the
lookupEntityManagerFactorywithout arguments, caching the EntityManagerFactory reference once obtained.- Returns:
- the EntityManagerFactory to use
- See Also:
-
lookupEntityManagerFactory
protected jakarta.persistence.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
- See Also:
-
createEntityManager
protected jakarta.persistence.EntityManager createEntityManager(jakarta.persistence.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:
-