Vejam codigo abaixo
Meu TLD
<?xml version=“1.0” encoding=“ISO-8859-1” ?>
<!DOCTYPE taglib
PUBLIC “-//Sun Microsystems, Inc.//DTD JSP Tag Library 1.2//EN”
“http://java.sun.com/j2ee/dtd/web-jsptaglibrary_1_2.dtd”>
<taglib>
<tlib-version>1.0</tlib-version>
<jsp-version>1.2</jsp-version>
<short-name>teste</short-name>
<tag>
<name>teste01</name>
<tag-class>teste.ExemploTag01</tag-class>
<body-content>empty</body-content>
</tag>
</taglib>
Meu jsp
<%@ taglib uri="/teste" prefix=“ex”%>
<html>
<head>
<title>ExemploTag01.jsp</title>
</head>
<body>
<ex:teste01/>
</body>
</html>
meu web.xml
<taglib>
<taglib-uri>/teste</taglib-uri>
<taglib-location>/WEB-INF/BibliotecaEx_1_0.tld</taglib-location>
</taglib>
=============================
O erro 'e essse
org.apache.jasper.JasperException: File “/teste” not found
at org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:105)
================
Por favor me ajudem
[/code][/quote]