Dec
09
Cannot find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
Posted by | Posted in JSP | Posted on 09-12-2008
Tagged Under : Java, JSP, JSTL
Cannot find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”
‘Cannot find the tag library descriptor for “http://java.sun.com/jsp/jstl/core”‘ is an error message that you might have seen while executing your JSTL code. So if you are getting this error message, the first thing you need to do is to make sure that you have all the JSTL jar files are in your class path. If you have the JSTL libraries in your class path and still you are getting the same error, you will have an older version of JSTL in your class path. Now to fix this issue change the declaration to
<%@taglib uri="http://java.sun.com/jstl/core" prefix="c" %> |


