春季启动和百里香叶实施的国际化

时间:2019-03-12 18:42:06

标签: spring-boot internationalization thymeleaf

我正在尝试在春季靴和百里香叶项目中实施国际化,但未获得预期的结果。 This is current result

在下面提供了我的代码和属性文件的内容。我的属性文件路径为:src/main/resources

非常感谢您的指导。谢谢。

HTML代码:

<body>
    <h1 th:text="#{index.title}">Library</h1>
    <a th:href="@{/books.html}" href="#" th:text="#{index.books.link}">List of books</a>
</body>

messages_zh_CN.properties

main.title=Spring Boot Recipes - 图书馆
index.title=图书馆
index.books.link=图书列表
books.list.title=可用图书
books.list.table.title=标题
books.list.table.author=作者
books.list.table.isbn=ISBN

messages.properties

main.title=Spring Boot Recipes - Library
index.title=Library
index.books.link=List of books
books.list.title=Available Books
books.list.table.title=Title
books.list.table.author=Author
books.list.table.isbn=ISBN

0 个答案:

没有答案