Standalone WebSocket server without JEE/application server

前端 未结 2 2051
清歌不尽
清歌不尽 2021-02-02 18:06

I need to implement a fairly simple WebSocket server in Java SE. All it needs to do is accept connections and store the respective sessions, then send a message to all connected

2条回答
  •  一个人的身影
    2021-02-02 18:53

    https://github.com/TooTallNate/Java-WebSocket is a full WebSockets server and client implementation in Java SE, no enterprise/web app server needed.

提交回复
热议问题