springboot+thymeleaf国际化之LocaleResolver接口的示例

springboot+thymeleaf国际化之LocaleResolver接口的示例,第1张

概述springboot中大部分有默认配置所以开发起项目来非常迅速,仅对需求项做单独配置覆盖即可

springboot中大部分有默认配置所以开发起项目来非常迅速,仅对需求项做单独配置覆盖即可

spring采用的默认区域解析器是AcceptheaderLocaleResolver,根据request header中的accept-language值来解析locale,并且是不可变的。

那么想要实现国际化,就要使用SessionLocaleResolver或者cookieLocaleResolver。正如类的名字所示,是按session或cookie中储存的locale值来解析locale。

我就以SessionLocaleResolver举例:

1.建立一个配置类

package com.example.config;import org.springframework.context.annotation.Bean;import org.springframework.context.annotation.Configuration;import org.springframework.context.support.ResourceBundleMessageSource;import org.springframework.web.servlet.LocaleResolver;import org.springframework.web.servlet.i18n.SessionLocaleResolver;/** * Created by wq on 2016/8/15. */@Configurationpublic class SpringMVC_config {  @Bean(name="localeResolver")  public LocaleResolver localeResolverBean() {    return new SessionLocaleResolver();  }//  @Bean(name="messageSource")//  public ResourceBundleMessageSource resourceBundleMessageSource(){//    ResourceBundleMessageSource source=new ResourceBundleMessageSource();//    source.setBasename("messages");//    return source;//  }}

注意 name="localeResolver" 是必须的

优先级如下:

session中对应属性(3中有说明)有值则按session来

如果没有但是SessionLocaleResolver设置了默认的locale则按默认值来

//    SessionLocaleResolver localeResolver=new SessionLocaleResolver();//    localeResolver.setDefaultLocale(Locale.ENGliSH);

再然后就还是按request header中的accept-language值来

2.建立对应的messages.propertIEs

messages.propertIEs

messages_en.propertIEs

messages_zh_CN.propertIEs

前面注释的代码则可以修改propertIEs的前缀部分,name="messageSource" 同样是必须的

比如 setBasename("msg"); 对应propertIEs则为

msg.propertIEs

msg_en.propertIEs

msg_zh_CN.propertIEs

格式上sys.test=hello、sys.test=你好,应该无需赘述(可能转码会避免一些问题,我这里直接放的中文)

3.controller中切换locale 

package com.example.controller;import org.springframework.beans.factory.annotation.autowired;import org.springframework.stereotype.Controller;import org.springframework.web.bind.annotation.RequestMapPing;import org.springframework.web.servlet.LocaleResolver;import javax.servlet.http.httpServletRequest;import javax.servlet.http.httpServletResponse;import javax.servlet.http.httpSession;import java.util.Locale;import static org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_name;/** * Created by administrator on 2016/6/11. */@Controllerpublic class DemoController {  @autowired  LocaleResolver localeResolver;  @RequestMapPing("test")  public String test(httpServletRequest request,httpServletResponse response) {    httpSession session=request.getSession();    localeResolver.setLocale(request,response,Locale.ENGliSH);    System.out.println(session.getAttribute(LOCALE_SESSION_ATTRIBUTE_name));    return "messages";  }}

这里org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE_SESSION_ATTRIBUTE_name这个字符串常量则是session中默认属性名

可以看一下SessionLocaleResolver的部分源码

public class SessionLocaleResolver extends AbstractLocaleContextResolver {  public static final String LOCALE_SESSION_ATTRIBUTE_name = SessionLocaleResolver.class.getname() + ".LOCALE";  public static final String TIME_ZONE_SESSION_ATTRIBUTE_name = SessionLocaleResolver.class.getname() + ".TIME_ZONE";

locale默认属性名为

org.springframework.web.servlet.i18n.SessionLocaleResolver.LOCALE

setLocale是抽象类AbstractLocaleContextResolver中方法

  public voID setLocale(httpServletRequest request,httpServletResponse response,Locale locale) {    this.setLocaleContext(request,locale != null?new SimpleLocaleContext(locale):null);  }

然后看SessionLocaleResolver中setLocaleContext 

  public voID setLocaleContext(httpServletRequest request,LocaleContext localeContext) {    Locale locale = null;    TimeZone timeZone = null;    if(localeContext != null) {      locale = localeContext.getLocale();      if(localeContext instanceof TimeZoneAwareLocaleContext) {        timeZone = ((TimeZoneAwareLocaleContext)localeContext).getTimeZone();      }    }    WebUtils.setSessionAttribute(request,LOCALE_SESSION_ATTRIBUTE_name,locale);    WebUtils.setSessionAttribute(request,TIME_ZONE_SESSION_ATTRIBUTE_name,timeZone);  }

本质上就是一些非空判断取默认,最终给session中的对应属性赋值

4.thymeleaf页面中调用

<!DOCTYPE HTML><HTML lang="zh_CN"   xmlns:th="http://www.thymeleaf.org"><head>  <Title>msg</Title></head><body><h1 th:text="${#locale}"></h1><h1 th:text="#{sys.test}"></h1></body></HTML>

则显示en hello

能用注解的,尽量不用xml,看着xml就烦!!!

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。

总结

以上是内存溢出为你收集整理的springboot+thymeleaf国际化之LocaleResolver接口示例全部内容,希望文章能够帮你解决springboot+thymeleaf国际化之LocaleResolver接口的示例所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1227436.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-05
下一篇 2022-06-05

发表评论

登录后才能评论

评论列表(0条)

保存