带参数的本地化消息
在 messages.properties 中写入消息
welcome.message=Hello, {0}!
将{0}替换为 thymeleaf 标记内的用户名
<h3 th:text="#{welcome.message(${some.variable})}">Hello, Placeholder</h3>
在 messages.properties 中写入消息
welcome.message=Hello, {0}!
将{0}替换为 thymeleaf 标记内的用户名
<h3 th:text="#{welcome.message(${some.variable})}">Hello, Placeholder</h3>