开发工具:IntelliJ IDEA for Mac
开发项目:struts2-demo
构建工件:Maven
问题描述:在 jsp 中使用了 jstl 标签 <c:forEach>
,浏览器访问 Action 组件提示错误:
java.lang.ClassNotFoundException: javax.servlet.jsp.jstl.core.LoopTag
把下面的 jstl 的依赖:
<dependency><groupId>javax.servlet.jsp.jstl</groupId><artifactId>jstl</artifactId><version>1.2</version>
</dependency>
改成:
<dependency><groupId>javax.servlet</groupId><artifactId>jstl</artifactId><version>1.1.2</version>
</dependency>
问题解决!