如何使用 JSTL 读取 arrayList 内容
我想从 JSTL 读取分配给请求对象的 arrayList 对象属性 我该怎么做? 我尝试了以下
servlet 代码:
ArrayList<Employee> al = new ArrayList<Employee>();
/* code for filling the ArrayList with objects from class Employee */
request.setAttribute("alldata", al);`
在我的 JSP 页面中:
<jsp:useBean id="alldata" class="java.util.ArrayList" scope="request">
<c:forEach items="alldata" var="item">
<c:out value="item.getName()"></c:out>
</c:forEach>
</jsp:useBean>
但它不起作用,
提前致谢
I want to read the arrayList objects Attributes that is assigned to request object from JSTL
how can I do this?
i tryed the following
here is the servlet code:
ArrayList<Employee> al = new ArrayList<Employee>();
/* code for filling the ArrayList with objects from class Employee */
request.setAttribute("alldata", al);`
In my JSP page:
<jsp:useBean id="alldata" class="java.util.ArrayList" scope="request">
<c:forEach items="alldata" var="item">
<c:out value="item.getName()"></c:out>
</c:forEach>
</jsp:useBean>
but it's not working,
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它应该是:
注意:不需要
。It should be :
Note: No
<jsp:useBean>
required.使用EL表达式
use EL expression