帶引數的本地化訊息
在 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>