From 6a6f6ed0051d4fc3e8f0ed21b9649e61a0293138 Mon Sep 17 00:00:00 2001 From: lujianxin <2458505331@qq.com> Date: Fri, 4 Jul 2025 09:53:33 +0800 Subject: [PATCH] =?UTF-8?q?style(yudao-module-system-biz):=20=E8=B0=83?= =?UTF-8?q?=E6=95=B4=20Redis=20=E9=85=8D=E7=BD=AE=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E6=A0=BC=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了 Redis 配置中的 database 和 password 参数后的换行符 -保持了其他配置参数的格式不变 --- .../src/main/resources/application-dev.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/yudao-module-system/yudao-module-system-biz/src/main/resources/application-dev.yaml b/yudao-module-system/yudao-module-system-biz/src/main/resources/application-dev.yaml index 0aa9637..aa84850 100644 --- a/yudao-module-system/yudao-module-system-biz/src/main/resources/application-dev.yaml +++ b/yudao-module-system/yudao-module-system-biz/src/main/resources/application-dev.yaml @@ -69,8 +69,8 @@ spring: redis: host: 192.168.1.103 # 地址 port: 6379 # 端口 - database: 1 # 数据库索引 - password: redis_r2GyW5 # 密码,建议生产环境开启 + database: 1 # 数据库索引 + password: redis_r2GyW5 # 密码,建议生产环境开启 --- #################### MQ 消息队列相关配置 ####################