From a9a0b2e5a938cef395ddac30a9657bd4e87e332d Mon Sep 17 00:00:00 2001
From: shenyijian <1178253012@qq.com>
Date: Thu, 30 Nov 2023 11:38:10 +0800
Subject: [PATCH] 无人机 -接收所有主题消息
---
src/main/resources/application.yml | 37 ++++++++++++++++++++++++++++++-------
1 files changed, 30 insertions(+), 7 deletions(-)
diff --git a/src/main/resources/application.yml b/src/main/resources/application.yml
index 1604425..b5e3c7a 100644
--- a/src/main/resources/application.yml
+++ b/src/main/resources/application.yml
@@ -1,15 +1,21 @@
server:
port: 6789
spring:
+ jackson:
+ date-format: yyyy-MM-dd HH:mm:ss
+ time-zone: GMT+8
application:
name: cloud-api-sample
datasource:
druid:
type: com.alibaba.druid.pool.DruidDataSource
driver-class-name: com.mysql.cj.jdbc.Driver
- url: jdbc:mysql://172.16.13.129:3306/cloud_sample?useSSL=false&allowPublicKeyRetrieval=true
+# url: jdbc:mysql://172.16.13.129:3306/cloud_sample?useSSL=false&allowPublicKeyRetrieval=true
+# username: root
+# password: 123456
+ url: jdbc:mysql://182.106.212.58:3308/drone_test?useSSL=false&allowPublicKeyRetrieval=true
username: root
- password: 123456
+ password: yshb@123
initial-size: 10
min-idle: 10
max-active: 20
@@ -31,6 +37,20 @@
multipart:
max-file-size: 2GB
max-request-size: 2GB
+ rabbitmq:
+ host: 182.106.212.58
+ port: 35672
+ username: root
+ password: root
+ virtualHost: /
+ is-open: true
+# rabbitmq:
+# host: localhost
+# port: 5672
+# username: guest
+# password: guest
+# virtualHost: /
+# is-open: true
jwt:
issuer: DJI
@@ -54,13 +74,13 @@
client-id: aix123456
# If the protocol is ws/wss, this value is required.
path:
- # Topics that need to be subscribed when initially connecting to mqtt, multiple topics are divided by ",".
-# inbound-topic: sys/product/+/status,thing/product/+/requests
+ # 最初连接到mqtt时需要订阅的主题 多个订阅用 "," .
+# inbound-topic: sys/product/+/status,thing/product/+/requests,thing/product/+/osd
inbound-topic: sys/product/+/+,thing/product/+/+
DRC:
protocol: WS # @see com.dji.sample.component.mqtt.model.MqttProtocolEnum
host: 182.106.212.58
- port: 15675
+ port: 35675
path: /ws
url:
@@ -117,12 +137,15 @@
# access-key: admin
# secret-key: 12345678
endpoint: http://dev.jxpskj.com:9000
+ external-endpoint: http://dev.jxpskj.com:9000
+# endpoint: https://dev.jxpskj.com:8026
access-key: pskj
secret-key: pskj@2021
bucket: cloud-bucket
expire: 3600
region: us-east-1
- object-dir-prefix: wayline
+ object-dir-prefix:
+ out-net-file-address: http://171.34.76.171:8880/drone/file
logging:
level:
@@ -132,7 +155,7 @@
ntp:
server:
- host: Google.mzr.me
+ host: ntp.ntsc.ac.cn
# To create a license for an application: https://developer.dji.com/user/apps/#all
cloud-api:
--
Gitblit v1.9.3