1

我尝试将用户会话保存在每个集群的哈希图中。当我需要使其无效时,我将采用指定的会话 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());
 }
}

会话将在发生无效的地方消失。但在其他集群会话上仍然可用。

为什么其他集群上的会话仍然存在。以及如何使其他集群上的会话无效。

谢谢。

4

1 回答 1

0

(最好确认我们是在谈论服务器还是集群 - 您域的 config.xml 会有所帮助)

会话对象仅由 Web 容器内的 WebLogic Server 管理 - 如果您在另一个服务器或另一个集群中手动在 HashMap 中创建会话对象的副本,WebLogic Server 不会自动使该会话对象的副本无效,因为它在 web 容器之外。

如果 weblogic.xml 部署描述符中的 <session-descriptor> 元素具有正确的设置,WebLogic Server 将自动且非常透明地创建 HttpSession 对象的复制副本(建议使用 replicated_if_clustered for persistent-store-type)

此处提供文档:http: //download.oracle.com/docs/cd/E13222_01/wls/docs103/webapp/weblogic_xml.html#wp1071982

最好了解您在此处尝试实现的目标 - 除非您在谈论怪物应用程序或跨越广泛的网段,否则不需要跨集群复制,尽管 WebLogic Server 支持它。

于 2011-02-07T04:17:26.967 回答