Uses of Interface
org.springframework.web.context.request.WebRequestInterceptor
Package
Description
Classes supporting the
org.springframework.orm.hibernate5
package.Classes supporting the
org.springframework.orm.jpa
package.Support for generic request context holding, in particular for
scoping of application objects per HTTP request or HTTP session.
Annotation-based setup for Spring MVC.
Provides standard HandlerMapping implementations,
including abstract base classes for custom implementations.
-
Uses of WebRequestInterceptor in org.springframework.orm.hibernate5.support
Modifier and TypeClassDescriptionclass
Spring web request interceptor that binds a HibernateSession
to the thread for the entire processing of the request. -
Uses of WebRequestInterceptor in org.springframework.orm.jpa.support
Modifier and TypeClassDescriptionclass
Spring web request interceptor that binds a JPA EntityManager to the thread for the entire processing of the request. -
Uses of WebRequestInterceptor in org.springframework.web.context.request
Modifier and TypeInterfaceDescriptioninterface
ExtendsWebRequestInterceptor
with a callback method invoked during asynchronous request handling. -
Uses of WebRequestInterceptor in org.springframework.web.servlet.config.annotation
Modifier and TypeMethodDescriptionInterceptorRegistry.addWebRequestInterceptor
(WebRequestInterceptor interceptor) Adds the providedWebRequestInterceptor
. -
Uses of WebRequestInterceptor in org.springframework.web.servlet.handler
ModifierConstructorDescriptionMappedInterceptor
(String[] includePatterns, String[] excludePatterns, WebRequestInterceptor interceptor) Variant ofMappedInterceptor(String[], String[], HandlerInterceptor, PathPatternParser)
with aWebRequestInterceptor
as the target.MappedInterceptor
(String[] includePatterns, WebRequestInterceptor interceptor) Variant ofMappedInterceptor(String[], String[], HandlerInterceptor, PathPatternParser)
with aWebRequestInterceptor
as the target.WebRequestHandlerInterceptorAdapter
(WebRequestInterceptor requestInterceptor) Create a new WebRequestHandlerInterceptorAdapter for the given WebRequestInterceptor.