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

问题描述:

JSP页面提示Can not find the tag library descriptor for "http://java.sun.com/jsp/jstl/core"错误。

 

解决方法:

pom.xml文件中添加如下代码:

<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>1.1.2</version>
</dependency>
<dependency>
  <groupId>taglibs</groupId>
  <artifactId>standard</artifactId>
  <version>1.1.2</version>
</dependency>

 

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