39 lines
609 B
YAML
39 lines
609 B
YAML
server:
|
|
port: 8085
|
|
servlet:
|
|
context-path: /zentao
|
|
|
|
|
|
spring:
|
|
profiles:
|
|
active: local
|
|
application:
|
|
name: zentao
|
|
main:
|
|
allow-bean-definition-overriding: true
|
|
allow-circular-references: true #循环依赖
|
|
jackson:
|
|
time-zone: GMT+8
|
|
servlet:
|
|
multipart:
|
|
max-file-size: 1000MB
|
|
max-request-size: 1000MB
|
|
|
|
|
|
|
|
logging:
|
|
level:
|
|
com.example.classroomrealtimefeedback.mapper: debug
|
|
|
|
|
|
mybatis:
|
|
configuration:
|
|
log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|
|
typeEnumsPackage: com.sa.zentao.enums
|
|
|
|
|
|
|
|
file:
|
|
path:
|
|
windows: D:\files
|
|
linux: /files |