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

编程中遇到: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

这是因为你的JSTL配置有误!我可以肯定你是在JSP页面中使用了JSTL,但是JSP页面中引入JSTL时却配置错误,错误为URI不正确(这有可能是拼写错误,也有可能是.tld文件不存在,

Servlet2.3以下版本的规范要求必须有.tld文件),你好好检查一下,改好JSTL的配置跳转就不会有问题了

 

原文地址:https://www.cnblogs.com/qianzf/p/11452927.html