I have a jsp in which there is something like this
${pageContext.request.parameterMap.instanceNo[0]}
I want to iterate through each of its value.
I tried the below code but doesn't work
<s:iterator id="test" var="" value="${pageContext.request.parameterMap.instanceNo[0]}">
Hello
</s:iterator>