| 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 URL patterns to which the registered interceptor should apply to.
|
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 URL patterns to which the registered interceptor should not apply to.
|
InterceptorRegistration |
InterceptorRegistration.order(int order)
Specify an order position to be used.
|
InterceptorRegistration |
InterceptorRegistration.pathMatcher(PathMatcher pathMatcher)
A PathMatcher implementation to use with this interceptor.
|