Reputation: 205
Is it possible to have multiple locale resolver inside spring ?
I want to have multiple Locale Resolver inside my application like :
Upvotes: 1
Views: 1377
Reputation: 121272
Don't see problem to write your own LocaleResolver
and register it as bean with name DispatcherServlet.LOCALE_RESOLVER_BEAN_NAME
.
The logic of resolveLocale
implementation may be really based on the request
, when you can determine to use CookieLocaleResolver
or provide someother locale from request
attributes
Upvotes: 1