1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- logging:
- level:
- org.springframework.web: INFO
- com.github.binarywang.demo.wx.mp: DEBUG
- me.chanjar.weixin: DEBUG
- wechat:
- open:
- componentAppId: wxebb6d40071dc817e
- componentSecret: fb87e72522d3af0e1acd18fdc21522a3
- componentToken: A_TOKEN
- componentAesKey: lr3dxCbG0Clep5zo9F2wZ7owkjOaDBr76lmlGSRhLio
- redis:
- database: 0
- password: Cs123456
- host: 172.16.88.235
- port: 6379
- spring:
- devtools:
- restart:
- enabled: false
- rabbitmq:
- host: 192.168.1.210
- port: 5672
- username: guest
- password: guest
- datasource:
- dynamic:
- primary: master
- datasource:
- master:
- url: jdbc:mysql://172.16.88.235:3306/callcenterdb2.0?useUnicode=true&characterEncoding=utf-8
- username: root
- password: admin01
- max-idle: 10
- max-wait: 10000
- min-idle: 5
- initial-size: 5
- validation-query: SELECT 1
- test-on-borrow: false
- test-while-idle: true
- time-between-eviction-runs-millis: 18800
- driver-class-name: com.mysql.jdbc.Driver
- jdbc-interceptors: ConnectionState;SlowQueryReport(threshold=0)
- autoconfigure:
- exclude: com.alibaba.druid.spring.boot.autoconfigure.DruidDataSourceAutoConfigure
- hikari:
- max-lifetime: 1765000
- maximum-pool-size: 15
- auto-commit: true
- connection-test-query: select 1
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
-
- typeAliasesPackage: ins.platform.*.po
-
- global-config:
-
- db-config:
-
- id-type: id_worker
-
- field-strategy: not_empty
-
- column-underline: true
-
-
-
- logic-delete-value: 0
- logic-not-delete-value: 1
- db-type: h2
-
- refresh: true
-
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- saa:
- power: false
- basePackage: ins/**/po
- im:
- satis: 192.168.1.210:9001
|