反向 Ajax + JSP-Servlet
我们正在尝试在我们的项目中创建一个反向ajax。
我在网上查了一下,没有找到具体的东西。我无法成功运行任何提供的教程。
我的目标是: 当服务器有偶数推送时(可能是高 CPU 使用率/RAM 等),提供屏幕警报(如弹出窗口)。
We are trying to create a reverse ajax in our project.
I've checked on the net and didn't find something concrete. I was unable to run any of the tutorials provided successfully.
My object is:
to provide on-screen alerts (like a pop-up) when ever there is an even pushed from the server (it could be high cpu usage/ram, anything).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
HTTP 协议(毕竟幸运的是)不支持 PUSH,所以就到此为止了。
你能做的最好的事情就是让客户端按时间间隔触发ajax轮询请求我可以推荐
jQuery.ajax()
与setInterval()
结合使用。或者(并且需要付出更多努力)您可以使用 Comet 技术(它模拟了虚构的 HTTP PUSH 或多或少)。使用此关键字检查应用程序服务器特定文档/wiki 以获取详细信息。下面是一个针对 Tomcat 的示例: http://wiki.apache.org/tomcat/WhatIsComet
编辑:根据要求,这里有一个 Tomcat+Comet 入门教程:http://www.ibm.com/developerworks/web/library/wa-cometjava/#N100CC 希望这会有所帮助。
The HTTP protocol (fortunately, after all) doesn't support PUSH, so it stops there.
Best what you can do is to let the client fire ajax poll requests at timed intervals I can recommend
jQuery.ajax()
in combination withsetInterval()
for this.Alternatively (and with a bit more effort) you could make use of Comet technique (which simulates the fictive HTTP PUSH less or more). Check the appserver specific documentation/wiki using this keyword for details. Here's a Tomcat targeted example: http://wiki.apache.org/tomcat/WhatIsComet
Edit: as requested, here's a Tomcat+Comet tutorial to get started: http://www.ibm.com/developerworks/web/library/wa-cometjava/#N100CC Hope this helps.
这是一个有价值的 资源
Here is a valuable resource