我需要使用pom.xml中“config.enableInstitutions”属性的值在Fremarker模板中用作隐藏输入的值。
的pom.xml
<properties>
<config.enableInstitutions>true</config.enableInstitutions>
</properties>
myfreemarker.ftl
<body>
<input type="hidden" value="<< value of config.enableInstitutions property here >>"/>
如何在freemarker模板中使用该属性?