SSM中错误解决之The absolute uri: http://java.sun.com/jsp/jstl/core cannot be resolved--Binrry(冰蕊)

问题:

严重: Servlet.service() for servlet jsp threw exception
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的包

解决

在pom.xml中加入

<!-- https://mvnrepository.com/artifact/javax.servlet/jstl -->
<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jstl</artifactId>
    <version>1.2</version>
</dependency>

猜你喜欢

转载自blog.csdn.net/qq_40859852/article/details/85011865