Spring Boot 国际化设置

1、对你需要国际化的页面,抽取国际化的信息,编写配置文件,这里我以简单的登录页做国际化为范例。

1)在resource下新建目录,i18n

2)根据需要国际化的页面,新建porperties配置文件,

en:语言

US:国家代码

Spring Boot 国际化设置_第1张图片

3)书写配置,进入任意国际化配置文件中,

Spring Boot 国际化设置_第2张图片

点到Resource Bundle视图,点上面的+号,配置需要国际化的属性值,比如我要配置用户名,如下:

Spring Boot 国际化设置_第3张图片

第一个是默认显示。

配置完后如下:

Spring Boot 国际化设置_第4张图片

2、配置指定读取国际化配置文件的路径(默认会去根路径下寻找),在application.properties中配置 spring.messages.basename读取路径

Spring Boot 国际化设置_第5张图片

3、在页面用“#{}”获取国际化配置文件中的值



   

      
      
      
      
      Signin Template for Bootstrap
      
      
      
      
   

   
      

   

4、配置区域信息解析器,点击切换中英文效果,参数方式为 语言_国家代码方式

th:href="@{/login.html(l='zh_CN')}";

package com.boot.component;

import org.springframework.util.StringUtils;
import org.springframework.web.servlet.LocaleResolver;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;
import java.util.Locale;

/**
 * @ClassName MyLocaleResolver
 * @Description TODO 通过实现LocaleResolver中
 * @Author shanzz
 * @Date 2019/1/3 11:15
 * @Version 1.0
 **/
public class MyLocaleResolver implements LocaleResolver {
    @Override
    public Locale resolveLocale(HttpServletRequest httpServletRequest) {
       String l = httpServletRequest.getParameter("l");
       Locale locale = Locale.getDefault();//默认语言
       if(!StringUtils.isEmpty(l)){
            String[] split =l.split("_");
           locale = new Locale(split[0],split[1]);//split[0]语言,
       }
        return locale;
    }

    @Override
    public void setLocale(HttpServletRequest httpServletRequest, HttpServletResponse httpServletResponse, Locale locale) {

    }
}

 5、将MyLocaleResolver自定义的区域信息解析器添加在容器中,让系统去使用我们自己配置的解析器。

package com.boot.config;

import com.boot.component.MyLocaleResolver;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.web.servlet.LocaleResolver;
import org.springframework.web.servlet.config.annotation.ViewControllerRegistry;
import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;

/**
 * @ClassName WebMvcConfig
 * @Description TODO
 * @Author shanzz
 * @Date 2019/1/2 17:16
 * @Version 1.0
 **/
@Configuration
public class WebMvcConfig implements WebMvcConfigurer {

    @Override
    public void addViewControllers(ViewControllerRegistry registry) {
        registry.addViewController("/").setViewName("login");
        registry.addViewController("/login.html").setViewName("login");
    }

    //添加区域信息解析器
    @Bean
    public LocaleResolver  localeResolver(){
        return new MyLocaleResolver();
    }
}

 

6、访问页面,查看结果

Spring Boot 国际化设置_第6张图片

 

参考:尚硅谷SpringBoot(全集)系列视频,该视频SpringBoot版本为1.x相对于目前2.x有些地方有所不同,不过学习中可以举一反三,通过发现不同去学习总结,文章中有不足之处请予以指正。

你可能感兴趣的:(一起读书)