diff --git a/pom.xml b/pom.xml
index 58acc2f9..4f087cf5 100644
--- a/pom.xml
+++ b/pom.xml
@@ -245,21 +245,28 @@
3.3.3
-
+
+
+ com.github.wnameless.json
+ json-flattener
+ 0.16.4
+
+
+
cn.dev33
sa-token-core
1.37.0
-
+
cn.dev33
sa-token-spring-boot3-starter
1.37.0
-
+
cn.dev33
sa-token-redis-jackson
@@ -343,25 +350,18 @@
3.1.944
-
-
- com.aliyun
- dysmsapi20170525
- 2.0.24
-
-
-
-
- com.tencentcloudapi
- tencentcloud-sdk-java-sms
- 3.1.893
-
-
org.dromara.sms4j
sms4j-javase-plugin
- 3.1.1
+ 3.3.4
+
+
+
+
+ org.dromara.sms4j
+ sms4j-oa-core
+ 3.3.4
@@ -371,6 +371,14 @@
6.4.11
+
+
+ org.junit.jupiter
+ junit-jupiter-api
+ 5.10.1
+ test
+
+
com.baomidou
@@ -432,7 +440,7 @@
org.apache.maven.plugins
maven-compiler-plugin
- 3.12.1
+ 3.7.0
-parameters
@@ -461,11 +469,19 @@
src/main/resources
+
+ _sql/*
+ *.md
+
src/main/java
**/*.xml
+ **/*.ttf
+ **/*.ttc
+ **/*.TTF
+ **/*.TTC
diff --git a/snowy-common/pom.xml b/snowy-common/pom.xml
index 6c0d25d5..963cf0ac 100644
--- a/snowy-common/pom.xml
+++ b/snowy-common/pom.xml
@@ -129,5 +129,11 @@
com.alibaba
easyexcel
+
+
+
+ com.github.wnameless.json
+ json-flattener
+
diff --git a/snowy-common/src/main/java/vip/xiaonuo/common/cache/CommonCacheOperator.java b/snowy-common/src/main/java/vip/xiaonuo/common/cache/CommonCacheOperator.java
index 0c3e784a..600b4011 100644
--- a/snowy-common/src/main/java/vip/xiaonuo/common/cache/CommonCacheOperator.java
+++ b/snowy-common/src/main/java/vip/xiaonuo/common/cache/CommonCacheOperator.java
@@ -58,21 +58,13 @@ public class CommonCacheOperator {
public Collection getAllKeys() {
Set keys = redisTemplate.keys(CACHE_KEY_PREFIX + "*");
- if (keys != null) {
- // 去掉缓存key的common prefix前缀
- return keys.stream().map(key -> StrUtil.removePrefix(key, CACHE_KEY_PREFIX)).collect(Collectors.toSet());
- } else {
- return CollectionUtil.newHashSet();
- }
+ // 去掉缓存key的common prefix前缀
+ return keys.stream().map(key -> StrUtil.removePrefix(key, CACHE_KEY_PREFIX)).collect(Collectors.toSet());
}
public Collection