Springboot 国际化语言(浏览器切换)

以登录界面为例,
1、准备工作,使用IDEA创建一个springboot工程,pom.xml中导入thymeleaf
2、在resources中创建一个i18n文件夹,然后依次创建下面三个文件
login.properties login_zh_CN.properties login_zh_CN.properties
3、检查IDEA的配置,在Setting中搜索file encoding
在这里插入图片描述
需要按照如图所示配置,改完以后记得Other Setting也要同样修改
打开任意一个properties,找到界面中的Resources Bundle
Springboot 国际化语言(浏览器切换)_第1张图片
按照如上图的格式修改
打开application.properties,添加

spring.messages.basename=i18n.login

在login.html中

<html lang="en" xmlns:th="http://www.thymeleaf.org">
<form class="form-signin">
	<h1  th:text="#{login.tip}">Please sign inh1>
	<input type="text"  placeholder="Username" th:placeholder="#{login.username}" >
	<input type="password"   placeholder="Password" th:placeholder="#{login.password}"  >
	<button  type="submit" th:text="#{login.sign}">Sign inbutton>
form>

运行工程,在浏览器(我用的Chrome)选择英语(美国)或者中文,即可切换语言

你可能感兴趣的:(Springboot)