I\'m having problem running over ArrayList items and displaying them in JSP file.
Here is my bean:
public class UsersList {
private ArrayList<
Since your adding the object to session you need to access it from sessionScope in EL.
<c:forEach var="current" items="${sessionScope.bean.users}" >
<tr>
<td>${current.email}</td>
<td>${current.username}</td>
<td><input type="checkbox" name="delete" value="${current.email}"</td>
</tr>
</c:forEach>
Check if your prefix "c" points to the right tag library.
It should be
"http://java.sun.com/jsp/jstl/core"
If that does not work, check if there is mistake in the logic of populating the data.