public class ResourceUrlProviderExposingInterceptor extends HandlerInterceptorAdapter
ResourceUrlProvider
instance it
is configured with as a request attribute.Modifier and Type | Field and Description |
---|---|
static java.lang.String |
RESOURCE_URL_PROVIDER_ATTR
Name of the request attribute that holds the
ResourceUrlProvider . |
Constructor and Description |
---|
ResourceUrlProviderExposingInterceptor(ResourceUrlProvider resourceUrlProvider) |
Modifier and Type | Method and Description |
---|---|
boolean |
preHandle(HttpServletRequest request,
HttpServletResponse response,
java.lang.Object handler)
This implementation always returns
true . |
afterCompletion, afterConcurrentHandlingStarted, postHandle
public static final java.lang.String RESOURCE_URL_PROVIDER_ATTR
ResourceUrlProvider
.public ResourceUrlProviderExposingInterceptor(ResourceUrlProvider resourceUrlProvider)
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, java.lang.Object handler) throws java.lang.Exception
HandlerInterceptorAdapter
true
.preHandle
in interface HandlerInterceptor
preHandle
in class HandlerInterceptorAdapter
request
- current HTTP requestresponse
- current HTTP responsehandler
- chosen handler to execute, for type and/or instance evaluationtrue
if 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.java.lang.Exception
- in case of errors