diff --git a/de-xpack b/de-xpack index 08cc93e3fb..7c95eb9a2c 160000 --- a/de-xpack +++ b/de-xpack @@ -1 +1 @@ -Subproject commit 08cc93e3fb3dc9579759a738dad6a1726577f026 +Subproject commit 7c95eb9a2cd5c13e7c06e92b72b36c14db6d0d3c 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 fe721b92c0..91211b4de6 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 @@ -40,9 +40,9 @@ public class CommunityTokenFilter implements Filter { String pwd = SubstituleLoginConfig.getPwd(); secret = Md5Utils.md5(pwd); } else { - Object apisixTokenManage = CommonBeanFactory.getBean("apisixTokenManage"); - Method method = DeReflectUtil.findMethod(apisixTokenManage.getClass(), "userCacheBO"); - Object o = ReflectionUtils.invokeMethod(method, apisixTokenManage, userId); + 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"); Object pwdObj = ReflectionUtils.invokeMethod(pwdMethod, o); secret = pwdObj.toString();