arquivo taglib.tld:
[code]<?xml version="1.0" encoding="ISO-8859-1" ?>
1.0
1.2
test
classicTags
minha page.jsp que usa a tag:
[code]<%@ taglib uri=“classicTags” prefix=“test” %>
<test:mark />
[/code]o tag handler:
[code]import javax.servlet.jsp.;
import javax.servlet.jsp.tagext.;
public class MarkerTag extends BodyTagSupport {
public int doStartTag() throws JspException {
try {
pageContext.getOut().println("doStartTag OK");
} catch(Exception e) {
}
return SKIP_BODY;
}
}
[/code]
aí tudo isso junto gera um erro…
An error occurred at line: 6 in the jsp file: /page.jsp
MarkerTag cannot be resolved to a type
3:
4: <html><body>
5:
6: <test:mark />
7:
8: </body></html>
o que eu faço ?? alguém me ajuda ai valeu !