如何使用@thymesVar处理集合?

时间:2018-01-29 23:29:32

标签: intellij-idea thymeleaf

如果我有:

<!--/*@thymesVar id="someCollection" type="java.util.List"*/-->

如何指定集合中对象的类型?

我没有看到任何关于SO或者Idea的文档。

1 个答案:

答案 0 :(得分:2)

哦,它就像在声明中指定类一样简单:

<!--/*@thymesVar id="someCollection" type="java.util.List<com.domain.my.Bean>"*/-->