无法解析为表达式

时间:2017-04-25 19:22:42

标签: java spring spring-boot thymeleaf

我是Spring和Thymleaf的新手。我在尝试将对象转移到模板时遇到了问题。这是一个错误:

org.thymeleaf.exceptions.TemplateProcessingException: 
Could not parse as expression: "$(payments.comment)" (user/profile:13)
你能帮我一点吗?谢谢大家。

That is my GetMapper

That is my Thymleaf template

1 个答案:

答案 0 :(得分:0)

您正在使用括号:

$(payments.comment)

请改用花括号:

${payments.comment}

请注意,{}()

不同