123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- 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: #redis 配置
- database: 0
- password: Cs123456
- host: 172.16.88.235
- port: 6379
- #spring
- 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.234:3306/callcenterdb3.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
- mybatis-plus:
- mapper-locations: classpath*:/mapper/**/*.xml
- #实体扫描,多个package用逗号或者分号分隔
- typeAliasesPackage: ins.platform.*.po
- #typeEnumsPackage: com.baomidou.springboot.entity.enums
- global-config:
- # 数据库相关配置
- db-config:
- #主键类型 AUTO:"数据库ID自增", INPUT:"用户输入ID",ID_WORKER:"全局唯一ID (数字类型唯一ID)", UUID:"全局唯一ID UUID";
- id-type: id_worker
- #字段策略 IGNORED:"忽略判断",NOT_NULL:"非 NULL 判断"),NOT_EMPTY:"非空判断"
- field-strategy: not_empty
- #驼峰下划线转换
- column-underline: true
- #数据库大写下划线转换
- #capital-mode: true
- #逻辑删除配置
- logic-delete-value: 0
- logic-not-delete-value: 1
- db-type: h2
- #刷新mapper 调试神器
- 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
-
- # 文本机器人相关信息
- easemob:
- username: 18792805407@163.com
- password: qq123321
- url: http://robot.easemob.com
- tenantId: 57209
- robotId: f2c94f4b-8565-4023-848c-ac1370dc5bc2
- webPage:
- appId: c80a0c4b7c344fba8d91958399266b28
|