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、在pom.xml中引入jstl.jar
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
2、在项目中引入jstl.jar包
本文介绍了解决在使用JSP时遇到的org.apache.jasper.JasperException异常的方法,该异常通常是因为缺少对JSTL的支持。通过在项目的pom.xml文件中引入正确的依赖或者直接将jstl.jar包添加到项目中来解决问题。
702

被折叠的 条评论
为什么被折叠?



