在我的 JSF 页面中实现聊天
我有使用 JSF 框架的 J2EE Web 应用程序。现在我正在尝试向我的应用程序添加聊天功能。我面临的问题是
当有人 ping 我时,我应该能够在我的 jsp 页面上看到聊天通知。这意味着当新的聊天通知到来时,服务器应该能够更新我的页面。请告诉我我的jsp页面如何监听传入的数据包。
I have J2EE web application which uses JSF framework. Now I am trying to add chat functionality to my application. The problem that I am facing is
When someone pings me, i should be able to see a chat notification on my jsp page. Which means server should be able to update my page when new chat notification comes. Please tell me how can my jsp page listen to incoming packets.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该研究推送技术。许多 JSF 库直接支持它:icefaces、richfaces 和 primefaces 至少。如果您不想使用其中任何一个,您也可以查看 atmosphere,但这需要一些JavaScript 和服务器端编码。
You should look into push technologies. Many JSF libraries support it directly: icefaces, richfaces and primefaces at least. If you don't want to use any of these you may also check out atmosphere, but this will require some javascript and server side coding.