我写的一段代码:
<%@ taglib uri="http://java.sun.com/jstl/core_rt" prefix="c" %><html>
  <body>
    You sent the following request headers:
    <br />
    <table border="1">
      <tr>
      <th>
        Header
      </th>
      <th>
        Value
      </th>
    </tr><c:forEach var="entry" items="${header}">
  <tr>
    <td>
       ${entry.key}
    </td>
    <td>
       ${entry.value}
    </td>
  </tr>
</c:forEach>
</table>
  </body>
</html>
,
键入:http://localhost:8080/RequestHeaders/request.jsp. 缺看不到表格,包异常。请高手帮我解决下啊。