Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 746 Bytes

File metadata and controls

27 lines (25 loc) · 746 Bytes

chatting

一个基于Chatroom#49的聊天系统。

Usage

1. 根据主机环境修改配置文件

2. Build and Run

mvn package
# peek inside
# jar tvf target/chatting-springboot-xxx.jar
# run
# java -jar target/chatting-springboot-xxx.jar
docker build -t sxrekord/chatting .
docker run -d -p 8088:8088 -p 3333:3333 sxrekord/chatting

ToDo

  • refactor backend with SpringBoot
  • design and use db
    • use Mybatis
    • use Druid
  • use @Slf4j replace logger field
  • refactor frontend
  • use Logback replace slf4j
  • use Redis
  • automatically delete files when they expire
  • deploy with docker