我尝试使用JSTL将我的数据显示到JSP中,但是控制台显示我javax.el.PropertyNotFoundException: The class 'java.lang.Integer' does not have the property '0'
我有List<Object>
Integer and BigDecimal
而我的JSP确实放了
<c:forEach items="${obj}" var="object">
<tr>
<td width="10%" class="r1Left">${object[0].id}</td>
</tr>
</c:forEach>
我的List<Object>
包含[10,1278612143.23,10,3343443.56,4,123.45]
请帮帮我。
答案 0 :(得分:3)
我认为你只想要${object.id}
,此时你得到的对象不是列表。