多个浏览器选项卡/窗口和 NUMBER_OF_VIEWS_IN_SESSION
我们正在开发一个应用程序,其中我们必须支持多个浏览器选项卡/窗口。 我们的设置: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
web.xml
中将视图状态保存方法设置为client
而不是server
。这样,整个视图状态将(当然以序列化形式)保存在表单的隐藏输入字段中,而不是仅保存引用会话中状态的视图状态 ID。这样做的缺点是页面大小可能会增加,但如果您打开了部分视图状态保存(这应该是 JSF 2.0 中的默认设置),这应该不是一个主要问题。
另请参阅:
Set the view state saving method to
client
instead ofserver
inweb.xml
.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: