${test}
<c:forEach items=" ${test}" var="sharedType">
${sharedType}<br/>
<c:if test="${sharedType == 2}" >
<span class="tweet-button"></span>
</c:if>
<c:if test="${sharedType == 1}" >
TEST
<a href="#" class="fbshare-button">Share</a>
</c:if>
</c:forEach>
The integer list is 1,2,3. On my page, it show [1,2,3] for ${test}, and "[1" "2" "3" for ${sharedType} in 3 iterations. Looks like JSTL think it is a String separated by comma rather than a list. The code to generate the list in java is:
List<Integer> test= new ArrayList<Integer>();
test.add(1);
test.add(2);
test.add(3);
I have been struggling with this for a while, can anyone help me with this? Thanks.
" ${test}". – Nikita Rybak Jan 4 '11 at 18:35