java.lang.NoClassDefFoundError:org / apache / taglibs / standard / tag / rt / core / UrlTag

时间:2015-08-20 14:37:46

标签: java jsp maven jstl

刷新我的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" %>  

1 个答案:

答案 0 :(得分:0)

将以下依赖项添加到pom.xml

<dependency> 
    <groupId>jstl</groupId> 
    <artifactId>jstl</artifactId> 
    <version>1.2</version> 
</dependency>