below is my code in jsp
<c:forEach var="list" items="${historyList}" varStatus="iter">
<tr>
<td>${list[0]}</td>
<td>${list[1]}</td>
<td>${list[2]}</td>
</tr>
</c:forEach>
The problem is the above code is giving the list of items correctly.But each value is repeated 6 times.
Output:
0.456 1234 OK
0.456 1234 OK
0.456 1234 OK
0.456 1234 OK
0.456 1234 OK
0.456 1234 OK
1.209 3457 YES
// this above row is also 6 times repeating
I am getting all the values but repeatedly getting like above.Please solve my problem.Thank you.