org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be res
Posted
by user291750
on Stack Overflow
See other posts from Stack Overflow
or by user291750
Published on 2010-03-11T18:11:32Z
Indexed on
2010/03/11
18:14 UTC
Read the original article
Hit count: 397
I've been having the following problem with my GoDaddy's server. I am using JSPs with the JSTL Library. My /WEB-INF/lib folder contains the following libraries:
jstl.jar standard.jar
My JSP looks something like this:
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<p>Hello! <%
out.print(System.getProperty("java.class.path"));
%></p>
But I keep getting the following exception:
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar files deployed with this application
Any ideas as to why it is doing that?
Thanks
© Stack Overflow or respective owner