spring-boot-vuejs-websockets
spring-boot-vuejs-websockets copied to clipboard
✔️ Simple spring-boot vue.js app with websockets and docker support
spring-boot-vuejs-websockets
Spring Boot · Vue.js · Websockets · STOMP · SockJS · Bootstrap4 · Docker
This is a simple application using spring-boot, vue.js and websockets. It displays random real-time data on a table every second.
Run it! 🏃
./mvnw clean compile spring-boot:run
Visit http://localhost:8080 🙏
Run the tests
./mvnw test
Run with docker 🏃🐳
- Build docker image
cd spring-boot-vuejs-websockets
docker build -t spring-boot-vuejs-websockets .
- Run
docker run -p 8080:8080 -it spring-boot-vuejs-websockets
- Visit
http://localhost:8080🙏