1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- spring:
- datasource:
- druid:
- # url: jdbc:mysql://192.168.1.29:3306/std_ttc_dev?autoReconnect=true&useUnicode=TRUE&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- # username: ttcDev
- # password: ttc123456
- url: jdbc:mysql://192.168.1.37:3306/std_ttc_dev?autoReconnect=true&useUnicode=TRUE&characterEncoding=UTF-8&zeroDateTimeBehavior=convertToNull
- username: root
- password: root
- data:
- elasticsearch:
- cluster-name: ttc_test_es
- # cluster-nodes: 192.168.1.28:9300,192.168.1.29:9300,192.168.1.30:9300
- cluster-nodes: 192.168.1.52:9300,192.168.1.52:9301,192.168.1.52:9302
- typename: esttc
- # indexname: ttcdev
- indexname: ttctest
- #redis:
- # host: 192.168.1.29
- # port: 6379
- # password: 123
- redis:
- port: 6379
- host: localhost
- lettuce:
- pool:
- max-active: 8 # 连接池最大连接数
- max-idle: 8 # 连接池最大空闲连接数
- min-idle: 0 # 连接池最小空闲连接数
- max-wait: -1ms # 连接池最大阻塞等待时间,负值表示没有限制
- #fdfs:
- # domain: http://192.168.1.28:12345
- # trackerList: 192.168.1.28:22122
- fdfs:
- domain: http://192.168.1.159:8888
- trackerList: 192.168.1.159:8888
- mqtt:
- mqtt_brokerurl: tcp://192.168.1.30:1883
- mqtt_qos: 1
|