123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- server:
- port: 8080
- spring:
- devtools:
- restart:
- enabled: false
-
- datasource:
- type: com.zaxxer.hikari.HikariDataSource
-
-
- url: jdbc:mysql://192.168.1.204:3306/callcenterdb?useUnicode=true&characterEncoding=utf-8
- username: root
- password: Cs123456
- initialization-mode: always
- continue-on-error: true
- mybatis-plus:
- mapper-locations: classpath:/mapper/*Mapper.xml
-
- typeAliasesPackage: ins.platform.osms.user.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: mysql
-
- refresh: true
-
- configuration:
- map-underscore-to-camel-case: true
- cache-enabled: false
- socket:
- io:
- host: 0.0.0.0
- port: 9095
- platform: /osms
|