123456789101112131415161718192021222324252627282930313233343536373839 |
- #
- # Copyright 2016-present the IoT DC3 original author or authors.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # https://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- #
- # 预发布环境配置, 会覆盖 application-*.yml 中配置的内容
- driver:
- schedule:
- # 定时读数据
- read:
- cron: '0 0/15 * * * ?'
- mqtt:
- url: ${MQTT_BROKER_URL:tcp://dc3-rabbitmq:1883}
- auth-type: USERNAME
- username: ${MQTT_USERNAME:dc3}
- password: ${MQTT_PASSWORD:dc3}
- topic-prefix: dc3/${driver.tenant}/${spring.application.name}/
- receive-topics:
- - qos: 1
- name: data
- spring:
- rabbitmq:
- virtual-host: ${RABBITMQ_VIRTUAL_HOST:dc3}
- host: ${RABBITMQ_HOST:dc3-rabbitmq}
- port: ${RABBITMQ_PORT:5672}
- username: ${RABBITMQ_USERNAME:dc3}
- password: ${RABBITMQ_PASSWORD:dc3}
|