IDEA编译器MAVEN编写SSM整合中出现的错误
The absolute uri: [***********] cannot be resolved in either web.xml or the jar files deployed with this application
博主试了很多种方法,但是最后有效的有两种:
第一种:
在pom.xml文件中添加:
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>
第二种
找到jsp文件中的文件删除提示中的语句
<%@ taglib prefix="c" uri="***************" %>