如何在struts 2中显示从db到jsp页面的多行
我是struts 2的新手,我想将数据库表中的多行显示到jsp文件中。如何传递或设置属性来获取jsp页面中的行。
I am a newbie in struts 2, I want to display multiple rows from a database table to a jsp file. How to pass or set the properties to get the the rows in jsp page.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是我经常使用的方法:
RowBean是一个JavaBean,对应于一行结果集。
使用以下代码段提取jsp页面上的内容:
其中attribute1 ... attributeN与RowBean中定义的属性相同。
希望这有帮助。
This is the method I often use:
The RowBean is a JavaBean that corresponds to a row of resultset.
The use the following code segment to extract the content on the jsp page:
where the attribute1 ... attributeN are the same as the attributes defined in the RowBean.
Hope this helps.