46 lines
2.4 KiB
YAML
46 lines
2.4 KiB
YAML
server:
|
||
port: 8086
|
||
|
||
spring:
|
||
profiles:
|
||
active: local
|
||
task:
|
||
# 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: http://192.168.1.174:8086/user/activate?token=
|
||
verificationMailUrl: http://192.168.1.174:8086/user/verification?token= |