使用session来存储bean

发布于 2024-12-12 01:48:45 字数 202 浏览 0 评论 0原文

我用stuts2 进行了设置。我有一个分页页面,它是用户提交表单的结果。该表单 bean 用于执行搜索,结果根据页面大小显示。当用户单击“下一步”时,用户输入的所有值都需要可用于搜索。为了解决这个问题,我正在考虑将 bean 对象存储在会话中,以便每次用户单击“下一步”时,都可以从会话中读取用户输入的值。 这是维护价值观的正确方法吗? struts 2中有没有更好的方法来处理这种情况?

I have a set up with stuts2. I have a paginated page which is result of a form submitted by a user. This form bean is used to perform the search and results are shown as per the page size. when user clicks next, all the values entered by the user needs to be available for the search. To solve this i am thinking of storing the bean object in the session, so that every time user clicks next, user entered values can be read from the session.
Is this the right approach to maintain the values? is there better way to handle such situation in struts 2?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

葵雨 2024-12-19 01:48:45

这是存储分页结果搜索参数的好方法。

您也可以每次都重新提交它们;这取决于您如何处理分页。重新提交(而不是会话)允许(更轻松)使用多个窗口/选项卡,这可能不是问题。

That's a fine way to store search parameters for paginating results.

You might just be able to resubmit them every time, too; it depends on how you're handling your pagination. Resubmitting (instead of session) allows the (easier) use of multiple windows/tab, which may not be a concern.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文