maven使用jstl表达式和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解决

时间:2024-10-30 11:35:08

maven使用jstl表达式和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解决

maven 中使用jstl表达式中出现如上错误。原因:

1.由于在maven中的web项目没有自动依赖jstl的jar

未在pom文件中添加jstl相关的jar

       <!--jstl表达式-->
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>taglibs</groupId>
<artifactId>standard</artifactId>
<version>1.2</version>
</dependency>

在这里添加上面两个jar的依赖就可以解决