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.
55 lines
1.0 KiB
55 lines
1.0 KiB
spring:
|
|
application:
|
|
name: supervise-customer
|
|
profiles:
|
|
active: devv
|
|
# active: test
|
|
messages:
|
|
# 国际化资源文件路径
|
|
basename: i18n/messages
|
|
servlet:
|
|
#上传文件
|
|
multipart:
|
|
max-file-size: 250MB
|
|
max-request-size: 200MB
|
|
devtools:
|
|
restart:
|
|
# 热部署开关
|
|
enabled: true
|
|
mvc:
|
|
async:
|
|
request-timeout: 20000
|
|
|
|
server:
|
|
port: 7005
|
|
max-http-header-size: 102400
|
|
tomcat:
|
|
max-http-form-post-size: -1
|
|
#mybatis
|
|
mybatis-plus:
|
|
# 配置mapper的扫描,找到所有的mapper.xml映射文件
|
|
mapper-locations: classpath*:**Mapper.xml
|
|
global-config:
|
|
refresh: true
|
|
db-config:
|
|
#定义生成ID的类型
|
|
id-type: Auto
|
|
db-type: mysql
|
|
configuration:
|
|
map-underscore-to-camel-case: false
|
|
cache-enabled: true
|
|
call-setters-on-nulls: true
|
|
log-impl: org.apache.ibatis.logging.slf4j.Slf4jImpl
|
|
logging:
|
|
level:
|
|
com:
|
|
baomidou:
|
|
mybatisplus: DEBUG
|
|
#项目mapper目录
|
|
dragonsoft:
|
|
demojar:
|
|
mapper: DEBUG
|
|
|
|
|
|
|
|
|
|
|