如何通过Struts框架中的控制器页面将从数据库检索到的表显示到jsp页面
我创建了一个模型类,通过一个检索表数据的函数来连接数据库。现在这个函数应该将整个结果集返回到控制器操作页面。 进一步的控制器操作应将数据发送到 jsp 页面以供客户端查看。
或者只是如何保存来自查询的结果集数据,例如..select * from table
i have created a model class to connect with database with a function that retrives a table data.now this function should return whole resultset back to a Controller action page.
further controller action should send the data to jsp page for client viewing.
or simply how to hold Resultset data from query like..select * from table
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在模型类中,您可以将 ResultSet 转换为 List,随后返回到视图。您需要编写的唯一代码是将 ResultSet 转换为对象列表
In Model class you can convert your ResultSet into List which subsequently returned to view.The only code you need to write is converting ResultSet into List of Object