Standalone Socket.IO server in Java

2020-05-19 03:56发布

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.

2条回答
爷的心禁止访问
2楼-- · 2020-05-19 04:23

Try this lib:

https://github.com/mrniko/netty-socketio

Based on high performance socket lib Netty.

It supports latest protocol of Socket.IO server.

查看更多
Lonely孤独者°
3楼-- · 2020-05-19 04:35

Given that most production-capable Java-based servers are based on the Servlet standard, I don't believe any such implementation exists.

查看更多
登录 后发表回答