Class WebContentInterceptor
- All Implemented Interfaces:
Aware, ApplicationContextAware, ServletContextAware, HandlerInterceptor
Cache settings may be configured for specific URLs via path pattern with
addCacheMapping(CacheControl, String...) and
setCacheMappings(Properties), along with a fallback on default
settings for all URLs via WebContentGenerator.setCacheControl(CacheControl).
Pattern matching can be done with PathMatcher or with parsed
PathPatterns. The syntax is largely the same with the latter being
more tailored for web usage and more efficient. The choice depends on the
presence of a resolved
String lookupPath or a parsed RequestPath which in turn depends on the
HandlerMapping that matched the current request.
All the settings supported by this interceptor can also be set on
AbstractController. This interceptor is mainly intended for applying
checks and preparations to a set of controllers mapped by a HandlerMapping.
- Since:
- 27.11.2003
- Author:
- Juergen Hoeller, Brian Clozel, Rossen Stoyanchev
- See Also:
-
Field Summary
Fields inherited from class WebContentGenerator
HEADER_CACHE_CONTROL, METHOD_GET, METHOD_HEAD, METHOD_POSTFields inherited from class ApplicationObjectSupport
logger -
Constructor Summary
ConstructorsConstructorDescriptionDefault constructor withPathPatternParser.defaultInstance.Constructor with aPathPatternParserto parse patterns with. -
Method Summary
Modifier and TypeMethodDescriptionvoidaddCacheMapping(CacheControl cacheControl, String... paths) Map specific URL paths to a specificCacheControl.voidafterCompletion(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler, @Nullable Exception ex) This implementation is empty.protected @Nullable CacheControllookupCacheControl(String lookupPath) Deprecated, for removal: This API element is subject to removal in a future version.protected @Nullable CacheControlFind aCacheControlinstance for the given parsedpath.lookupCacheSeconds(String lookupPath) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Find a cacheSeconds value for the given parsedpath.voidpostHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler, @Nullable ModelAndView modelAndView) This implementation is empty.booleanpreHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler) Interception point before the execution of a handler.voidsetAlwaysUseFullPath(boolean alwaysUseFullPath) Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)voidsetCacheMappings(Properties cacheMappings) Map settings for cache seconds to specific URL paths via patterns.voidsetPathMatcher(PathMatcher pathMatcher) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.voidsetUrlDecode(boolean urlDecode) Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)voidsetUrlPathHelper(UrlPathHelper urlPathHelper) Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)Methods inherited from class WebContentGenerator
applyCacheControl, applyCacheSeconds, checkRequest, getAllowHeader, getCacheControl, getCacheSeconds, getSupportedMethods, getVaryByRequestHeaders, isRequireSession, prepareResponse, setCacheControl, setCacheSeconds, setRequireSession, setSupportedMethods, setVaryByRequestHeadersMethods inherited from class WebApplicationObjectSupport
getServletContext, getTempDir, getWebApplicationContext, initApplicationContext, initServletContext, isContextRequired, setServletContextMethods inherited from class ApplicationObjectSupport
getApplicationContext, getMessageSourceAccessor, initApplicationContext, obtainApplicationContext, requiredContextClass, setApplicationContext
-
Constructor Details
-
WebContentInterceptor
public WebContentInterceptor()Default constructor withPathPatternParser.defaultInstance. -
WebContentInterceptor
Constructor with aPathPatternParserto parse patterns with.- Since:
- 5.3
-
-
Method Details
-
setAlwaysUseFullPath
Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)Shortcut to thesame propertyon the configuredUrlPathHelper. -
setUrlDecode
Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)Shortcut to thesame propertyon the configuredUrlPathHelper. -
setUrlPathHelper
Deprecated.the path is resolved externally and obtained withServletRequestPathUtils.getCachedPathValue(ServletRequest)Set the UrlPathHelper to use for resolution of lookup paths. -
setPathMatcher
Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Configure the PathMatcher to use to match URL paths against registered URL patterns to select the cache settings for a request.This is an advanced property that should be used only when a customized
AntPathMatcheror a custom PathMatcher is required.By default this is
AntPathMatcher.Note: Setting
PathMatcherenforces use of String pattern matching even when aparsedRequestPathis available.- See Also:
-
setCacheMappings
Map settings for cache seconds to specific URL paths via patterns.Overrides the default cache seconds setting of this interceptor. Can specify "-1" to exclude a URL path from default caching.
For pattern syntax see
AntPathMatcherandPathPatternas well as the class-level Javadoc for details for when each is used. The syntax is largely the same withPathPatternmore tailored for web usage.NOTE: Path patterns are not supposed to overlap. If a request matches several mappings, it is effectively undefined which one will apply (due to the lack of key ordering in
java.util.Properties).- Parameters:
cacheMappings- a mapping between URL paths (as keys) and cache seconds (as values, need to be integer-parsable)- See Also:
-
addCacheMapping
Map specific URL paths to a specificCacheControl.Overrides the default cache seconds setting of this interceptor. Can specify an empty
CacheControlinstance to exclude a URL path from default caching.For pattern syntax see
AntPathMatcherandPathPatternas well as the class-level Javadoc for details for when each is used. The syntax is largely the same withPathPatternmore tailored for web usage.NOTE: Path patterns are not supposed to overlap. If a request matches several mappings, it is effectively undefined which one will apply (due to the lack of key ordering in the underlying
java.util.HashMap).- Parameters:
cacheControl- theCacheControlto usepaths- the URL paths that will map to the givenCacheControl- Since:
- 4.2
- See Also:
-
preHandle
public boolean preHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler) throws jakarta.servlet.ServletException Description copied from interface:HandlerInterceptorInterception point before the execution of a handler. Called after HandlerMapping determined an appropriate handler object, but before HandlerAdapter invokes the handler.DispatcherServlet processes a handler in an execution chain, consisting of any number of interceptors, with the handler itself at the end. With this method, each interceptor can decide to abort the execution chain, typically sending an HTTP error or writing a custom response.
Note: special considerations apply for asynchronous request processing. For more details see
AsyncHandlerInterceptor.The default implementation returns
true.- Specified by:
preHandlein interfaceHandlerInterceptor- Parameters:
request- current HTTP requestresponse- current HTTP responsehandler- chosen handler to execute, for type and/or instance evaluation- Returns:
trueif the execution chain should proceed with the next interceptor or the handler itself. Else, DispatcherServlet assumes that this interceptor has already dealt with the response itself.- Throws:
jakarta.servlet.ServletException
-
lookupCacheControl
Find aCacheControlinstance for the given parsedpath. This is used when theHandlerMappinguses parsedPathPatterns.- Parameters:
path- the path to match to- Returns:
- the matched
CacheControl, ornullif no match - Since:
- 5.3
-
lookupCacheControl
@Deprecated(since="7.0", forRemoval=true) protected @Nullable CacheControl lookupCacheControl(String lookupPath) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Find aCacheControlinstance for the given String lookupPath. This is used when theHandlerMappingrelies on String pattern matching withPathMatcher.- Parameters:
lookupPath- the path to match to- Returns:
- the matched
CacheControl, ornullif no match
-
lookupCacheSeconds
Find a cacheSeconds value for the given parsedpath. This is used when theHandlerMappinguses parsedPathPatterns.- Parameters:
path- the path to match to- Returns:
- the matched cacheSeconds, or
nullif there is no match - Since:
- 5.3
-
lookupCacheSeconds
@Deprecated(since="7.0", forRemoval=true) protected @Nullable Integer lookupCacheSeconds(String lookupPath) Deprecated, for removal: This API element is subject to removal in a future version.use ofPathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.Find a cacheSeconds instance for the given String lookupPath. This is used when theHandlerMappingrelies on String pattern matching withPathMatcher.- Parameters:
lookupPath- the path to match to- Returns:
- the matched cacheSeconds, or
nullif there is no match
-
postHandle
public void postHandle(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler, @Nullable ModelAndView modelAndView) throws Exception This implementation is empty.- Specified by:
postHandlein interfaceHandlerInterceptor- Parameters:
request- current HTTP requestresponse- current HTTP responsehandler- the handler (orHandlerMethod) that started asynchronous execution, for type and/or instance examinationmodelAndView- theModelAndViewthat the handler returned (can also benull)- Throws:
Exception- in case of errors
-
afterCompletion
public void afterCompletion(jakarta.servlet.http.HttpServletRequest request, jakarta.servlet.http.HttpServletResponse response, Object handler, @Nullable Exception ex) throws Exception This implementation is empty.- Specified by:
afterCompletionin interfaceHandlerInterceptor- Parameters:
request- current HTTP requestresponse- current HTTP responsehandler- the handler (orHandlerMethod) that started asynchronous execution, for type and/or instance examinationex- any exception thrown on handler execution, if any; this does not include exceptions that have been handled through an exception resolver- Throws:
Exception- in case of errors
-
PathMatcherandUrlPathHelperis deprecated for use at runtime in web modules in favor of parsed patterns withPathPatternParser.