| 
						 | 
						- server:
 -   tomcat:
 -     max-swallow-size: -1
 -   error:
 -     include-exception: true
 -     include-stacktrace: ALWAYS
 -     include-message: ALWAYS
 -   compression:
 -     enabled: true
 -     min-response-size: 1024
 -     mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
 - management:
 -   health:
 -     mail:
 -       enabled: false
 -   endpoints:
 -     web:
 -       exposure:
 -         include: "*"
 -     health:
 -       sensitive: true
 -   endpoint:
 -     health:
 -       show-details: ALWAYS
 - spring:
 -   servlet:
 -     multipart:
 -       max-file-size: 10MB
 -       max-request-size: 10MB
 -   mail:
 -     host: smtp.163.com
 -     username: jeecgos@163.com
 -     password: ??
 -     properties:
 -       mail:
 -         smtp:
 -           auth: true
 -           starttls:
 -             enable: true
 -             required: true
 -   quartz:
 -     job-store-type: jdbc
 -     initialize-schema: embedded
 -     auto-startup: false
 -     startup-delay: 1s
 -     overwrite-existing-jobs: true
 -     properties:
 -       org:
 -         quartz:
 -           scheduler:
 -             instanceName: MyScheduler
 -             instanceId: AUTO
 -           jobStore:
 -             class: org.springframework.scheduling.quartz.LocalDataSourceJobStore
 -             driverDelegateClass: org.quartz.impl.jdbcjobstore.StdJDBCDelegate
 -             tablePrefix: QRTZ_
 -             isClustered: true
 -             misfireThreshold: 12000
 -             clusterCheckinInterval: 15000
 -           threadPool:
 -             class: org.quartz.simpl.SimpleThreadPool
 -             threadCount: 10
 -             threadPriority: 5
 -             threadsInheritContextClassLoaderOfInitializingThread: true
 -   jackson:
 -     date-format:   yyyy-MM-dd HH:mm:ss
 -     time-zone:   GMT+8
 -   aop:
 -     proxy-target-class: true
 -   activiti:
 -     check-process-definitions: false
 -     async-executor-activate: false
 -     job-executor-activate: false
 -   jpa:
 -     open-in-view: false
 -   freemarker:
 -     suffix: .ftl
 -     content-type: text/html
 -     charset: UTF-8
 -     cache: false
 -     prefer-file-system-access: false
 -     template-loader-path:
 -       - classpath:/templates
 -   mvc:
 -     static-path-pattern: /**
 -     pathmatch:
 -       matching-strategy: ant_path_matcher
 -   resource:
 -     static-locations: classpath:/static/,classpath:/public/
 -   autoconfigure:
 -     exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
 - mybatis-plus:
 -   mapper-locations: classpath*:org/jeecg/modules/**/xml/*Mapper.xml
 -   global-config:
 -     banner: false
 -     db-config:
 -       id-type: ASSIGN_ID
 -       table-underline: true
 -   configuration:
 -     call-setters-on-nulls: true
 
 
  |