123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- socket:
- io:
- host: 0.0.0.0
- port: 9092
- platform: /inform
- spring:
- rabbitmq:
- host: 192.168.1.210
- port: 5672
- username: guest
- password: guest
- redis:
- database: 0
- password: Cs123456
- host: 192.168.1.210
- port: 6379
- pool:
- max-wait: 30
- max-idle: 5
- cache:
- type: redis
-
- datasource:
-
- type: com.zaxxer.hikari.HikariDataSource
-
- driver-class-name: com.mysql.jdbc.Driver
- url: jdbc:mysql://192.168.1.204:3306/message?useUnicode=true&characterEncoding=utf-8&useSSL=false
- username: root
- password: Cs123456
-
- initialize: true
- platform: mysql
-
-
- continue-on-error: true
- hikari:
- max-lifetime: 1765000
- maximum-pool-size: 15
- auto-commit: true
- connection-test-query: select 1
- mybatis-plus:
- mapper-locations: classpath:/mapper/*Mapper.xml
-
- typeAliasesPackage: com.sinosoft.voice.model
-
- global-config:
-
- id-type: 2
-
- field-strategy: 2
-
-
-
- refresh-mapper: true
-
- capital-mode: false
-
-
-
- logic-delete-value: 0
- logic-not-delete-value: 1
-
-
-
-
- configuration:
- map-underscore-to-camel-case: false
- cache-enabled: false
-
- logging:
- level:
- com.onepro.custom.mapper: DEBUG
|