當我嘗試映射自定義標籤,我得到Error: 500
有消息File "/customTag" not found
錯誤在JSP中映射自定義標籤
這裏是我的嘗試: 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
文件,那麼一切都很好
只是猜測,但既然你有' customTag '然後也許嘗試'<%@ taglib uri =「customTag」前綴=「運營商」%>'沒有'/'customTag'前。 –
Pshemo
@Pshemo即使這不起作用。我試過 – guptakvgaurav