You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
512 B
27 lines
512 B
spring: |
|
profiles: |
|
active: prod |
|
|
|
# 用户配置 |
|
user: |
|
password: |
|
# 密码最大错误次数 |
|
maxRetryCount: 5 |
|
# 密码锁定时间(默认10分钟) |
|
lockTime: 10 |
|
|
|
# token配置 |
|
token: |
|
# 令牌自定义标识 |
|
header: Authorization |
|
# 令牌密钥 |
|
secret: abcdefghijklmnopqrstuvwxyz |
|
# 令牌有效期(默认30分钟) |
|
expireTime: 30 |
|
|
|
# PageHelper分页插件 |
|
pagehelper: |
|
reasonable: true |
|
params: count=countSql |
|
support-methods-arguments: true |
|
helper-dialect: postgresql |