刷新我的Maven项目后,当我在Tomcat中打开jsp时会出现此错误。原因是什么?
jstl依赖
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
这就是我在jsp中导入jstl的方式
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
答案 0 :(得分:0)
将以下依赖项添加到pom.xml
:
<dependency>
<groupId>jstl</groupId>
<artifactId>jstl</artifactId>
<version>1.2</version>
</dependency>