web-dev-qa-db-ja.com

freemarkerテンプレートとsmooksのコメント

私はfreemarkerテンプレートに取り組んでおり、ここにサンプルがあります。

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

Freemarkerテンプレートでコメントを書く方法やコメントアウトする方法を知りたいです。何か案が?

23
SikanderAhmed

Freemarkerのコメントは<#---->で区切られています。これらの区切り文字の間のすべては、フリーマーカーによって解釈されず、出力には表示されません。

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

Freemarkerリファレンス ここ を参照してください。

38
obourgain