The only logged-in user in the session

 

It will only exit when the page jumps. To actively exit, the timed heartbeat package of js is required.

 

	//userid=httpsession
	public static Map<Integer, HttpSession> USERID_SESSIONS = new ConcurrentHashMap<Integer, HttpSession>();
	

 

 

	public static void addLoginUser(HttpServletRequest request,Map<String, Object> user){
		//Exit the previous session
		int id = StringUtil.toInt(user.get("id"));
		if (id>0) {
			HttpSession session_old = ChipmunkCache.USERID_SESSIONS.get(id);
			if (session_old!=null) {
				ChipmunkCache.USERID_SESSIONS.remove(id);
				System.out.println("old sessionid:"+session_old.getId());
				System.out.println(session_old.isNew());
				session_old.removeAttribute(SESSION_USER);
				session_old.invalidate();//Destroy session, sessionDestroyed of HttpSessionListener will be called
			}
			HttpSession session_new = request.getSession();
			System.out.println("new sessionid:"+session_new.getId());
			session_new.setAttribute(SESSION_USER, user);
			ChipmunkCache.USERID_SESSIONS.put(id, session_new);
		}
		//add(request, SESSION_USER, user);
	}

	public static void removeLoginUser(HttpServletRequest request){
		HttpSession session = request.getSession();
		Map<String, Object> user = getLoginUser(session);
		if (user!=null) {
			int id = StringUtil.toInt(user.get("id"));
			ChipmunkCache.USERID_SESSIONS.remove(id);
		}
		session.removeAttribute(SESSION_USER);
		//Reset sessionid, anti-vulnerability
		try {
			session.invalidate();
		} catch (Exception e) {
			e.printStackTrace ();
		}
	}

 

 

public class MySessionListener implements HttpSessionListener{
	
	private static AtomicInteger online_count = new AtomicInteger(0);
	@Override
	public void sessionCreated(HttpSessionEvent event) {
		int count = online_count.incrementAndGet();
		System.out.println("online count:"+count);
		HttpSession session = event.getSession();
//		online_user_map.put(session.getId(), value)
	}
	@Override
	public void sessionDestroyed(HttpSessionEvent event) {
		HttpSession session = event.getSession();
		int count = online_count.decrementAndGet();
		System.out.println("online count:"+count);
		
	}
	
}

 

 

Guess you like

Origin http://43.154.161.224:23101/article/api/json?id=326174439&siteId=291194637