123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105 |
- spring:
- application:
- name: device-acceptance
- kafka:
- bootstrap-servers: 10.25.48.95:9092
- profiles:
- active: all
- redis:
- host: 10.25.48.128
- password: tidecloudredis
- timeout: 10000
- port: 6379
- max: 100
- maxIdle: 10
- minIdle: 3
- maxWaitMills: 10000
- eureka:
- client:
- service-url:
- defaultZone: http://10.31.21.9:12000/eureka
- instance:
- prefer-ip-address: true
- port: 16666
- localaddress: 10.27.118.76
- server:
- port: ${random.int(16000,19999)}
- ---
- spring:
- profiles: all
- application:
- name: acceptance-product
-
- acceptance:
- device:
- deviceList:
- -
- name: watch
- topic: device-watch
- ip: 10.27.118.76
- port: 7019
- dataFileDir: /home/service/collector_watch/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.WatchServerHandler
- enable: true
-
- -
- name: bingshui
- topic: device-bingshui
- ip: 10.27.118.76
- port: 7510
- dataFileDir: /home/service/collector_7510/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.BingShuiGpsServerHandler
- enable: false
-
- -
- name: bsj
- topic: device-bsj
- ip: 10.25.19.87
- port: 6717
- dataFileDir: /home/service/collector_6707/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.BSJGpsServerHandler
- enable: true
-
- -
- name: wangrui-bsj
- topic: device-bsj
- ip: 10.29.44.67
- port: 7518
- dataFileDir: /home/service/collector_6707/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.BSJGpsServerHandler
- enable: false
-
- -
- name: yitong
- topic: device-yitong
- ip: 10.27.118.76
- port: 7111
- dataFileDir: /home/service/collector_yitong/rawdata-car/
- handlerClass: com.tidecloud.dataacceptance.service.impl.YiTongGpsServerHandler
- enable: true
- -
- name: yuguang
- topic: device-yuguang
- ip: 10.27.118.76
- port: 7510
- dataFileDir: /home/service/collector_7510/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.YuGuangGpsServerHandler
- enable: false
- -
- name: vorgea
- topic: device-vorgea
- ip: 10.27.118.76
- port: 7511
- dataFileDir: /home/service/collector_vorgea/rawdata/
- handlerClass: com.tidecloud.dataacceptance.service.impl.VorgeaUR0401ServerHandler
- enable: false
-
- logging:
- config:
- classpath: logback.xml
-
|