The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar

来源:互联网 发布:惠惠海淘助手淘宝货 编辑:程序博客网 时间:2024/05/16 10:00

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


原因:

(1)很可能是没有jar包

(2)web.xml 版本的问题

解决方法:

(1)把jar包放到lib下面。


(2)在jsp页面中可以直接引用<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>.

(3)检查版本是否一致


1 0
原创粉丝点击