如何在 JSP 中显示数据库结果?
我有一个控制servlet,它将请求转发到模型servlet。模型servlet从数据库检索结果并将显示转发到jsp。如何在jsp中显示结果集?是否需要再次编写sql语句在jsp中?
I have a control servlet that forward the request to the model servlet.The model servlet retrieves results from a database and forward the display to the jsp.how do i display the result set in the jsp?Do i need to write the sql statement again in the jsp?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
不,您可以使用请求属性映射将数据从控制 Servlet 传递到 JSP 页面。
例子。控制器端:
示例。 JSP页面:
No, you use the request attributes map to pass data from the controlling Servlet to the JSP page.
Example. Controller Side:
Example. JSP page: