I have arraylist of objects. From servlet, I'm putting it to session, like that:
session.setAttribute("registrations", rayList);
Here's jsp page:
<%@page import="java.util.ArrayList" %>
...
<c:forEach var="book" items="${registrations}">
<tr>
<td>${book.bookName}</td>
<td>${book.bookAmount}</td>
<td>${book.BookName}</td>
<td>${book.bookYear}</td>
</tr>
</c:forEach>
But there is empty, no errors, nothing happens.
But if I'll do the same with simple varible, all is ok.
Maybe I do something wrong?
empty = ${empty registrations}or evensize = <%= ((java.util.List) session.getAttribute("registration")).size() %>to your JSP to check if the list is there and non-empty. – JB Nizet Nov 27 '12 at 21:59