在使用JSTL在jsp中迭代列表时无法获取列表中的所有值

时间:2013-09-28 19:13:34

标签: java jsp jstl

在我的jsp中,我调用一个java函数来获取属性类型的ArrayList。

Jsp代码:

ArrayList<Properties> test = Tools.getlist();

JSTL:

 
<c:forEach items="${test}" var="prop">
    <c:out value="${prop.NAME}" />
    <c:out value="${prop.AGE}" /> 
</c:forEach>

0 个答案:

没有答案