如何将对象参数从 servlet 传递到 jsp 页面?
我想要传递的对象是项目列表,项目类如下所述:
class item{
String val1
String val2
String val3
}
//with getter setters
我如何将项目(List items = new ArrayList())从servlet传递到jsp页面以及我必须在jsp中添加什么才能访问对象?
the object i want to pass is a list of item, item class described below :
class item{
String val1
String val2
String val3
}
//with getter setters
How can i pass items ( List items = new ArrayList() ) from a servlet to a jsp page and what do i have to add in the jsp to access the object ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在 servlet 中,您可以将对象存储在请求范围内。
其中 items 是项目的 ArrayList。
在 JSP 页面上,您可以通过多种方式访问它。例如,使用 JSTL:
In the servlet you can store the object in the request scope.
Where items is your ArrayList of items.
On the JSP page you can access it in a number of ways. For example, using JSTL:
在servlet中:
然后转发到JSP中,然后在JSP中:
In the servlet:
then forward to the JSP, and then in the JSP: