The below code is not working
<c:forEach var="row" varStatus="rowCount" begin="1" end="10">
<c:set var="entry" scope="request" value="${session.entry.mileStones[rowCount.count]}"/>
or
<c:set var="entry" scope="request" value="${entry.mileStones[rowCount.count]}"/>
</c:forEach>
where , Entry.getMileStones ====> HashSet is properly set in action class in session scope.
getSession().setAttribute("entry", entry);
Any idea..