Java 中的独立 Socket.IO 服务器
我正在寻找一个用 Java 编写的简单 Socket.IO 服务器。
我熟悉这个,但它依赖于 servlet,而我就是这样没有在我的应用程序中使用。
我正在寻找类似于 this 的东西,但支持所有 Socket.IO 协议,而不仅仅是WebSocket 部分。
编辑:这也意味着没有码头等。
I am looking for a simple Socket.IO server written in Java.
I am familiar with this one, but it has a dependency on servlets, which I am not using in my application.
I am looking for something similar to this, but supports all of the Socket.IO protocol, not just the WebSocket part.
EDIT: this also means no Jetty, etc.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
试试这个库:
https://github.com/mrniko/netty-socketio
基于高性能Netty 套接字库。
它支持Socket.IO服务器的最新协议。
Try this lib:
https://github.com/mrniko/netty-socketio
Based on high performance socket lib Netty.
It supports latest protocol of Socket.IO server.
鉴于大多数具有生产能力的基于 Java 的服务器都基于 Servlet 标准,我认为不存在任何此类实现。
Given that most production-capable Java-based servers are based on the Servlet standard, I don't believe any such implementation exists.