43 lines
901 B
YAML
43 lines
901 B
YAML
spring:
|
|
application:
|
|
name: eem-baseconfig
|
|
profiles:
|
|
active: dev
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
allow-circular-references: true
|
|
jackson:
|
|
date-format: yyyy-MM-dd HH:mm:ss
|
|
time-zone: GMT+8
|
|
default-property-inclusion: NON_NULL
|
|
servlet:
|
|
multipart:
|
|
# 单个文件的最大大小
|
|
max-file-size: 10MB
|
|
# 上传数据的总大小
|
|
max-request-size: 1024MB
|
|
|
|
server:
|
|
port: 8908
|
|
|
|
management:
|
|
endpoints:
|
|
web:
|
|
exposure:
|
|
include: 'loggers'
|
|
|
|
mybatis:
|
|
use-assist: true
|
|
type-aliases-package: com.netpro.baseconfig
|
|
configuration:
|
|
logImpl: org.apache.ibatis.logging.log4j2.Log4j2Impl
|
|
|
|
|
|
#================License相关配置===============#
|
|
license:
|
|
#证书名称
|
|
subject: DCIM
|
|
#证书所在的位置
|
|
licensePath: D://License//license.lic
|
|
#================License相关配置===============#
|
|
|