| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- spring:
- main:
- allow-circular-references: true
- datasource:
- dynamic:
- druid:
- initial-size: 2
- max-active: 20
- min-idle: 2
- primary: freight
- datasource:
- freight:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://10.10.10.221:3306/freight?useUnicode=true&characterEncoding=utf8&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
- username: freight
- password: freight
- kll:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://10.10.10.221:3306/kll?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
- username: kll
- password: kll
- saas:
- driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://10.10.10.221:3306/saas?useUnicode=true&characterEncoding=utf8&allowPublicKeyRetrieval=true&useSSL=false&serverTimezone=Asia/Shanghai&zeroDateTimeBehavior=convertToNull
- username: saas
- password: saas
- # data:
- # redis:
- # host: 10.10.10.221
- # password: test
- # port: 6379
- # database: 13
- # lettuce:
- # pool:
- # enabled: true
- # max-active: 8
- # max-idle: 16
- # min-idle: 1
- # 日志级别
- logging:
- level:
- root: debug
- # mybatis-plus 打印sql
- mybatis-plus:
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
- # 支付中心 地址
- payCenter:
- address: http://10.10.10.223:9805
- #轮循任务 间隔时长(秒)
- job:
- sleep: 5
- enable: false
|