缺少包含TLD的JAR资源

时间:2013-02-07 10:07:58

标签: jsp tags tld custom-tag

我创建了一个库 - customtags.jar

enter image description here

taglib.tld结构如下

<?xml version="1.0" encoding="UTF-8"?>
<taglib version="2.1" 
    xmlns="http://java.sun.com/xml/ns/javaee" 
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
    xsi:schemaLocation="http://java.sun.com/xml/ns/javaee 
http://java.sun.com/xml/ns/javaee/web-jsptaglibrary_2_1.xsd">

<tlib-version>1.0</tlib-version>
<short-name>custom</short-name>
<uri>taglib</uri>

<tag-file> 
    <name>label</name> 
    <path>/WEB-INF/tags/Label.tag</path> 
</tag-file> 
<tag-file> 
    <name>textarea</name> 
    <path>/WEB-INF/tags/TextArea.tag</path> 
</tag-file> 
<tag-file> 
    <name>textfield</name> 
    <path>/WEB-INF/tags/TextField.tag</path> 
</tag-file> 

在index.jsp页面

<%@taglib prefix="custom" uri="customtags.jar"%>

enter image description here

如果我改变

<%@taglib prefix="custom" uri="WEB-INF/lib/customtags.jar"%>

enter code here

请更正并更新我!

1 个答案:

答案 0 :(得分:0)

尝试直接在tags下创建WEB-INF目录,并将jar放在此目录中。

请注意,此错误提到它正在查找此目录: enter image description here