I am new to using XDoclet and find it very interesting, so I decided to follow the XDoclet Tutorial on the tutorials page to create MyXDocletWeb project. Everything seemed to go very well until I got to the part of creating the TestJsp.jsp page.
Here is the content of the source:
<%@ page language=”java” %>
<%@ taglib uri=”/mytaglib” prefix=”mytag” %>
<html>
<head>
<title>I am a happy JSP page. Yeah!</title>
</head>
<body>
<mytag:BasicTag includePage=”true” includeBody=”true” iterate=”3″>
Current iteration is <%=currentIter%> <br/>
</mytag:BasicTag>
</body>
</html>
The system complains that it cannot find /mytaglib. I followed the directions in the tutorial and double-checked everything, still not working. Any suggestions?