Examples of LocaleResolver


Examples of org.springframework.web.servlet.LocaleResolver

  @Override
  protected ModelAndView handleRequestInternal(HttpServletRequest req,
            HttpServletResponse res) throws Exception {
    String language = req.getParameter("language");
    Locale locale = StringUtils.parseLocaleString(language);
    LocaleResolver localeResolver = RequestContextUtils.getLocaleResolver(req);
    localeResolver.setLocale(req, res, locale);
    localeContainer.setLocale(locale.getLanguage());
    return new ModelAndView("redirect:/");
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.