62 lines
3.2 KiB
YAML
62 lines
3.2 KiB
YAML
server:
|
||
port: 8086
|
||
|
||
spring:
|
||
profiles:
|
||
active: local
|
||
# Spring 执行器配置,对应 TaskExecutionProperties 配置类。对于 Spring 异步任务,会使用该执行器。
|
||
execution:
|
||
thread-name-prefix: mail-task # 线程池的线程名的前缀。默认为 task- ,建议根据自己应用来设置
|
||
pool: # 线程池相关
|
||
core-size: 10 # 核心线程数,线程池创建时候初始化的线程数。默认为 8 。
|
||
max-size: 20 # 最大线程数,线程池最大的线程数,只有在缓冲队列满了之后,才会申请超过核心线程数的线程。默认为 Integer.MAX_VALUE
|
||
keep-alive: 60s # 允许线程的空闲时间,当超过了核心线程之外的线程,在空闲时间到达之后会被销毁。默认为 60 秒
|
||
queue-capacity: 200 # 缓冲队列大小,用来缓冲执行任务的队列的大小。默认为 Integer.MAX_VALUE 。
|
||
allow-core-thread-timeout: true # 是否允许核心线程超时,即开启线程池的动态增长和缩小。默认为 true 。
|
||
shutdown:
|
||
await-termination: true # 应用关闭时,是否等待定时任务执行完成。默认为 false ,建议设置为 true
|
||
await-termination-period: 60 # 等待任务完成的最大时长,单位为秒。默认为 0 ,根据自己应用来设置
|
||
|
||
|
||
mybatis-plus:
|
||
global-config:
|
||
db-config:
|
||
id-type: auto
|
||
|
||
|
||
############## Sa-Token 配置 (文档: https://sa-token.cc) ##############
|
||
sa-token:
|
||
# token 名称(同时也是 cookie 名称)
|
||
token-name: token
|
||
# token 有效期(单位:秒) 默认30天,-1 代表永久有效
|
||
timeout: -1
|
||
# token 最低活跃频率(单位:秒),如果 token 超过此时间没有访问系统就会被冻结,默认-1 代表不限制,永不冻结
|
||
active-timeout: 648000
|
||
# 是否允许同一账号多地同时登录 (为 true 时允许一起登录, 为 false 时新登录挤掉旧登录)
|
||
is-concurrent: true
|
||
# 在多人登录同一账号时,是否共用一个 token (为 true 时所有登录共用一个 token, 为 false 时每次登录新建一个 token)
|
||
is-share: false
|
||
# token 风格(默认可取值:uuid、simple-uuid、random-32、random-64、random-128、tik)
|
||
token-style: random-128
|
||
# 是否输出操作日志
|
||
is-log: true
|
||
|
||
activateUrl: https://pk.webapp.yolozs.com/activationSuccessful/
|
||
verificationMailUrl: https://pk.webapp.yolozs.com/verifyAccount/
|
||
forgetPassWordUrl: https://pk.webapp.yolozs.com/resetPassword/
|
||
|
||
dromara:
|
||
x-file-storage: #文件存储配置
|
||
default-platform: tencent-cos-1 #默认使用的存储平台
|
||
thumbnail-suffix: ".min.jpg" #缩略图后缀,例如【.min.jpg】【.png】
|
||
tencent-cos:
|
||
- platform: tencent-cos-1 # 存储平台标识
|
||
enable-storage: true # 启用存储
|
||
secret-id: AKIDNbcQ1c3HJD9rQ6g5PaZN0PekcIkyzmMl
|
||
secret-key: Nl4FI9mLo46vWu40iT0JQK8j8LK5cw2u
|
||
region: ap-shanghai #存仓库所在地域
|
||
bucket-name: vv-1317974657
|
||
domain: https://vv-1317974657.cos.ap-shanghai.myqcloud.com # 访问域名,注意“/”结尾,例如:https://abc.cos.ap-nanjing.myqcloud.com/
|
||
base-path: /headerIcon/ # 基础路径
|
||
|
||
IM-secretKey: 04452c3231ae4fe5 |