The JSP Validator is producing this warning in my war project.
Run-time exception java.lang.NoClassDefFoundError occurred during validation. The validator being run was JSP Validator and the message thrown was .
The warning message looks truncated. It would be nice if it told me what class it’s not finding!
The JSP itself is just using the JSTL taglib, which is declared in the web.xml and the jars are located in the WEB-INF/lib of the same project. Everything otherwise builds and runs perfectly, so I don’t know what the JSP Validator is complaining about. 🙂
<%@ taglib prefix=”fmt” uri=”http://java.sun.com/jstl/fmt” %>
Ben