I'm try show my data into JSP using JSTL, but console show me javax.el.PropertyNotFoundException: The class 'java.lang.Integer' does not have the property '0'
I have a List<Object>
with Integer and BigDecimal
and my JSP I did put
<c:forEach items="${obj}" var="object">
<tr>
<td width="10%" class="r1Left">${object[0].id}</td>
</tr>
</c:forEach>
My List<Object>
contain [10, 1278612143.23, 10, 3343443.56, 4, 123.45]
Please help me.