1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- server:
- port: 8520
- spring:
- ##mqtt配置
- mqtt:
- username: admin
- password: admin123
- host-url: tcp://172.21.92.202:1883
- clientId: mqttId555
- completionTimeout: 3000
- timeout: 1000
- keepalive: 20
- topic: device/#
- datasource:
- dynamic:
- datasource:
- master:
- url: jdbc:postgresql://172.21.92.202:10001/interlock?characterEncoding=UTF-8&useUnicode=true&useSSL=false&tinyInt1isBit=false&allowPublicKeyRetrieval=true&serverTimezone=Asia/Shanghai
- username: postgres
- password: UvWrDBLgS5_bx4UvHhhs
- driver-class-name: org.postgresql.Driver
- #redis 配置
- redis:
- database: 0
- host: 172.21.92.202
- port: 10004
- password: Pvqh91w1GZBW2l86ptAW
- jeecg:
- #分布式锁配置
- redisson:
- address: http://172.21.92.202:10004
- password: Pvqh91w1GZBW2l86ptAW
- type: STANDALONE
- enabled: true
- postgresql:
- url: jdbc:postgresql://172.21.92.202:10001/interlock
- username: postgres
- password: UvWrDBLgS5_bx4UvHhhs
|