I try to use Custom Tags in an application web and I add
|
Code:
|
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%> |
But it doesn't recognize any tag, for example:
|
Code:
|
<c:if>, <c:forEach> |
The absolute uri:
JavaServer Pages Standard Tag Library can't resolve it or in web.xml or in the jar files
How can I resolve this?
the tags
|
Code:
|
<%@taglib uri="http://jakarta.apache.org/struts/tags-html" prefix="html"%> |
are recognized and works fine
Eric