73 lines
1.7 KiB
YAML
73 lines
1.7 KiB
YAML
logging:
|
||
file:
|
||
name: logs/anmo.log
|
||
# Tomcat
|
||
server:
|
||
tomcat:
|
||
uri-encoding: UTF-8
|
||
max-threads: 1000
|
||
min-spare-threads: 30
|
||
connection-timeout: 5000ms
|
||
port: 8187
|
||
servlet:
|
||
context-path: /sqx_fast
|
||
|
||
spring:
|
||
banner:
|
||
image:
|
||
location: classpath:banner/banner.jpg
|
||
main:
|
||
allow-circular-references: true
|
||
# 环境 dev|test|prod
|
||
profiles:
|
||
active: prod
|
||
# jackson时间格式化
|
||
jackson:
|
||
time-zone: GMT+8
|
||
date-format: yyyy-MM-dd HH:mm:ss
|
||
servlet:
|
||
multipart:
|
||
max-file-size: 10240MB
|
||
max-request-size: 10240MB
|
||
enabled: true
|
||
mvc:
|
||
throw-exception-if-no-handler-found: true
|
||
pathmatch:
|
||
matching-strategy: ant_path_matcher
|
||
# resources:
|
||
# add-mappings: false
|
||
|
||
|
||
#mybatis
|
||
mybatis-plus:
|
||
mapper-locations: classpath*:/mapper/**/*.xml
|
||
#实体扫描,多个package用逗号或者分号分隔
|
||
typeAliasesPackage: com.sqx.modules.*.entity
|
||
global-config:
|
||
#数据库相关配置
|
||
db-config:
|
||
#主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID", ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
|
||
id-type: AUTO
|
||
logic-delete-value: -1
|
||
logic-not-delete-value: 0
|
||
banner: false
|
||
#原生配置
|
||
configuration:
|
||
map-underscore-to-camel-case: true
|
||
cache-enabled: false
|
||
call-setters-on-nulls: true
|
||
jdbc-type-for-null: 'null'
|
||
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
||
|
||
sqx:
|
||
redis:
|
||
open: false
|
||
shiro:
|
||
redis: false
|
||
# APP模块,是通过jwt认证的,如果要使用APP模块,则需要修改【加密秘钥】
|
||
jwt:
|
||
# 加密秘钥
|
||
secret: f4e2e52034348f86b67cde581c0f9eb5
|
||
# token有效时长,7天,单位秒
|
||
expire: 2592000
|
||
header: token |