Socket.IO server implementation for Java based on Netty framework.
📚 Full documentation is available at: https://socketio4j.com
The documentation includes:
- Getting Started Guide
- Installation Instructions
- Configuration Options
- Code Examples
- Integration Guides
- API Documentation
- Performance Reports
3.0.0 is the same as 2.0.13 with split modules, integration tests, and some CI/CD improvements. Replace old dependency:
<dependency>
<groupId>com.corundumstudio.socketio</groupId>
<artifactId>netty-socketio</artifactId>
<version>2.0.13</version>
</dependency>with new one:
<dependency>
<groupId>com.socketio4j</groupId>
<artifactId>netty-socketio-core</artifactId>
<version>LATEST-VERSION</version>
</dependency>If you use Spring integration (Just one class: SpringAnnotationScanner), you should use the new dependency:
<dependency>
<groupId>com.socketio4j</groupId>
<artifactId>netty-socketio-spring</artifactId>
<version>LATEST-VERSION</version>
</dependency>