多个浏览器选项卡/窗口和 NUMBER_OF_VIEWS_IN_SESSION

发布于 2024-12-18 09:33:20 字数 320 浏览 2 评论 0原文

我们正在开发一个应用程序,其中我们必须支持多个浏览器选项卡/窗口。 我们的设置:MyFaces 2.1、Spring、Orchestra

默认情况下,org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION 设置为 20。这意味着,如果您在浏览器中打开 21 个选项卡,则第一个选项卡中的页面将停止工作 - 没有给定的视图状态看法。

如果您打开 2 个选项卡并在第二个选项卡中请求 21 个视图更新(即 Ajax 事件),也会发生同样的情况。然后单击第一个选项卡将生成相同的异常。

有办法解决这个问题吗?例如,是否可以将视图缓存绑定到会话范围?

We are developing an app in which we have to support multiple browser tabs/windows.
Our setup: MyFaces 2.1, Spring, Orchestra

By default the org.apache.myfaces.NUMBER_OF_VIEWS_IN_SESSION is set to 20. This means that if you open 21 tabs in browser, then the page in the first tab stops working - no view state for given view.

The same will happen if you open 2 tabs and request 21 view updates (ie. Ajax events) in the second tab. Then a click in the first tab will generate the same exception.

Is there a way around this? For example, is it possible to bind the view cache to conversation scope?

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

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

发布评论

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

评论(1

来日方长 2024-12-25 09:33:20

web.xml 中将视图状态保存方法设置为 client 而不是 server

<context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
</context-param>

这样,整个视图状态将(当然以序列化形式)保存在表单的隐藏输入字段中,而不是仅保存引用会话中状态的视图状态 ID。这样做的缺点是页面大小可能会增加,但如果您打开了部分视图状态保存(这应该是 JSF 2.0 中的默认设置),这应该不是一个主要问题。

另请参阅:

Set the view state saving method to client instead of server in web.xml.

<context-param>
    <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
    <param-value>client</param-value>
</context-param>

This way the entire view state will be saved (in serialized form, of course) in a hidden input field of the form instead of only the view state ID which refers the state in the session. This has the disadvantage that the page size may grow, but this should not be a major issue if you have partial view state saving turned on (which should be the default in JSF 2.0).

See also:

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