From cac165ee84bb296184b9be6f5fa695af0344fa05 Mon Sep 17 00:00:00 2001 From: fit2cloud-chenyw Date: Thu, 25 Dec 2025 16:58:13 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20JWT=20Token=20=E6=BC=8F=E6=B4=9E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../main/java/io/dataease/auth/filter/CommunityTokenFilter.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/common/src/main/java/io/dataease/auth/filter/CommunityTokenFilter.java b/sdk/common/src/main/java/io/dataease/auth/filter/CommunityTokenFilter.java index c2cc44fdd1..bde3c23e13 100644 --- a/sdk/common/src/main/java/io/dataease/auth/filter/CommunityTokenFilter.java +++ b/sdk/common/src/main/java/io/dataease/auth/filter/CommunityTokenFilter.java @@ -43,7 +43,7 @@ public class CommunityTokenFilter implements Filter { Object apisixCacheManage = CommonBeanFactory.getBean("apisixCacheManage"); Method method = DeReflectUtil.findMethod(apisixCacheManage.getClass(), "userCacheBO"); Object o = ReflectionUtils.invokeMethod(method, apisixCacheManage, userId); - Method pwdMethod = DeReflectUtil.findMethod(o.getClass(), "getPwd"); + Method pwdMethod = DeReflectUtil.findMethod(o.getClass(), "getSecret"); Object pwdObj = ReflectionUtils.invokeMethod(pwdMethod, o); secret = pwdObj.toString(); }