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.
88 lines
2.1 KiB
88 lines
2.1 KiB
spring:
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 100MB
|
|
max-request-size: 160MB
|
|
profiles:
|
|
active: dev
|
|
main:
|
|
#easypoi启用覆盖
|
|
allow-bean-definition-overriding: true
|
|
jmx:
|
|
enabled: false
|
|
devtools:
|
|
restart:
|
|
enabled: false
|
|
#项目配置
|
|
project:
|
|
ignore-url:
|
|
tenants: #忽略租户拦截
|
|
- /callback
|
|
- /favicon.ico
|
|
- /error
|
|
- /portal/syKeyLogin
|
|
- /portal/test222
|
|
- /bir/roiRate/test
|
|
- /static/*
|
|
- /api/wx/login/getCpSignature
|
|
- /web/*
|
|
permits: #忽略登录
|
|
- /thirty/** #第三方接口
|
|
- /portal/flushToken #第三方接口
|
|
- /common/upload #支持API上传调整
|
|
- /common/validToken #验证token
|
|
- /sys/attach/listByIds/**
|
|
- /api/**
|
|
- /static/**
|
|
- /web/**
|
|
- /portal/**
|
|
- /favicon.ico
|
|
- /error
|
|
- /callback
|
|
- /bir/roiRate/test
|
|
|
|
#mybatis plus
|
|
mybatis-plus:
|
|
mapper-locations: classpath:mapper/*/*.xml
|
|
type-aliases-package: com.qs.serve.modules.*.entity.*
|
|
configuration:
|
|
map-underscore-to-camel-case: true
|
|
#log-impl: org.apache.ibatis.logging.nologging.NoLoggingImpl
|
|
global-config:
|
|
banner: false
|
|
db-config:
|
|
logic-delete-value: 1
|
|
logic-not-delete-value: 0
|
|
select-strategy: not_empty
|
|
logic-delete-field: delFlag
|
|
# 日志配置
|
|
logging:
|
|
level:
|
|
ROOT: info
|
|
com.qs.serve: debug
|
|
com.qs.serve.modules.his: debug
|
|
com.qs.serve.modules.sys: debug
|
|
com.qs.serve.modules.tag: info
|
|
org.xnio.nio: info
|
|
org.springframework: info
|
|
com.baomidou: info
|
|
org.mybatis: info
|
|
org.hibernate.validator: info
|
|
druid.sql.ResultSet: info
|
|
druid.sql.Connection: info
|
|
com.zaxxer.hikari.pool: info
|
|
com.zaxxer.hikari.HikariConfig: info
|
|
com.qs.serve.modules.sys.mapper.SysOperationLogMapper: info
|
|
java.io: warn
|
|
io.netty: info
|
|
io.undertow: info
|
|
io.lettuce.core: info
|
|
config: classpath:log4j2.xml
|
|
# PageHelper分页插件
|
|
pagehelper:
|
|
reasonable: false
|
|
#helper-dialect: sqlserver
|
|
autoRuntimeDialect: true
|
|
supportMethodsArguments: true
|
|
params: count=countSql
|
|
|
|
|