Thymeleaf提供了一个默认的属性处理器。它允许我们设置任何属性的值,即使没有在标准方言里为它定义特定的th:*处理器。
所以如下:
<span th:whatever="${user.name}">...</span>
将会变成:
<span whatever="John Apricot">...</span>
Last updated 5 years ago