使用session来存储bean
我用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是存储分页结果搜索参数的好方法。
您也可以每次都重新提交它们;这取决于您如何处理分页。重新提交(而不是会话)允许(更轻松)使用多个窗口/选项卡,这可能不是问题。
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.