tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Articles > Servlets > How to get last element of collection in JSTL

How to get last element of collection in JSTL

Author: Venkata Sudhakar

The below example shows how to get last element of collection in JSTL. You may use statusVariable.last to check whether the element being iterated is the last element.

1<c:forEach items="${notifications}" var="notification" varStatus="loop">
2    ${notification.text}
3    <c:if test="${!loop.last}">
4        <br/><br/>
5    </c:if>
6</c:forEach>

 
  


  
bl  br