JSP从servlet获取参数
我正在开发一个 Java Web 应用程序,我希望我的 JSP 文件与我的 Servlet 进行通信,而 Servlet 又与数据库进行通信。
将我创建的实体从 Servlet 传递到 JSP 页面的最佳方法是什么?
I'm working on a Java web application and i want my JSP files to comunicate with my Servlets which comunicate with the database.
What is the best way to pass entities i have created from a Servlet to a JSP page?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将信息从 Servlet 发送到 JSP 的标准方法是使用如下代码将其放入“请求范围”中:
在 JSP 中,您将使用以下内容检索用户对象:
The standard way to send information from a Servlet to a JSP is to put it in "request scope" using code like this:
In your JSP, you would retrieve the users object with something like: