|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.web.filter.GenericFilterBean org.springframework.web.filter.OncePerRequestFilter org.springframework.orm.jpa.support.OpenEntityManagerInViewFilter
public class OpenEntityManagerInViewFilter
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 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
).
OpenEntityManagerInViewInterceptor
,
JpaInterceptor
,
JpaTransactionManager
,
JpaTemplate.execute(org.springframework.orm.jpa.JpaCallback)
,
SharedEntityManagerCreator
,
TransactionSynchronizationManager
Field Summary | |
---|---|
static String |
DEFAULT_ENTITY_MANAGER_FACTORY_BEAN_NAME
Default EntityManagerFactory bean name: "entityManagerFactory". |
Fields inherited from class org.springframework.web.filter.OncePerRequestFilter |
---|
ALREADY_FILTERED_SUFFIX |
Fields inherited from class org.springframework.web.filter.GenericFilterBean |
---|
logger |
Constructor Summary | |
---|---|
OpenEntityManagerInViewFilter()
|
Method Summary | |
---|---|
protected EntityManager |
createEntityManager(EntityManagerFactory emf)
Create a JPA EntityManager to be bound to a request. |
protected void |
doFilterInternal(HttpServletRequest request,
HttpServletResponse response,
FilterChain filterChain)
Same contract as for doFilter , but guaranteed to be
just invoked once per request. |
protected String |
getEntityManagerFactoryBeanName()
Return the bean name of the EntityManagerFactory to fetch from Spring's root application context. |
protected String |
getPersistenceUnitName()
Return the name of the persistence unit to access the EntityManagerFactory for, if any. |
protected EntityManagerFactory |
lookupEntityManagerFactory()
Look up the EntityManagerFactory that this filter should use. |
protected EntityManagerFactory |
lookupEntityManagerFactory(HttpServletRequest request)
Look up the EntityManagerFactory that this filter should use, taking the current HTTP request as argument. |
void |
setEntityManagerFactoryBeanName(String entityManagerFactoryBeanName)
Set the bean name of the EntityManagerFactory to fetch from Spring's root application context. |
void |
setPersistenceUnitName(String persistenceUnitName)
Set the name of the persistence unit to access the EntityManagerFactory for. |
Methods inherited from class org.springframework.web.filter.OncePerRequestFilter |
---|
doFilter, getAlreadyFilteredAttributeName, shouldNotFilter |
Methods inherited from class org.springframework.web.filter.GenericFilterBean |
---|
addRequiredProperty, afterPropertiesSet, destroy, getFilterConfig, getFilterName, getServletContext, init, initBeanWrapper, initFilterBean, setBeanName, setEnvironment, setServletContext |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Field Detail |
---|
public static final String DEFAULT_ENTITY_MANAGER_FACTORY_BEAN_NAME
setEntityManagerFactoryBeanName(java.lang.String)
,
setPersistenceUnitName(java.lang.String)
,
Constant Field ValuesConstructor Detail |
---|
public OpenEntityManagerInViewFilter()
Method Detail |
---|
public void setEntityManagerFactoryBeanName(String entityManagerFactoryBeanName)
Default is "entityManagerFactory". Note that this default only applies when no "persistenceUnitName" param has been specified.
setPersistenceUnitName(java.lang.String)
,
DEFAULT_ENTITY_MANAGER_FACTORY_BEAN_NAME
protected String getEntityManagerFactoryBeanName()
public void setPersistenceUnitName(String persistenceUnitName)
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.
setEntityManagerFactoryBeanName(java.lang.String)
,
DEFAULT_ENTITY_MANAGER_FACTORY_BEAN_NAME
protected String getPersistenceUnitName()
protected void doFilterInternal(HttpServletRequest request, HttpServletResponse response, FilterChain filterChain) throws ServletException, IOException
OncePerRequestFilter
doFilter
, but guaranteed to be
just invoked once per request. Provides HttpServletRequest and
HttpServletResponse arguments instead of the default ServletRequest
and ServletResponse ones.
doFilterInternal
in class OncePerRequestFilter
ServletException
IOException
protected EntityManagerFactory lookupEntityManagerFactory(HttpServletRequest request)
The default implementation delegates to the lookupEntityManagerFactory
without arguments, caching the EntityManagerFactory reference once obtained.
lookupEntityManagerFactory()
protected EntityManagerFactory lookupEntityManagerFactory()
The default implementation looks for a bean with the specified name in Spring's root application context.
getEntityManagerFactoryBeanName()
protected EntityManager createEntityManager(EntityManagerFactory emf)
Can be overridden in subclasses.
emf
- the EntityManagerFactory to useEntityManagerFactory.createEntityManager()
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |