来自 Java 服务器的持久 http 连接
我想在 Java spring 服务器和 Android 客户端之间创建持久连接。
我需要的是一种具有持久(长期 HTTP)连接的推送机制,一旦可用,该连接会将所有信息从服务器传输到客户端。
是否有任何可用的框架可以支持这一点,最好是 Java Spring。将帮助我实现这一点的教程或文档。
I want to create a persistent connection between Java spring server and Android client.
What I need is sort of a push mechanism with a persistent (long-lived HTTP) connection that will stream all the information from server to the client once they are available.
Are there any available frameworks that would support that, Java Spring preferably. Tutorials or documents that will help me implementing this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
那么您可以从此处开始了解实现这一目标的一般方法。
一些示例技术包括:
Well you can start here to learn about the general ways to accomplish that.
Some example technologies are:
在“推送”方面,长期 HTTP 连接和 WebSocket 通常更适合 Web 应用程序。
如果您不介意在服务器端进行一些工作,那么持久套接字绝对是最省电的方式。
这是一个好的开始: http://devtcg.blogspot.com/ 2009/01/push-services-implementing-persistent.html
Long-lived HTTP connections and WebSockets are generally more suited to web apps when it comes to 'push'.
If you don't mind some work on the server side, a persistent socket is definitely the most battery friendly way.
Here's a good start: http://devtcg.blogspot.com/2009/01/push-services-implementing-persistent.html