- Notifications
You must be signed in to change notification settings - Fork3
BulletCurtain chat system based on springboot + netty + vue
License
NotificationsYou must be signed in to change notification settings
jiefei30/groupchat
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
Server of groupchat system. Among them, netty mainly forwards broadcast messages, and springboot server stores the messages sent from the web.
bilibili:https://www.bilibili.com/video/BV1Ap4y1D7iQ?spm_id_from=333.999.0.0
springboot & netty
- Import the database into groupchat.sql in the root path (build database and table)
- Import idea and start the project
- Modify the configuration in application.yml according to personal circumstances:port and path:
server:port:7084#springboot portservlet:context-path:/groupchat#project request pathnetty:port:7000#netty portcontext-path:/groupchat#netty request path(Be consistent with the web)
database:
# datasource configuredatasource:username:rootpassword:rooturl:jdbc:mysql://localhost:3306/groupchat?characterEncoding=UTF-8&useSSL=falsedriver-class-name:com.mysql.jdbc.Driver
- jiefei30