From 83c0b70a2d8e67e371b40322f1a8529ca13e3827 Mon Sep 17 00:00:00 2001
From: 疯狂的狮子li <15040126243@163.com>
Date: 星期五, 11 二月 2022 17:30:38 +0800
Subject: [PATCH] fix 修复 验证码 强制校验问题

---
 ruoyi-common/src/main/java/com/ruoyi/common/utils/redis/RedisUtils.java |   18 ++++++++++++++----
 1 files changed, 14 insertions(+), 4 deletions(-)

diff --git a/ruoyi-common/src/main/java/com/ruoyi/common/utils/redis/RedisUtils.java b/ruoyi-common/src/main/java/com/ruoyi/common/utils/redis/RedisUtils.java
index aa5c0dc..5a15d46 100644
--- a/ruoyi-common/src/main/java/com/ruoyi/common/utils/redis/RedisUtils.java
+++ b/ruoyi-common/src/main/java/com/ruoyi/common/utils/redis/RedisUtils.java
@@ -130,7 +130,7 @@
 
     /**
      * 娉ㄥ唽瀵硅薄鐩戝惉鍣�
-     *
+     * <p>
      * key 鐩戝惉鍣ㄩ渶寮�鍚� `notify-keyspace-events` 绛� redis 鐩稿叧閰嶇疆
      *
      * @param key      缂撳瓨鐨勯敭鍊�
@@ -223,7 +223,7 @@
 
     /**
      * 娉ㄥ唽List鐩戝惉鍣�
-     *
+     * <p>
      * key 鐩戝惉鍣ㄩ渶寮�鍚� `notify-keyspace-events` 绛� redis 鐩稿叧閰嶇疆
      *
      * @param key      缂撳瓨鐨勯敭鍊�
@@ -259,7 +259,7 @@
 
     /**
      * 娉ㄥ唽Set鐩戝惉鍣�
-     *
+     * <p>
      * key 鐩戝惉鍣ㄩ渶寮�鍚� `notify-keyspace-events` 绛� redis 鐩稿叧閰嶇疆
      *
      * @param key      缂撳瓨鐨勯敭鍊�
@@ -296,7 +296,7 @@
 
     /**
      * 娉ㄥ唽Map鐩戝惉鍣�
-     *
+     * <p>
      * key 鐩戝惉鍣ㄩ渶寮�鍚� `notify-keyspace-events` 绛� redis 鐩稿叧閰嶇疆
      *
      * @param key      缂撳瓨鐨勯敭鍊�
@@ -376,4 +376,14 @@
         Iterable<String> iterable = CLIENT.getKeys().getKeysByPattern(pattern);
         return IterUtil.toList(iterable);
     }
+
+    /**
+     * 妫�鏌edis涓槸鍚﹀瓨鍦╧ey
+     *
+     * @param key 閿�
+     */
+    public static Boolean hasKey(String key) {
+        RKeys rKeys = CLIENT.getKeys();
+        return rKeys.countExists(key) > 0;
+    }
 }

--
Gitblit v1.9.3