java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config

来源:互联网 发布:淘宝代理怎么发货视频 编辑:程序博客网 时间:2024/06/05 06:26

Java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.Config

The problem is it miss jstl jar. By default, TomcatContainer doesn’t contain any jstl library. To fix it, declares jstl.jar in your Maven pom.xml file.

[html] view plain copy
  1. <dependency>  
  2.             <groupId>javax.servlet</groupId>  
  3.             <artifactId>jstl</artifactId>  
  4.             <version>1.2</version>  
  5.             <scope>runtime</scope>  
  6.         </dependency>
阅读全文
0 0
原创粉丝点击