Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core

将鼠标放在红色区域,提示报错信息:Cannot resolve taglib with uri http://java.sun.com/jsp/jstl/core

原因:缺少jstl的jar包。

解决方法:在pom文件中添加jstl的依赖即可

<jstl.version>1.2</jstl.version>
<dependency>
  <groupId>jstl</groupId>
  <artifactId>jstl</artifactId>
  <version>${jstl.version}</version>
</dependency>


相关文章:

  • 2021-09-09
  • 2021-05-17
  • 2022-12-23
  • 2021-09-06
  • 2021-11-11
猜你喜欢
  • 2021-09-06
  • 2022-01-01
  • 2021-07-05
  • 2022-12-23
  • 2021-09-03
  • 2022-01-11
  • 2021-09-29
相关资源
相似解决方案