public class LocaleChangeInterceptor extends HandlerInterceptorAdapter
LocaleResolver| Modifier and Type | Field and Description |
|---|---|
static String |
DEFAULT_PARAM_NAME
Default name of the locale specification parameter: "locale".
|
| Constructor and Description |
|---|
LocaleChangeInterceptor() |
| Modifier and Type | Method and Description |
|---|---|
String |
getParamName()
Return the name of the parameter that contains a locale specification
in a locale change request.
|
boolean |
preHandle(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
Object handler)
This implementation always returns
true. |
void |
setParamName(String paramName)
Set the name of the parameter that contains a locale specification
in a locale change request.
|
afterCompletion, afterConcurrentHandlingStarted, postHandlepublic static final String DEFAULT_PARAM_NAME
public void setParamName(String paramName)
public String getParamName()
public boolean preHandle(javax.servlet.http.HttpServletRequest request,
javax.servlet.http.HttpServletResponse response,
Object handler)
throws javax.servlet.ServletException
HandlerInterceptorAdaptertrue.preHandle in interface HandlerInterceptorpreHandle in class HandlerInterceptorAdapterrequest - 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.javax.servlet.ServletExceptionCopyright © 2015. All rights reserved.