Java 的反向 ajax 库是什么?

发布于 2024-10-18 06:22:25 字数 150 浏览 2 评论 0原文

Java Web 应用程序中的反向 ajax 库有哪些值得一看?

Atmopshere 仍处于 0.6 版本,ICEpush 仍处于 alpha 版本,Firefox 4.0 中的 websockets 也将不可用。

What are worth to look at libraries for reverse ajax in Java web app?

Atmopshere is still in 0.6 version, ICEpush still in alpha version, and websockets in Firefox 4.0 wont be available too.

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

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

发布评论

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

评论(5

悲歌长辞 2024-10-25 06:22:25

尝试Comet 与 Tomcat。另外,Tomcat 7 可能对您有用,因为它实现了 Servlet 3.0 规范,我相信由于异步支持,该规范对反向 Ajax 有一些好处。 这里是一个示例。

Try out Comet with Tomcat. Also, Tomcat 7 might be useful to you since it implements the Servlet 3.0 spec, which I believe has some niceties for Reverse Ajax thanks to the Async support. Here is an example.

夕色琉璃 2024-10-25 06:22:25

尝试 DWR

Try DWR

再见回来 2024-10-25 06:22:25

您还可以使用 APE(Ajax 推送引擎)。这是链接APE

You can also use APE(Ajax Push Engine). Here is the link APE

空城仅有旧梦在 2024-10-25 06:22:25

氛围的好处在于它委托给可用的最佳底层机制,并且这些机制大多是稳定的(每个容器提供自己的方式)。我认为这或多或少是一个标准解决方案,所以不要被版本所困扰。 (注:我没用过)

The good thing about atmosphere is that it delegates to the best underlying mechanism available, and these mechanisms are mostly stable (each container provides its own ways). I think it's more or less a standard solution, so don't be bothered by the version. (Note: I haven't used it)

箹锭⒈辈孓 2024-10-25 06:22:25

博客文章 Comet 和反向 AJAX 简介< /a> 作者:Krishna Srinivasan 说:

使用 ICEfaces 进行 AJAX 推送

它是一个基于 AJAX 的开源框架,用于使用 Java 开发富互联网应用程序。 AJAX 推送是 ICEfaces 的一项令人兴奋的功能,它使我们能够使用简单的 Java API 开发 Comet Web 应用程序,而无需担心推送机制的低级细节。 ICEfaces 使用“长轮询”从服务器到客户端进行通信。这涉及通过阻塞请求保持从客户端到服务器的打开连接,然后仅在应用程序中发生某些状态更改时才发送响应。

The blog post Introduction to Comet and Reverse AJAX by Krishna Srinivasan says:

AJAX push with ICEfaces

It is an open source AJAX based framework for developing Rich Internet Applications using Java. AJAX push is an exciting feature of ICEfaces which enable us to develop Comet web application with simple Java API without worrying about the low-level details of the push-mechanism. ICEfaces uses “long polling” to communicate from server to client. This involves holding an open connection from client to server with a blocking request, and then sends the response only when some state change in the application.

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