Thymeleaf
Thymeleaf 解析器级注释块:
- 删除<!--/* 和 */-->之间的所有内容
<!--/*-->
<div>
you can see me only befor Thymeleaf processes me!
</div>
<!--*/-->
- 原型注释块
当模板静态打开时(比如原型设计),原型注释块所注释的代码将被注释,而在模板执行时,这些注释的代码,就能被显示出来。
<span>hello!</span>
<!--/*/
<div th:text="$(...)">
...
</div>
/*/-->
<span>goodbye!</span>