SpringBoot 国际化(狂神)

SpringBoot默认国际化文件为:classpath:message.properties,如果放在其它文件夹中,则需要在application.properties配置属性spring.messages.basename:

在srpingboot自定义一个国家化文件:

1、在resources目录下创建i18n文件夹下login.properties、login_en_US.properties和      login_zh_CN.properties

注:资源文件名有一定的规范。资源文件都有共同的基名(login)且都是properties文件(格式为:basename_language_country.properties)

2、修改application.properties或者application.yml文件:
        spring:
          messages:
            basename: login

 

中英互换模板

login.properties  页面默认显示

login.remember=记住我
login.sign=登录
login.tip=请登录
login.userName=用户名
login.Password=密码

 

login_en_US.properties  英文显示

login.remember=Remember me
login.sign=Sign in
login.tip=Please sign in
login.userName=UserName
login.Password=Password


login_zh_CN.properties  中文显示

login.remember=记住我
login.sign=登录
login.tip=请登录
login.userName=用户名
login.Password=密码
yml

spring:
  thymeleaf:
    cache: false   关闭缓存
  messages:
    basename: i18n.login  绑定国际化配置文件
    encoding: UTF-8

<!DOCTYPE html>
<html lang="en" xmlns:th="http://www.thymeleaf.org">
	<head>
		<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
		<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
		<meta name="description" content="">
		<meta name="author" content="">
		<title>Signin Template for Bootstrap</title>
		<!-- Bootstrap core CSS -->
		<link th:href="@{/css/bootstrap.min.css}" rel="stylesheet">
		<!-- Custom styles for this template -->
		<link th:href="@{/css/signin.css}" rel="stylesheet">
	</head>

	<body class="text-center">
		<form class="form-signin" action="dashboard.html">
			<img class="mb-4" th:src="@{/img/bootstrap-solid.svg}" alt="" width="72" height="72">
			<h1 class="h3 mb-3 font-weight-normal" th:text="#{login.tip}">Please sign in</h1>
			<label class="sr-only">Username</label>
			<input type="text" class="form-control" th:placeholder="#{login.userName}" required="" autofocus="">
			<label class="sr-only">Password</label>
			<input type="password" class="form-control" th:placeholder="#{login.Password}" required="">
			<div class="checkbox mb-3">
				<label>
          <input type="checkbox" value="remember-me">[[#{login.remember}]]
        </label>
			</div>
			<button class="btn btn-lg btn-primary btn-block" type="submit">[[#{login.sign}]]</button>
			<p class="mt-5 mb-3 text-muted">© 2017-2018</p>
			<a class="btn btn-sm" th:href="@{/index.html(l=zh_CN)}">中文</a>
			<a class="btn btn-sm" th:href="@{/index.html(l=en_US)}">English</a>
		</form>

	</body>

</html>

自定义配置

@Configuration
public class Myconfiger implements WebMvcConfigurer {
    @Bean
   public LocaleResolver localeResolver(){
        return new MyLocaleResolver();
   }
}
public class MyLocaleResolver implements LocaleResolver {
    @Override   //请求解析
    public Locale resolveLocale(HttpServletRequest httpServletRequest) {
        String language = httpServletRequest.getParameter("l");

        Locale locale=null;
        Locale aDefault = Locale.getDefault();
        if (!StringUtils.isEmpty(language)){
//            zh_CN
            String[] split = language.split("_");
//            国家 地区
            locale= new Locale(split[0], split[1]);
        }
        return locale;
    }

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

    }
}

乱码问题

 

 

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值