Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"

今天在页面中引用JSTL标签时报错, Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"

在网上查找资料表示,缺少两个jar包引起的,分别是:jstl.jar和standard.jar。下面是maven中的引用情况:
<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
</dependency>

<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>jstl</artifactId>
  <version>1.2</version>
</dependency>

你可能感兴趣的:(Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core")