From d5e2f1d142e7958241ebab9b8c325eda3d10fddd Mon Sep 17 00:00:00 2001 From: YunaiV Date: Mon, 24 Nov 2025 19:25:20 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E3=80=90iot=E3=80=91spring=20redis?= =?UTF-8?q?=20=E9=85=8D=E7=BD=AE=E5=A4=9A=E4=BA=86=20data=20=E5=B1=82?= =?UTF-8?q?=EF=BC=8C=E4=BF=AE=E5=A4=8D=20https://t.zsxq.com/51v5n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/main/resources/application.yaml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/yudao-module-iot/yudao-module-iot-gateway/src/main/resources/application.yaml b/yudao-module-iot/yudao-module-iot-gateway/src/main/resources/application.yaml index b85e84c170..575eb8a390 100644 --- a/yudao-module-iot/yudao-module-iot-gateway/src/main/resources/application.yaml +++ b/yudao-module-iot/yudao-module-iot-gateway/src/main/resources/application.yaml @@ -5,13 +5,12 @@ spring: active: local # 默认激活本地开发环境 # Redis 配置 - data: - redis: - host: 127.0.0.1 # Redis 服务器地址 - port: 6379 # Redis 服务器端口 - database: 0 # Redis 数据库索引 - # password: # Redis 密码,如果有的话 - timeout: 30000ms # 连接超时时间 + redis: + host: 127.0.0.1 # Redis 服务器地址 + port: 6379 # Redis 服务器端口 + database: 0 # Redis 数据库索引 + # password: # Redis 密码,如果有的话 + timeout: 30000ms # 连接超时时间 --- #################### 消息队列相关 ####################