12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- server:
- port: 8876
- compression:
- enabled: true
- mime-types: application/json
- spring:
- application:
- # 应用名称
- name: adm
- main:
- allow-bean-definition-overriding: true
- datasource:
- dynamic:
- datasource:
- master:
- driver-class-name: com.mysql.cj.jdbc.Driver
- username: adm
- password: adm
- url: jdbc:mysql://192.168.0.11/adm?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT
- # username: yushudev
- # password: yushu@2021
- # url: jdbc:mysql://82.157.28.170:3306/adm_poc?characterEncoding=utf8&zeroDateTimeBehavior=convertToNull&useSSL=false&serverTimezone=GMT
- rabbitmq:
- host: 192.168.100.93
- port: 9936
- username: pbsage
- password: pbsage123
- virtualHost: /test
- # host: 10.10.0.46
- # port: 9936
- # username: dev
- # password: dev@2021
- # virtualHost: /dev
- persagy:
- common:
- file:
- storage: 0
- url: http://192.168.100.102:31335/
- accessKey: persagy
- secretKey: persagy@2021
- token:
- enabled: false
- adm:
- oldPlatformUrl: http://39.102.40.239
- bdtp:
- rwd:
- service: http://develop.persagy.com/dmp-rwd
- # service: http://82.157.159.41/dmp-rwd
- file:
- service: http://develop.persagy.com/dmp-file
- # service: http://82.157.159.41/dmp-file
- dic:
- service: http://develop.persagy.com/dmp-dic
- # service: http://82.157.159.41/dmp-dic
- mybatis-plus:
- type-handlers-package: com.persagy.**.typehandler
- configuration:
- log-impl: org.apache.ibatis.logging.stdout.StdOutImpl
|