带有消息的变量

时间:2015-05-13 10:11:12

标签: php spring spring-boot thymeleaf

我的spring启动应用程序中有一个messages.property文件。类似的东西:

welcome=Hello {0} welcome to my page

现在我可以通过百里香来访问:

<th th:text="#{welcome(${Firstname})}"></th>

但我想做的是显示:你好John Doe,欢迎来到我的页面。 John和Doe是不同的变量,我会注入欢迎信息。

也许我的属性文件现在看起来像:message= Hello {0} {1}, Welcome to my page 有没有办法在春天/百里香叶完成这个?

1 个答案:

答案 0 :(得分:0)

更改您的属性文件,如下所示:message=Hello {0}, Welcome to my page 并按以下方式调用标签:<th th:text="#{welcome(${varialbe})}"></th>