This link is useful for getting list sizes etc using JSTL:
http://forum.java.sun.com/thread.jspa?threadID=484828&messageID=3731101
Here is the piece for testing a certain size:
<c:if test=“${osms[1] ne null}”>
And if using JSTL 1.1 to get the size:
<c:if test=“${fn:length(list) > 1}”>
Advertisement
Filed under: Code