mirror of
https://gitee.com/dromara/sa-token.git
synced 2025-04-05 17:37:53 +08:00
fix(core): 修复部分场景下登录后已存在的 token-session 没有被续期的问题,fixes #IA8U1O
This commit is contained in:
parent
1c3b02fc13
commit
c62fdc9276
@ -486,15 +486,21 @@ public class StpLogic {
|
||||
setLastActiveToNow(tokenValue, loginModel.getActiveTimeout(), loginModel.getTimeoutOrGlobalConfig());
|
||||
}
|
||||
|
||||
// 8、$$ 发布全局事件:账号 xxx 登录成功
|
||||
// 8、如果该 token 对应的 Token-Session 已经存在,则需要给其续期
|
||||
SaSession tokenSession = getTokenSessionByToken(tokenValue, false);
|
||||
if(tokenSession != null) {
|
||||
tokenSession.updateMinTimeout(loginModel.getTimeout());
|
||||
}
|
||||
|
||||
// 9、$$ 发布全局事件:账号 xxx 登录成功
|
||||
SaTokenEventCenter.doLogin(loginType, id, tokenValue, loginModel);
|
||||
|
||||
// 9、检查此账号会话数量是否超出最大值,如果超过,则按照登录时间顺序,把最开始登录的给注销掉
|
||||
// 10、检查此账号会话数量是否超出最大值,如果超过,则按照登录时间顺序,把最开始登录的给注销掉
|
||||
if(config.getMaxLoginCount() != -1) {
|
||||
logoutByMaxLoginCount(id, session, null, config.getMaxLoginCount());
|
||||
}
|
||||
|
||||
// 10、一切处理完毕,返回会话凭证 token
|
||||
// 11、一切处理完毕,返回会话凭证 token
|
||||
return tokenValue;
|
||||
}
|
||||
|
||||
|
@ -1,5 +1,6 @@
|
||||
package com.pj.test;
|
||||
|
||||
import cn.dev33.satoken.stp.StpUtil;
|
||||
import cn.dev33.satoken.util.SaResult;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RestController;
|
||||
@ -12,11 +13,15 @@ import org.springframework.web.bind.annotation.RestController;
|
||||
@RestController
|
||||
public class Test2Controller {
|
||||
|
||||
// 测试登录 ---- http://localhost:8081/.test
|
||||
@RequestMapping("/.test")
|
||||
// 测试登录 ---- http://localhost:8081/test
|
||||
@RequestMapping("/test")
|
||||
public SaResult test2() {
|
||||
System.out.println("--- 进来了");
|
||||
return SaResult.ok("登录成功");
|
||||
|
||||
StpUtil.login(30003);
|
||||
System.out.println(StpUtil.getSession().getTimeout());
|
||||
System.out.println(StpUtil.getStpLogic().getTokenSession(false));
|
||||
|
||||
return SaResult.ok();
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user