Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Bean "Result" では、arrayList "tempList" が設定されます。この Bean はセッションに設定されます。JSP ページで arrayList 要素を取得する必要があります。
その要素を取得する方法がわかりません。
提案してください。
JSTL を使用します<c:forEach>。
<c:forEach>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %> ... <c:forEach items="${youSessionAttributeName}" var="i"> Item <c:out value="${i}"/><p> </c:forEach>