From 63393602c51e5a56c8d9258f69c09102794c1140 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=A6=82=E6=A2=A6=E6=8A=80=E6=9C=AF?= <596392912@qq.com> Date: Tue, 21 Jan 2025 14:19:23 +0800 Subject: [PATCH] =?UTF-8?q?:sparkles:=20blade-starter-redis=20=E5=8F=91?= =?UTF-8?q?=E5=B8=83=E8=AE=A2=E9=98=85=E6=94=AF=E6=8C=81=E5=BB=B6=E8=BF=9F?= =?UTF-8?q?=E5=8A=A0=E8=BD=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../config/RPubSubListenerLazyFilter.java | 54 +++++++++++++++++++ .../redis/config/RedisAutoCacheManager.java | 2 +- .../config/RedisPubSubConfiguration.java | 5 ++ 3 files changed, 60 insertions(+), 1 deletion(-) create mode 100644 blade-starter-redis/src/main/java/org/springblade/core/redis/config/RPubSubListenerLazyFilter.java diff --git a/blade-starter-redis/src/main/java/org/springblade/core/redis/config/RPubSubListenerLazyFilter.java b/blade-starter-redis/src/main/java/org/springblade/core/redis/config/RPubSubListenerLazyFilter.java new file mode 100644 index 0000000..d20657c --- /dev/null +++ b/blade-starter-redis/src/main/java/org/springblade/core/redis/config/RPubSubListenerLazyFilter.java @@ -0,0 +1,54 @@ +/** + * Copyright (c) 2018-2099, DreamLu 卢春梦 (qq596392912@gmail.com). + *
+ * Licensed under the GNU LESSER GENERAL PUBLIC LICENSE 3.0; + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + *
+ * http://www.gnu.org/licenses/lgpl.html + *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package org.springblade.core.redis.config;
+
+import org.springblade.core.redis.pubsub.RPubSubListener;
+import org.springframework.beans.factory.config.BeanDefinition;
+import org.springframework.boot.LazyInitializationExcludeFilter;
+import org.springframework.core.annotation.AnnotationUtils;
+import org.springframework.util.ReflectionUtils;
+
+import java.lang.reflect.Method;
+import java.util.ArrayList;
+import java.util.List;
+
+/**
+ * mqtt 客户端订阅延迟加载排除
+ *
+ * @author L.cm
+ */
+public class RPubSubListenerLazyFilter implements LazyInitializationExcludeFilter {
+
+ @Override
+ public boolean isExcluded(String beanName, BeanDefinition beanDefinition, Class> beanType) {
+ // 类上有注解的情况
+ RPubSubListener subscribe = AnnotationUtils.findAnnotation(beanType, RPubSubListener.class);
+ if (subscribe != null) {
+ return true;
+ }
+ // 方法上的注解
+ List