If I use the JSTL forEach loop to display a list of all returned items from my controller, Is there a way to output an index number for each item that is returned in the list?
<c:forEach var="item" items="#{Controller.allItems}" >
<tr><td>{index number here???} : #{item.name}</td></tr>
</c:forEach>