Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vladovsiychuk/websocketchat
https://github.com/vladovsiychuk/websocketchat
Last synced: 27 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vladovsiychuk/websocketchat
- Owner: vladovsiychuk
- Created: 2020-09-22T15:37:57.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-06T15:46:15.000Z (over 4 years ago)
- Last Synced: 2024-11-17T05:30:36.451Z (3 months ago)
- Language: Java
- Size: 203 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
Awesome Lists containing this project
README
## Spring Boot WebSocket Chat Appplication
You can checkout the live version of the application at https://spring-ws-chat.herokuapp.com/
![App Screenshot](screenshot.png)
## Requirements
1. Java - 1.8.x
2. Maven - 3.x.x
## Steps to Setup
**1. Clone the application**
```bash
git clone https://github.com/callicoder/spring-boot-websocket-chat-demo.git
```**2. Build and run the app using maven**
```bash
cd spring-boot-websocket-chat-demo
mvn package
java -jar target/websocket-demo-0.0.1-SNAPSHOT.jar
```Alternatively, you can run the app directly without packaging it like so -
```bash
mvn spring-boot:run
```## Learn More
You can find the tutorial for this application on my blog -
https://www.callicoder.com/spring-boot-websocket-chat-example/