SpringBoot 實(shí)現(xiàn)并發(fā)登錄人數(shù)控制
今天跟大家分享SpringBoot 實(shí)現(xiàn)并發(fā)登錄人數(shù)控制的知識(shí)。
1?SpringBoot 實(shí)現(xiàn)并發(fā)登錄人數(shù)控制
通常系統(tǒng)都會(huì)限制同一個(gè)賬號(hào)的登錄人數(shù),多人登錄要么限制后者登錄,要么踢出前者,Spring Security 提供了這樣的功能,本文講解一下在沒有使用Security的時(shí)候如何手動(dòng)實(shí)現(xiàn)這個(gè)功能
demo 技術(shù)選型
SpringBoot
JWT
Filter
Redis + Redisson
如果你是使用session的話,也完全可以借鑒本文的思路,只是代碼上需要加些改動(dòng)
兩種實(shí)現(xiàn)思路
比較時(shí)間戳

public class CompareKickOutFilter extends KickOutFilter {@Autowiredprivate UserService userService;@Overridepublic boolean isAccessAllowed(HttpServletRequest request, HttpServletResponse response) {String token = request.getHeader("Authorization");String username = JWTUtil.getUsername(token);String userKey = PREFIX + username;RBucketbucket = redissonClient.getBucket(userKey); String redisToken = bucket.get();if (token.equals(redisToken)) {return true;} else if (StringUtils.isBlank(redisToken)) {bucket.set(token);} else {Long redisTokenUnixTime = JWTUtil.getClaim(redisToken, "createTime").asLong();Long tokenUnixTime = JWTUtil.getClaim(token, "createTime").asLong();// token > redisToken 則覆蓋if (tokenUnixTime.compareTo(redisTokenUnixTime) > 0) {bucket.set(token);} else {// 注銷當(dāng)前tokenuserService.logout(token);sendJsonResponse(response, 4001, "您的賬號(hào)已在其他設(shè)備登錄");return false;}}return true;}}
隊(duì)列踢出

public class QueueKickOutFilter extends KickOutFilter {/*** 踢出之前登錄的/之后登錄的用戶 默認(rèn)踢出之前登錄的用戶*/private boolean kickoutAfter = false;/*** 同一個(gè)帳號(hào)最大會(huì)話數(shù) 默認(rèn)1*/private int maxSession = 1;public void setKickoutAfter(boolean kickoutAfter) {this.kickoutAfter = kickoutAfter;}public void setMaxSession(int maxSession) {this.maxSession = maxSession;}@Overridepublic boolean isAccessAllowed(HttpServletRequest request, HttpServletResponse response) throws Exception {String token = request.getHeader("Authorization");UserBO currentSession = CurrentUser.get();Assert.notNull(currentSession, "currentSession cannot null");String username = currentSession.getUsername();String userKey = PREFIX + "deque_" + username;String lockKey = PREFIX_LOCK + username;RLock lock = redissonClient.getLock(lockKey);lock.lock(2, TimeUnit.SECONDS);try {RDequedeque = redissonClient.getDeque(userKey); // 如果隊(duì)列里沒有此token,且用戶沒有被踢出;放入隊(duì)列if (!deque.contains(token) && currentSession.isKickout() == false) {deque.push(token);}// 如果隊(duì)列里的sessionId數(shù)超出最大會(huì)話數(shù),開始踢人while (deque.size() > maxSession) {String kickoutSessionId;if (kickoutAfter) { // 如果踢出后者kickoutSessionId = deque.removeFirst();} else { // 否則踢出前者kickoutSessionId = deque.removeLast();}try {RBucketbucket = redissonClient.getBucket(kickoutSessionId); UserBO kickoutSession = bucket.get();if (kickoutSession != null) {// 設(shè)置會(huì)話的kickout屬性表示踢出了kickoutSession.setKickout(true);bucket.set(kickoutSession);}} catch (Exception e) {}}// 如果被踢出了,直接退出,重定向到踢出后的地址if (currentSession.isKickout()) {// 會(huì)話被踢出了try {// 注銷userService.logout(token);sendJsonResponse(response, 4001, "您的賬號(hào)已在其他設(shè)備登錄");} catch (Exception e) {}return false;}} finally {if (lock.isHeldByCurrentThread()) {lock.unlock();LOGGER.info(Thread.currentThread().getName() + " unlock");} else {LOGGER.info(Thread.currentThread().getName() + " already automatically release lock");}}return true;}}
比較兩種方法
https://gitee.com/yintianwen7/taven-springboot-learning/tree/master/login-control
運(yùn)行項(xiàng)目,訪問localhost:8887 demo中沒有存儲(chǔ)用戶信息,隨意輸入用戶名密碼,用戶名相同則被踢出
訪問 localhost:8887/index.html 彈出用戶信息, 代表當(dāng)前用戶有效
另一個(gè)瀏覽器登錄相同用戶名,回到第一個(gè)瀏覽器刷新頁(yè)面,提示被踢出
application.properties中選擇開啟哪種過濾器模式,默認(rèn)是比較時(shí)間戳踢出,開啟隊(duì)列踢出 queue-filter.enabled=true
參考文獻(xiàn):https://blog.csdn.net/qq_14958051/article/details/106516664--END--
最近熬夜給大家準(zhǔn)備了515套Java代碼,有一些是業(yè)務(wù)類的小項(xiàng)目,比如Java博客項(xiàng)目,也有腳手架、也有平時(shí)用一些的工具類、21套小程序代碼,也有一些游戲類的項(xiàng)目。
掃以下二維碼并回復(fù)“828”即可獲取
或者在本公眾號(hào)對(duì)話框回復(fù)【828】馬上獲取
評(píng)論
圖片
表情

