maven 中使用jstl 错误解决

maven 中使用jstl表达式中出现如上错误。原因:

导入jstl 的jar包,却没有在pom文件中添加jstl相关的jar依赖项。

<!--jstl表达式-->
      <dependency>
          <groupId>jstl</groupId>
          <artifactId>jstl</artifactId>
          <version>1.2</version>
      </dependency>
      <dependency>
          <groupId>taglibs</groupId>
          <artifactId>standard</artifactId>
          <version>1.2</version>
      </dependency>
原文地址:https://www.cnblogs.com/Hackerman/p/7760536.html