https://github.com/voltr0x/chatroom-websocket
A chatroom using WebSocket and STOMP with Spring Boot MVC framework
https://github.com/voltr0x/chatroom-websocket
java spring-boot websocket
Last synced: about 1 month ago
JSON representation
A chatroom using WebSocket and STOMP with Spring Boot MVC framework
- Host: GitHub
- URL: https://github.com/voltr0x/chatroom-websocket
- Owner: voltr0x
- Created: 2024-03-09T03:28:58.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-09T03:32:25.000Z (over 2 years ago)
- Last Synced: 2025-03-03T15:36:41.459Z (over 1 year ago)
- Topics: java, spring-boot, websocket
- Language: HTML
- Homepage:
- Size: 170 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Chat Room
Chat room application implementation using WebSocket and STOMP with Spring Boot MVC framework.
## Background
### Websocket
WebSocket is a communication protocol that makes it possible to establish a two-way communication channel between a server and a client.
### Message model
Message model is the message payload that will be exchanged between the client and the server. The model provides the following actions.
1. ENTER a chatroom
2. CHAT with other users in the chatroom
3. LEAVE the chatroom
## Requirements
1. JDK
2. Maven
3. Chromedriver for testing
## Instruction
### Run the application with command
mvn build; mvn spring-boot:run
### To test the application
mvn clean test