One solution is to just use the c:forEach tag. If you are on an older servlet container which doesn't make JSTL available by default and don't want to add it as an additional dependency, though, it is possible to do this with Struts' s:iterator tag and an OGNL generator expression:
<s:iterator value="(10).{ #this }"><s:property/></s:iterator>
1 Comment
Anonymous
Could someone explain how this works? I found that the .
is projection on a collection but I couldn't find what (10) does in the ONGL docs. (Maybe add a link to the OGNL mojo.)