maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.
Posted lonecloud
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.相关的知识,希望对你有一定的参考价值。
maven 中使用jstl表达式中出现如上错误。原因:
1.由于在maven中的web项目没有自动依赖jstl的jar
未在pom文件中添加jstl相关的jar
1 <!--jstl表达式--> 2 <dependency> 3 <groupId>jstl</groupId> 4 <artifactId>jstl</artifactId> 5 <version>1.2</version> 6 </dependency> 7 <dependency> 8 <groupId>taglibs</groupId> 9 <artifactId>standard</artifactId> 10 <version>1.2</version> 11 </dependency>
在这里添加上面两个jar的依赖就可以解决
以上是关于maven使用jstl表达式和The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved in either web.的主要内容,如果未能解决你的问题,请参考以下文章
使用jstl报http://java.sun.com/jsp/jstl/core cannot be resolved in either web.xml or the jar错误
JavaWeb:理解JSP以及原理,能在JSP中使用 EL表达式和JSTL标签