更新到版本2.3.22后,自定义标签无法在freemarker中工作

时间:2016-03-18 13:44:28

标签: freemarker

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

 <#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]

&#34; @&#34;符号。 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>

1 个答案:

答案 0 :(得分:1)

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