public class ResourceUrlProviderExposingInterceptor extends HandlerInterceptorAdapter
ResourceUrlProvider
instance it
is configured with as a request attribute.Modifier and Type | Field and Description |
---|---|
static 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,
Object handler)
This implementation always returns
true . |
afterCompletion, afterConcurrentHandlingStarted, postHandle
public static final String RESOURCE_URL_PROVIDER_ATTR
ResourceUrlProvider
.public ResourceUrlProviderExposingInterceptor(ResourceUrlProvider resourceUrlProvider)
public boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler) throws 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.Exception
- in case of errors