From 6a371f06b0b0cfa975a41aeb35e39060c332f22e Mon Sep 17 00:00:00 2001 From: YunaiV Date: Sat, 16 Sep 2023 13:29:47 +0800 Subject: [PATCH] =?UTF-8?q?=E9=BB=98=E8=AE=A4=E7=A6=81=E7=94=A8=20spring?= =?UTF-8?q?=20data=20redis=20repositories=EF=BC=8C=E4=B8=80=E6=96=B9?= =?UTF-8?q?=E9=9D=A2=E6=B2=A1=E7=94=A8=E5=88=B0=EF=BC=8C=E4=B8=80=E6=96=B9?= =?UTF-8?q?=E9=9D=A2=E6=8F=90=E9=AB=98=E5=90=AF=E5=8A=A8=E9=80=9F=E5=BA=A6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yudao-server/src/main/resources/application.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/yudao-server/src/main/resources/application.yaml b/yudao-server/src/main/resources/application.yaml index 67218a6d8..7137a5088 100644 --- a/yudao-server/src/main/resources/application.yaml +++ b/yudao-server/src/main/resources/application.yaml @@ -77,6 +77,13 @@ mybatis-plus: encryptor: password: XDV71a+xqStEA3WH # 加解密的秘钥,可使用 https://www.imaegoo.com/2020/aes-key-generator/ 网站生成 +# Spring Data Redis 配置 +spring: + data: + redis: + repositories: + enabled: false # 项目未使用到 Spring Data Redis 的 Repository,所以直接禁用,保证启动速度 + --- #################### 验证码相关配置 #################### aj: