0

我正在尝试使用 JSTL 显示哈希表。我做了如下。

从 servlet 获取哈希表

<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
<% Hashtable EmpAttendanceHashTable = (Hashtable)request.getAttribute("EmpAttendanceHashTable");%>

在 JSP 上显示 hastable。

<c:forEach items="${EmpAttendanceHashTable}" var="emp">
                <c:out value="${emp.key}" />
            </c:forEach>

但我可以看到输出为

 javax.servlet.ServletException: java.lang.NoClassDefFoundError: javax/servlet/jsp/jstl/core/ConditionalTagSupport
4

0 回答 0