JSTL Configuration Error

December 24, 2010

Java

If you are getting the following error while running the JSP 2.0 in Tomcat server.
It means the application is missing JSTL jar file. If you add standard.jar and jstl.jar
the problem will be solved.

1
2
3
4
5
6
7
java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/Config
	com.sun.faces.application.view.JspViewHandlingStrategy.executePageToBuildView(JspViewHandlingStrategy.java:286)
	com.sun.faces.application.view.JspViewHandlingStrategy.buildView(JspViewHandlingStrategy.java:123)
	com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:106)
	com.sun.faces.lifecycle.Phase.doPhase(Phase.java:103)
	com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:139)
	javax.faces.webapp.FacesServlet.service(FacesServlet.java:311)
email

Comments

comments