配置和修改springboot默認國家化文件
阿新 • • 發佈:2018-06-22
meta emp this XML leaf ati thymeleaf 系統 ces
SpringBoot默認國際化文件為:classpath:message.properties,如果放在其它文件夾中,則需要在application.properties配置屬性spring.messages.basename:
在srpingboot自定義一個國家化文件:
1、在resources目錄下創建myconfig.properties
2、修改application.properties或者application.yml文件:
spring:
messages:
basename: myconfig
3、示例:
myconfig.properties裏加入:
message.hello="歡迎使用CRM系統!"
4、在resources的templates下新建index.html
<!DOCTYPE html SYSTEM "http://www.thymeleaf.org/dtd/xhtml1-strict-thymeleaf-4.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:th="http://www.thymeleaf.org"
lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<p th:text="#{message.hello}">This text will not be show! </p>
</body>
</html>
配置和修改springboot默認國家化文件