更新到版本 2.3.22 后,自定义标签在 freemarker 中不起作用

Custom tags don't work in freemarker after updating to version 2.3.22

我用过freemarker 2.3.20版本。将其更新到 2.3.22 后,ftl 模板中的自定义标签不再起作用。我正在使用下一个自定义标签

 <#assign tg=JspTaglibs["/WEB-INF/tld/tg.tld"]/> 
 <@tg.property key="common.oldBrowserSection.title.firefox"/>

将 freemarker 版本更新到 2.3.23 后,我收到了

Caused by: freemarker.core.NonUserDefinedDirectiveLikeException: For "@" callee: 
Expected a(n) user-defined directive, transform or macro, but this has evaluated to 
a method+sequence (wrapper: f.e.b.SimpleMethodModel):
tg.property  [in template "WEB INF/freemarker/common/warning/oldBrowserWarning.ftl" 
 at line 6, column 11]


 Tip: Maybe using obj.something(params) instead of obj.something will yield the 
 desired value

 FTL stack trace ("~" means nesting-related):
- Failed at: 
@tg.property key="common.oldBrowserS...  [in template "WEB-INF/freemarker/common/warning/oldBrowserWarning.ftl" 
at line 6, column 9]

“@”符号似乎有问题。 Freemarker 将其识别为宏。所以我的问题是新的 freemaker 版本中这个问题的原因是什么,以及如何在不修改所有 ftl 模板(可能更改一些配置)的情况下解决这个问题。

<?xml version="1.0" encoding="UTF-8"?>

<taglib xmlns="http://java.sun.com/xml/ns/j2ee"
 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee      http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
version="2.0">
   <description>
       tag library
   </description>
   <tlib-version>1.0</tlib-version>
   <short-name>tg</short-name>

   ....

    <tag>
    <description>propertyT</description>
    <name>property</name>
    <tag-class>tg.pack.custom.PropertyTag</tag-class>
    <body-content>JSP</body-content>
    <attribute>
        <name>key</name>
        <required>true</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>canUseHtml</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>urlEncode</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>doProcessAttributes</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>escapeQuotes</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>escapeHtml</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>useUserEncode</name>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    <attribute>
        <name>js</name>
        <description>pass property to Javascript</description>
        <required>false</required>
        <rtexprvalue>true</rtexprvalue>
    </attribute>
    </tag>

     ....

    </taglib>

tld 中的函数:

    <function>
    <description>
        return localization value
    </description>
    <name>property</name>
    <function-class>td.app.customtag.Function</function-class>
    <function-signature>
        java.lang.String property(java.lang.Integer, java.lang.Integer, java.lang.String)
    </function-signature>
</function>

似乎在 FreeMarker 2.3.22 中添加 EL 函数支持时,并没有考虑到您可以拥有同名的自定义标签和 EL 函数。因此该函数覆盖了 FreeMarker 实现中的标记,因为 FreeMarker 没有用于指令和函数的单独名称空间。这将不得不在下一个版本 (2.3.25) 中以某种方式解决。目前,如果自定义标签和EL函数同名,可以使用${tg.property("common.oldBrowserSection.title.firefox")}.