我正在开发一个自由标记模板,这是一个示例。
<Grantor>
<UniqueID>${(currentGrantorIndex)!?string}</UniqueID> // want to comment this line
<Entity>${(grantor.entityTypeName)!?string}</Entity>
</Grantor>
我想知道如何在freemarker模板中写评论或注释掉几行。有什么想法吗?
答案 0 :(得分:34)
freemarker中的评论由<#--
和-->
分隔。这些分隔符之间的所有内容都不会被freemarker解释,也不会出现在输出中。
<Grantor>
<#-- <UniqueID>${(currentGrantorIndex)!?string}</UniqueID> -->
<Entity>${(grantor.entityTypeName)!?string}</Entity>
</Grantor>
请参阅freemarker参考here。