diff --git a/sa-token-dao-redis-jackson/pom.xml b/sa-token-dao-redis-jackson/pom.xml index 293c235a..e965e5ba 100644 --- a/sa-token-dao-redis-jackson/pom.xml +++ b/sa-token-dao-redis-jackson/pom.xml @@ -26,7 +26,7 @@ org.springframework.boot spring-boot-starter-data-redis - 2.3.7.RELEASE + 2.3.3.RELEASE diff --git a/sa-token-dao-redis/pom.xml b/sa-token-dao-redis/pom.xml index 9e66756a..cc8cdbee 100644 --- a/sa-token-dao-redis/pom.xml +++ b/sa-token-dao-redis/pom.xml @@ -26,7 +26,7 @@ org.springframework.boot spring-boot-starter-data-redis - 2.3.7.RELEASE + 2.3.3.RELEASE diff --git a/sa-token-demo-springboot/src/main/java/com/pj/satoken/MySaTokenAction.java b/sa-token-demo-springboot/src/main/java/com/pj/satoken/MySaTokenAction.java deleted file mode 100644 index 7327f1d4..00000000 --- a/sa-token-demo-springboot/src/main/java/com/pj/satoken/MySaTokenAction.java +++ /dev/null @@ -1,21 +0,0 @@ -package com.pj.satoken; - -import org.springframework.stereotype.Component; - -import cn.dev33.satoken.action.SaTokenActionDefaultImpl; - -/** - * 继承sa-token行为Bean默认实现, 重写部分逻辑 - * @author kong - * - */ -@Component -public class MySaTokenAction extends SaTokenActionDefaultImpl { - - // 重写token生成策略 -// @Override -// public String createToken(Object loginId, String loginKey) { -// return SaTokenInsideUtil.getRandomString(60); -// } - -}