标签: 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>