「JSTL」JSP画面にHashMapのkeyとvalueを取得するサンプル
書式
<c:forEach items="HashMap値" var=変数名
使用例
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %> <c:forEach items="${cftList.usersMap}" var="entry"> Key = ${entry.key}, value = ${entry.value}<br> </c:forEach>