免费标记模板和污点中的评论

2022-09-01 17:09:27

我正在研究一个自由标记模板,这是一个示例。

<Grantor>
    <UniqueID>${(currentGrantorIndex)!?string}</UniqueID> // want to comment this line
    <Entity>${(grantor.entityTypeName)!?string}</Entity>
</Grantor>

我想知道如何在自由标记模板中写评论或注释掉几行。有什么想法吗?


答案 1

自由标记中的注释由 和 分隔。这些分隔符之间的所有内容都不会由 freemarker 解释,也不会显示在输出中。<#---->

<Grantor>
    <#-- <UniqueID>${(currentGrantorIndex)!?string}</UniqueID> -->
    <Entity>${(grantor.entityTypeName)!?string}</Entity>
</Grantor>

请参阅此处的自由标记参考。


答案 2

使用 if 标记在自由标记中添加注释的另一种非标准方法:

<#if 1=0>comment</#if>

<#if false>comment</#if>

推荐