|
@@ -2,7 +2,6 @@ package com.gyee.runeconomy.service;
|
|
|
|
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import cn.hutool.core.bean.BeanUtil;
|
|
import com.gyee.common.model.StringUtils;
|
|
import com.gyee.common.model.StringUtils;
|
|
-import com.gyee.health.util.DateUtils;
|
|
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.init.CacheContext;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.auto.*;
|
|
import com.gyee.runeconomy.model.vo.TokenVo;
|
|
import com.gyee.runeconomy.model.vo.TokenVo;
|
|
@@ -12,7 +11,6 @@ import org.springframework.stereotype.Service;
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import javax.servlet.http.HttpServletRequest;
|
|
import java.util.ArrayList;
|
|
import java.util.ArrayList;
|
|
-import java.util.Date;
|
|
|
|
import java.util.List;
|
|
import java.util.List;
|
|
import java.util.Map;
|
|
import java.util.Map;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
import java.util.concurrent.ConcurrentHashMap;
|
|
@@ -31,40 +29,40 @@ public class TokenService {
|
|
public static Map<String, TokenVo> sessionMap= new ConcurrentHashMap<>();
|
|
public static Map<String, TokenVo> sessionMap= new ConcurrentHashMap<>();
|
|
|
|
|
|
|
|
|
|
- public void judegeSession() {
|
|
|
|
-
|
|
|
|
-
|
|
|
|
-
|
|
|
|
- for (Map.Entry <String, TokenVo> entry : sessionMap.entrySet()) {
|
|
|
|
- TokenVo vo=entry.getValue();
|
|
|
|
-
|
|
|
|
- Date begin=vo.getTime();
|
|
|
|
- Date end=new Date();
|
|
|
|
-
|
|
|
|
- double value=DateUtils.hoursDiff(begin,end);
|
|
|
|
- if(value>3)
|
|
|
|
- {
|
|
|
|
- sessionMap.remove(entry.getKey());
|
|
|
|
-
|
|
|
|
- if (sessionWtMap.containsKey(entry.getKey())) {
|
|
|
|
- sessionWtMap.remove(entry.getKey());
|
|
|
|
- }
|
|
|
|
- if (sessionWpMap.containsKey(entry.getKey())) {
|
|
|
|
- sessionWpMap.remove(entry.getKey());
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- if (sessionSubMap.containsKey(entry.getKey())) {
|
|
|
|
- sessionSubMap.remove(entry.getKey());
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- if (sessionWeMap.containsKey(entry.getKey())) {
|
|
|
|
- sessionWeMap.remove(entry.getKey());
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- }
|
|
|
|
|
|
+// public void judegeSession() {
|
|
|
|
+//
|
|
|
|
+//
|
|
|
|
+//
|
|
|
|
+// for (Map.Entry <String, TokenVo> entry : sessionMap.entrySet()) {
|
|
|
|
+// TokenVo vo=entry.getValue();
|
|
|
|
+//
|
|
|
|
+// Date begin=vo.getTime();
|
|
|
|
+// Date end=new Date();
|
|
|
|
+//
|
|
|
|
+// double value=DateUtils.hoursDiff(begin,end);
|
|
|
|
+// if(value>24)
|
|
|
|
+// {
|
|
|
|
+// sessionMap.remove(entry.getKey());
|
|
|
|
+//
|
|
|
|
+// if (sessionWtMap.containsKey(entry.getKey())) {
|
|
|
|
+// sessionWtMap.remove(entry.getKey());
|
|
|
|
+// }
|
|
|
|
+// if (sessionWpMap.containsKey(entry.getKey())) {
|
|
|
|
+// sessionWpMap.remove(entry.getKey());
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+// if (sessionSubMap.containsKey(entry.getKey())) {
|
|
|
|
+// sessionSubMap.remove(entry.getKey());
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+// if (sessionWeMap.containsKey(entry.getKey())) {
|
|
|
|
+// sessionWeMap.remove(entry.getKey());
|
|
|
|
+//
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+// }
|
|
|
|
+//
|
|
|
|
+// }
|
|
public List<ProBasicEquipment> getWtls(HttpServletRequest request ) {
|
|
public List<ProBasicEquipment> getWtls(HttpServletRequest request ) {
|
|
|
|
|
|
String token = request.getHeader("token");
|
|
String token = request.getHeader("token");
|