2020-09-07 08:47:18 +00:00
|
|
|
|
# E5续订程序
|
2020-12-19 17:10:40 +00:00
|
|
|
|
此项目为该网址的源代码(后端) https://e5.qyi.io/
|
2020-12-19 16:58:40 +00:00
|
|
|
|
(前端) https://github.com/luoye663/e5-html
|
|
|
|
|
### 2020-12-20
|
2020-12-19 17:04:42 +00:00
|
|
|
|
前端框架更改为Angular,同时支持多应用,每个账户最多支持5个应用。
|
2020-09-07 08:47:18 +00:00
|
|
|
|
## 说明
|
|
|
|
|
此项目为我的新手练手作,代码辣鸡,目前已经从3月份运行到至今。
|
|
|
|
|
如果要自己搭建的话得自己研究下了,不提供技术支持(懒),记得修改配置文件
|
2020-12-19 17:05:52 +00:00
|
|
|
|
src/main/resources/application-online.properties
|
2020-09-07 08:53:47 +00:00
|
|
|
|
```
|
2020-09-07 08:47:18 +00:00
|
|
|
|
user.admin.githubId - 自己的github id
|
|
|
|
|
数据库配置
|
|
|
|
|
redis配置
|
|
|
|
|
Rabbit配置
|
|
|
|
|
github.client_id
|
|
|
|
|
github.client_secret
|
|
|
|
|
(这两个在https://github.com/settings/developers 申请一个apps就行了。)
|
2020-09-07 08:53:47 +00:00
|
|
|
|
```
|
2020-09-07 08:47:18 +00:00
|
|
|
|
## 注意事项
|
2020-09-08 00:46:02 +00:00
|
|
|
|
由于懒癌发作,在程序启动或者重启,是不会主动把数据库里面的用户加入队列,所以得手动处理。
|
2020-09-07 08:47:18 +00:00
|
|
|
|
1. 在每次启动程序前,先清空延迟队列
|
2020-12-19 17:03:59 +00:00
|
|
|
|
```
|
2020-09-07 08:47:18 +00:00
|
|
|
|
rabbitmq-plugins disable rabbitmq_delayed_message_exchange
|
|
|
|
|
rabbitmq-plugins enable rabbitmq_delayed_message_exchange
|
2020-12-19 17:03:59 +00:00
|
|
|
|
```
|
2020-12-20 12:00:18 +00:00
|
|
|
|
由于这个插件只能先禁用在启用,才能进行清空。
|
|
|
|
|
2. 在每次启动程序前,清空未完成的队列。
|
|
|
|
|
在rabbitmq web管理界面 - Queues - delay_queue1 - Purge - Purge Messages
|
|
|
|
|
3. ~~启动后清空redis~~
|
2020-12-19 16:58:40 +00:00
|
|
|
|
4. 登录后使用http访问工具访问 https://domain.com/admin/sendAll 这个链接,设置一个token头,为网站登录后的token,f12 看请求(需要设置的管理员github id访问才有能访问)。
|
2020-12-19 17:03:59 +00:00
|
|
|
|
ps: 使用 https://domain.com/admin/getDebugAdminToken?passwd=xxxxxx 也可以获取管理员token,前提是在配置文件中设置密码。
|
2020-12-20 12:00:18 +00:00
|
|
|
|
主要目的是方便调试,所以没有启动就将所有用户加入队列(因为rabbitmq插件问题,清空延时队列得先禁用、用插件) so......需要手动处理......
|
2020-12-19 16:58:40 +00:00
|
|
|
|
##### 如果不按照以上的来,会出现莫名其妙的问题~
|
2020-09-07 08:47:18 +00:00
|
|
|
|
|
|
|
|
|
## 用到技术或框架
|
|
|
|
|
### spring boot
|
|
|
|
|
|
|
|
|
|
### rabbitMq
|
|
|
|
|
需要安装rabbitmq_delayed_message_exchange插件
|
2020-12-19 17:03:59 +00:00
|
|
|
|
同时新建一个用户来对接此程序
|
|
|
|
|
清空延时队列方法:
|
|
|
|
|
```
|
|
|
|
|
rabbitmq-plugins disable rabbitmq_delayed_message_exchange
|
|
|
|
|
rabbitmq-plugins enable rabbitmq_delayed_message_exchange
|
|
|
|
|
```
|
|
|
|
|
|
2020-09-07 08:47:18 +00:00
|
|
|
|
### Redis
|
|
|
|
|
默认用1库,可自行在配置文件修改
|
|
|
|
|
|
|
|
|
|
### Mysql
|
|
|
|
|
自行导入sql
|
|
|
|
|
没有写清空日志功能,后面加上。
|
|
|
|
|
按道理说日志因该存到MongoDB里,所以?
|
|
|
|
|
### Mybatis Plus
|
|
|
|
|
|
|
|
|
|
### Spring Security
|
|
|
|
|
权限配置由于就那么几个,所以就没写到mysql里面。
|
|
|
|
|
### log4j2
|
|
|
|
|
日志框架
|
2020-09-08 09:30:42 +00:00
|
|
|
|
|
|
|
|
|
## 鸣谢
|
|
|
|
|
|
|
|
|
|
> [IntelliJ IDEA](https://zh.wikipedia.org/zh-hans/IntelliJ_IDEA) 是一个在各个方面都最大程度地提高开发人员的生产力的 IDE,适用于 JVM 平台语言。
|
|
|
|
|
|
|
|
|
|
特别感谢 [JetBrains](https://www.jetbrains.com/?from=) 为开源项目提供免费的 [IntelliJ IDEA](https://www.jetbrains.com/idea/?from=) 等 IDE 的授权
|
|
|
|
|
[<img src=".github/jetbrains-variant-3.png" width="200"/>](https://www.jetbrains.com/)
|