在JSP中获取无法解析的错误

当我为for循环运行一个普通的JSP代码时,

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ 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="i" begin="1" end="5">
   Item <c:out value="${i}"/><p>
</c:forEach>
</body>
</html>

它显示了我的输出

键入例外报告

消息:绝对uri:http://java.sun.com/jsp/jstl/core无法在web.xml或通过此应用程序部署的jar文件中解析

说明:服务器遇到内部错误,无法完成此请求。

我已经下载并在WEB-INF / lib下包含了JSTL 1.2

有谁能解决这个问题吗

TIA enter code here

链接地址: http://www.djcxy.com/p/74767.html

上一篇: Getting an unresolvable error in JSP

下一篇: cant get .jsp working in apache tomcat 8