如何在其他用户执行操作后自动更新页面?
在我的网络应用程序中有一个页面,用户可以在其中发布消息。问题是用户始终必须单击“获取消息”按钮才能查看自用户开始查看页面以来其他用户发布的消息。因此,用户正在查看的信息仅在他再次单击“获取消息”按钮时才是最新的。如何在 JSF 2.0 中实现当其他用户删除、插入或更新消息时,其他用户可以直接看到这些更改。有人可能会说我想完成像 Facebook 应用程序那样的事情:如果有人发布新信息,他的“朋友”可以直接在他们的提要中看到它,而无需按下按钮。任何帮助将不胜感激。
我正在使用 JSF 2.0 和 GlassFish Server。
In my web application there's a page where users can post messages. The problem is a user always has to click a button 'get messages' to see the messages other users have posted since the moment the user started viewing the page. So the information the user is viewing is only up to date from the moment he clicked the button 'get messages' again. How can I accomplish in JSF 2.0 that when an other user deletes, inserts or updates a message, the other users can see these changes directly. One could say I'd like to accomplish something like the Facebook application does: if someone posts new information, his 'friends' can see it directly in their feed without having to push a button. Any help would be greatly appreciated.
I'm using JSF 2.0 and GlassFish Server.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以投票或推送。
推一下比较好。请参阅此线程,了解如何使用 JSF 服务器如何将异步更改推送到 JSF 创建的 HTML 页面?
You can either do polling or pushing.
Pushing is better. Refer to this thread on how to do it with JSF How can server push asynchronous changes to a HTML page created by JSF?