在Thymeleaf动态创建消息参考?

时间:2017-04-05 00:37:54

标签: thymeleaf

所以我有以下代码:

 <h3 th:if="#{${'footer.message.' + receiptProperties.url}? : '(NOTHING)'}"  th:utext="#{${'footer.message.' + receiptProperties.url}}"></h3>

receiptProperties.url =给予租户的名称,例如ABC,DEF等。所以messages.properties文件中的键就像 footer.message.ABC < / strong> =你好ABC!

动态创建的消息键显示正确,但是,如果属性文件中不存在 footer.message.GHI 等键,则根本不显示任何内容,以下是显示在页面上: ?? footer.message.GHI_en ??

Thymeleaf有没有办法准确检查属性文件中是否存在动态创建的密钥?

1 个答案:

答案 0 :(得分:6)

messages utility对象具有可用于此的方法。您可以使用如下表达式:

${#messages.msgOrNull('footer.message.' + receiptProperties.url) == null ? 'Invalid key' : 'Valid key'}