Package | Description |
---|---|
org.springframework.web.servlet.config.annotation |
Annotation-based setup for Spring MVC.
|
Modifier and Type | Method and Description |
---|---|
InterceptorRegistration |
InterceptorRegistry.addInterceptor(HandlerInterceptor interceptor)
Adds the provided
HandlerInterceptor . |
InterceptorRegistration |
InterceptorRegistration.addPathPatterns(List<String> patterns)
List-based variant of
addPathPatterns(String...) . |
InterceptorRegistration |
InterceptorRegistration.addPathPatterns(String... patterns)
Add patterns for URLs the interceptor should be included in.
|
InterceptorRegistration |
InterceptorRegistry.addWebRequestInterceptor(WebRequestInterceptor interceptor)
Adds the provided
WebRequestInterceptor . |
InterceptorRegistration |
InterceptorRegistration.excludePathPatterns(List<String> patterns)
List-based variant of
excludePathPatterns(String...) . |
InterceptorRegistration |
InterceptorRegistration.excludePathPatterns(String... patterns)
Add patterns for URLs the interceptor should be excluded from.
|
InterceptorRegistration |
InterceptorRegistration.order(int order)
Specify an order position to be used.
|
InterceptorRegistration |
InterceptorRegistration.pathMatcher(PathMatcher pathMatcher)
Configure the PathMatcher to use to match URL paths with against include
and exclude patterns.
|