I am using Sprinng 3.0.
How to find the current locale set by LocaleResolver in an annotation based controller?
Thanks.
You can declare an argument of type Locale in your controller method:
Locale
@RequestMapping public ModelAndView foo(..., Locale locale) { ... }
See also: