Caused by: java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.LoopTag

来源:互联网 发布:淘宝手工食品放哪类目 编辑:程序博客网 时间:2024/06/05 20:51

明明引入了 jstl,为什么还报错?

原来引入的不对。

错误的引入:

<dependency><groupId>javax.servlet.jsp.jstl</groupId><artifactId>jstl</artifactId><version>1.2</version></dependency>


正确的引入:


<dependency>    <groupId>jstl</groupId>    <artifactId>jstl</artifactId>    <version>1.2</version></dependency>



阅读全文
0 0
原创粉丝点击