JSP:使用表达式作为tablib属性的值

我打算创建自己的taglib,并将一个jsp变量作为属性值传递给taglib。

<%@ taglib uri =“/ WEB-INF / taglib.tld”prefix =“custom”%>

<%String myFilter =....; %>
<custom:printAllPeople filter="<%=myFilter%>" >

</custom:printAllPeople>

tld:

<taglib>
    <tlibversion>1.0</tlibversion>
    <jspversion>1.1</jspversion>    
    <tag>
        <name>printAllPeople</name>
        <tagclass>jb.taglib.FilterPersonTagLib</tagclass>       
        <attribute>
            <name>filter</name>
            <required>true</required>           
        </attribute>                
        <info>print all people</info>
    </tag>
</taglib>

我得到:org.apache.jasper.JasperException:/filterTagLib.jsp(行:23,列:1)根据标记文件中的TLD或属性指令,属性过滤器不接受任何表达式

我如何使用表达式作为属性值?


您需要在您的TLD属性中使用rtexprvalue:

<attribute>
   <name>filter</name>
   <required>true</required>
   <rtexprvalue>true</rtexprvalue>
</attribute>
链接地址: http://www.djcxy.com/p/74679.html

上一篇: JSP: using expressions as values to tablib attributes

下一篇: How to declare jsp custom tag in configuration class of Java web application