我尝试将用户会话保存在每个集群的哈希图中。当我需要使其无效时,我将采用指定的会话 ID。并在使用正常方式使会话无效的会话创建的位置使其无效。
public class SessionListener implements HttpSessionListener {
public HashMap<String, HttpSession> sessionHolder = new HashMap<String, HttpSession>();
@Override
public void sessionCreated(HttpSessionEvent se) {
sessionHolder.put(se.getSession().getId(), se.getSession());
}
public void invalidate(String sessionId){
if(this.sessionHolder.get(sessionId)!= null){
System.out.println("Invalidate session ID : " + sessionId);
HttpSession session = sessionHolder.get(sessionId);
session.invalidate();
} else {
System.out.println("Session is not created in this cluster ID : " + sessionId);
}
}
@Override
public void sessionDestroyed(HttpSessionEvent se) {
System.out.println("Session " + se.getSession().getId() + " has been destoryed");
sessionHolder.remove(se.getSession().getId());
}
}
会话将在发生无效的地方消失。但在其他集群会话上仍然可用。
为什么其他集群上的会话仍然存在。以及如何使其他集群上的会话无效。
谢谢。