是否可以将 socket.io.js 与 Jetty 一起使用?
我正在尝试使用 socket.io.js 让客户端通过 Jetty WebSockets 插件连接到 Jetty 服务器。看来 socket.io.js 是专门设计用于仅与 Node.js 实现一起使用的。是否可以使用节点以外的服务器配置socket.io.js?
I'm trying to use socket.io.js for the client to connect to a Jetty server with a Jetty WebSockets plugin. It appears that socket.io.js is specifically designed to be used only with a node.js implementation. Is it possible to configure socket.io.js with a server other than node?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
socket.io 后端有一个 Java 实现。
或者,你可以看看SockJS,它与socket.io类似,但设计是支持除socket.io 之外的其他后端。 包括 Java 。
There is a Java implementation of a socket.io backend.
Alternatively, you could take a look at SockJS, which is similar to socket.io, but is designed to support other backends than socket.io. Including a Java one.