在浏览器输入http://127.0.0.1/ora/ch5/easy.jsp
都是出现下面的错误
Location: /ora/ch5/easy.jsp
Internal Servlet Error:org.apache.jasper.compiler.CompileException: C:\tomcat\webapps\ora\ch5\easy.jsp(1,0) Unable to open taglibrary http://java.sun.com/jsp/jstl/core : Could not locate TLD META-INF/taglib.tld
源代码是
<%@ page contentType="text/html" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<html>
  <head>
    <title>JSP is Easy</title>
  </head>
  <body bgcolor="white">    <h1>JSP is as easy as ...</h1>    <%-- Calculate the sum of 1 + 2 + 3 dynamically --%>
    1 + 2 + 3 = <c:out value="${1 + 2 + 3}" />  </body>
</html>