当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
FixedLocaleResolver (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.web.servlet.i18n
Class FixedLocaleResolver
java.lang.Object
org.springframework.web.servlet.i18n.AbstractLocaleResolver
org.springframework.web.servlet.i18n.FixedLocaleResolver
- All Implemented Interfaces:
- LocaleResolver
public class FixedLocaleResolver
- extends AbstractLocaleResolver
Implementation of LocaleResolver that always returns a fixed default locale.
Default is the current JVM's default locale.
Note: Does not support setLocale
, as the fixed locale
cannot be changed.
- Since:
- 1.1
- Author:
- Juergen Hoeller
- See Also:
AbstractLocaleResolver.setDefaultLocale(java.util.Locale)
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
FixedLocaleResolver
public FixedLocaleResolver()
resolveLocale
public Locale resolveLocale(HttpServletRequest request)
- Description copied from interface:
LocaleResolver
- Resolve the current locale via the given request.
Should return a default locale as fallback in any case.
- Parameters:
request
- the request to resolve the locale for
- Returns:
- the current locale (never
null
)
setLocale
public void setLocale(HttpServletRequest request,
HttpServletResponse response,
Locale locale)
- Description copied from interface:
LocaleResolver
- Set the current locale to the given one.
- Parameters:
request
- the request to be used for locale modificationresponse
- the response to be used for locale modificationlocale
- the new locale, or null
to clear the locale
Copyright © 2002-2007 The Spring Framework.