The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar
Posted jinzhiming
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar 相关的知识,希望对你有一定的参考价值。
错误信息: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.jstl.jar是1.1版本,需要引入standard.jar。
2.上述两个jar包如果都有了,反编译standard.jar包查看是否c.tld中的<uri>http://java.sun.com/jsp/jstl/core</uri>是不是和你页面上引用的taglib的uri一致。
jstl1.0是http://java.sun.com/jstl/core
jstl1.1是http://java.sun.com/jsp/jstl/core
两者相差个/jsp
3.如果jstl是1.2版本,那么这个jar包中集成了standard,不需要再引入standard.jar。
4.可能跟tomcat版本有关系。
Tomcat6 实现了 servlet 2.5 和JSP2.1的规范,可以支持JSTL1.2;
Tomcat5实现了 servlet 2.4 和JSP2.0的规范,只能支持JSTL1.1;
5.如果是使用tomcat7及以上版本出现问题。网上搜索有人说是tomcat7+版本不再支持jstl标签库自动导入,需要自己手动添加。
web.xml配置中需要如下配置,并且将jstl1.2.jar中的c.tld(或如果使用jstl1.1版本,将standard.jar中的c.tld)拷出一份来放到WEB-INF路径下。
<jsp-config> <taglib> <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> <taglib-location>/WEB-INF/c.tld</taglib-location> </taglib> </jsp-config>
本人测试tomcat6的web.xml不用配置也未出现上述的错误信息。不过也能加上配置,去掉jsp-conifg标签即可。
<taglib> <taglib-uri>http://java.sun.com/jsp/jstl/core</taglib-uri> <taglib-location>/WEB-INF/c.tld</taglib-location> </taglib>
希望可以帮到大家~
以上是关于The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar 的主要内容,如果未能解决你的问题,请参考以下文章
org.apache.jasper.JasperException: The absolute uri: http://java.sun.com/jsp/jstl/core cannot be res
The absolute uri: [http://java.sun.com/jsp/jstl/core] cannot be resolved in either web.xml or the ja
关于jstl的问题:The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml o
maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.
对象没有属性'build_absolute_uri' - Django Rest Framework
The Absolute Minimum Every Software Developer Absolutely, Positively Must Know About Unicode and Cha