123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- server:
- port: 8086
- servlet:
- context-path: /fangda
- compression:
- enabled: true
- mime-types: application/javascript,application/json,application/xml,text/html,text/xml,text/plain,text/css,image/*
- management:
- endpoints:
- web:
- exposure:
- include: metrics,httptrace
- spring:
- mail:
- host: smtp.office365.com
- username: smtpaccount@frontagelab.com.cn
- password: Frontagelab2019
- properties:
- mail:
- smtp:
- auth: true
- starttls:
- enable: true
- required: true
-
- quartz:
- job-store-type: jdbc
-
- jackson:
- date-format: yyyy-MM-dd HH:mm:ss
- time-zone: GMT+8
- aop:
- proxy-target-class: true
-
- freemarker:
-
- suffix: .ftl
-
- content-type: text/html
-
- charset: UTF-8
-
- cache: false
-
- template-loader-path:
- - classpath:/templates
-
- mvc:
- static-path-pattern: /**
- resource:
- static-locations: classpath:/static/,classpath:/public/
- autoconfigure:
- exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
- datasource:
- druid:
- stat-view-servlet:
- loginUsername:
- loginPassword:
- dynamic:
- druid:
-
-
- initial-size: 5
- min-idle: 5
- maxActive: 20
-
- maxWait: 600000
-
- timeBetweenEvictionRunsMillis: 60000
-
- minEvictableIdleTimeMillis: 300000
- validationQuery: SELECT 1 FROM DUAL
- testWhileIdle: true
- testOnBorrow: false
- testOnReturn: false
-
- poolPreparedStatements: true
- maxPoolPreparedStatementPerConnectionSize: 20
-
- filters: stat,slf4j
-
-
- connectionProperties: druid.stat.mergeSql\=true;druid.stat.slowSqlMillis\=5000
- datasource:
- master:
- url: jdbc:mysql://127.0.0.1:3306/cd_project_management?characterEncoding=UTF-8&useUnicode=true&useSSL=false&allowMultiQueries=true&failOverReadOnly=false&allowPublicKeyRetrieval=true
- username: root
- password: CuiDian1234
- driver-class-name: com.mysql.jdbc.Driver
-
-
-
-
-
-
-
- redis:
- database: 0
- host: 127.0.0.1
- lettuce:
- pool:
- max-active: 8
- max-idle: 8
- max-wait: -1ms
- min-idle: 0
- shutdown-timeout: 100ms
- password: ''
- port: 6379
- mybatis-plus:
- mapper-locations: classpath*:org/jeecg/modules/**/xml/*Mapper.xml
- jeecg :
- path :
-
- upload: D://upfiles
-
- webapp: D://upfiles
- logging:
- level:
- org.jeecg.modules.system.mapper : debug
|