目录
2、在application.yml中指定读取的国际化配置文件:
1、编写国际化配置文件
国际化配置文件默认文件名称为:messages.properties,若是自己起的其他名称,则需要在application.yml中指定文件:
如:在resources目录下创建i18n目录,在i18n目录下面创建国际化配置文件,login.properties是默认国际化配置文件,login_en_US.propertoes 英文,login_zh_CN.properties中文,创建好之后IDEA会自动识别这些配置文件是国际化配置文件。
随便打开一个文件,点击下面的Resource Bundle可以添加字段和值,一次可以直接更改三个配置文件。
2、在application.yml中指定读取的国际化配置文件:
#国际化指定文件
spring:
messages:
basename: i18n.login
##message.propertiesi是默认的国际化配置文件,不需要特别指定路径
3、login.html
<!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>登陆页面</title>
<!-- Bootstrap core CSS -->
<link href="asserts/css/bootstrap.min.css" th:href="@{/webjars/bootstrap/4.0.0/css/bootstrap.css}" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="asserts/css/signin.css"