`
longying2008
  • 浏览: 300259 次
社区版块
存档分类
最新评论

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>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics