Skip to content

Latest commit

 

History

History
executable file
·
21 lines (13 loc) · 591 Bytes

README.md

File metadata and controls

executable file
·
21 lines (13 loc) · 591 Bytes

Spring-based WebSocket Chat Server

Demonstrates Spring WebSocket Server. Sample code based off of Spring Guide with a few changes.

The package includes a Web client which can be used to exercise the functionality.

Build the software as follows:

mvn clean package

Run it as follows, changing the port to 9090:

java -Dserver.port=9090 -jar target/chat-server-0.1.0.jar

Connect to the web client at: http:://:9090/.

For a demo Spring Java Client, see [https://github.com/jaysridhar/spring-websocket-client].