jamilxt / spring-chat

Horizontal scalable chat application using SpringBoot and Server Sent Event/WebSocket.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

spring-chat

build

Description

This is a horizontal scalable chat application using Nats as event bus. You can add as many application instances as you need to increase the capacity of online users in overall system. If you have even more users you can add Nats servers as cluster to increase the message delivery speed/throughput.

Features

  • chat in public channels with any users (1 connection/channel)
  • chat in private channels with another user (1 connection/user)
  • chat in group channel with members (1 connection/user)
  • user blockage in private channels

Supported Protocols

You can use below protocols to receive/subscribe chat messages from the server:

  • Server Sent Event
  • Websocket

Notice

This project is using our another project as authentication service for JWT authentication.

Architecture

image

You can see technical details at here.

Online demo

https://frontend.joejoe2.com

Example Frontend

We provide an example frontend application written in Vue.js at here to work with this project.

  • chat in public channel image
  • chat in private channel image
  • chat in group channel image

Testing

run mvn test or ./mvnw test

Lint

run

mvn spotless:check
mvn spotless:apply

or

./mvnw spotless:check
./mvnw spotless:apply

Deploy

  1. follow this to setup

  2. copy ./env/application-chat.env.example to ./env/application-chat.env and set jwt.secret.publicKey as in 1.

  3. prepare 2 FQDNs (ex. chat.test.com, auth.test.com)

  4. open ./nginx/user_conf.d/server.conf to replace chat.example.com and auth.example.com with your 2 FQDNs

  5. docker-compose up or docker-compose up -d

About

Horizontal scalable chat application using SpringBoot and Server Sent Event/WebSocket.

License:MIT License


Languages

Language:Java 98.6%Language:Shell 1.4%Language:Dockerfile 0.0%