|
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" > |
3 | < c:if test = "${!loop.last}" > |
|
|