嗨,使用
eclipse juno,动态 Web 项目
apache Tomcat v7.0(它有自己的 jstl-1.2.1.jar)我收到此错误
javax.servlet.ServletException: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/LoopTag
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:343)
javax.servlet.http.HttpServlet.service(HttpServlet.java:722)
当我尝试运行这个jsp代码时
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>Insert title here</title>
</head>
<body>
<c:forEach var="test" items="a,b,c">
${test}
</c:forEach>
</body>
</html>
似乎看不到 jar 中的 javax.servlet.jsp.jstl.core.LoopTag 类
我已经阅读了一些关于过滤器阻止 javax.servlet 文件的内容,
任何帮助将不胜感激
好的,我想我已经找到解决方案 javax.servlet.jsp.jstl-1.2.1.jar
不包含 javax.servlet.jsp.jstl.core 类
jstl-1.2.jar 也需要添加