当我尝试使用地图自定义标签时,我收到Error: 500
一条消息File "/customTag" not found
这是我的尝试:myTag.tld
<taglib version="2.0" xmlns="http://java.sun.com/xml/j2ee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee/web-jsptaglibrary_2_0.xsd"
>
<uri>customTag</uri>
<tlib-version>1.0</tlib-version>
<tag>
<name>multiplier</name>
<tag-class>myPack.MultiplierTag</tag-class>
<attribute>
<name>input</name>
<required>true</required>
<rtexprvalue>true</rtexprvalue>
</attribute>
</tag>
</taglib>
jsp页面
<%@taglib uri="/customTag" prefix="operator"%>
<%
String input = request.getParameter("input");
%>
<operator:multiplier input="<%=input%>"></operator:multiplier>
当我尝试.tld
使用文件名访问文件时,一切都很好