Jsp/servlet 标准不要求一个web容器支持分布式应用,但是他一定要支持HttpSessionActivationListener借口,以使代码可以支持分布式环境。一般免费的web容器都不支持分布式,weblogic websphere是支持的。为了负载均衡或者fail-over,web容器可以迁移一个session到其他的jvm.session的passivation是指非活动的session被写入持久设备(比如硬盘)。activate自然就是相反的过程。在分布式环境中切换的属性必须实现serializable接口。 

一般情况下他和HttpSessionBindingListener一起使用。 
比如一个属性类, 
Java代码   收藏代码
  1. public class attributeClass implements HttpSessionBindingListener,HttpSessionActivationListener{  
  2.     //HttpSessionActivationListener  
  3.     public   void   sessionDidActivate(HttpSessionEvent   se)   
  4.     {         logout("sessionDidActivate("+se.getSession().getId()+")");//激活  
  5.     }   
  6.     public   void   sessionWillPassivate(HttpSessionEvent   se)  
  7.     {//被传送到别的jvm或 写到硬盘  
  8.     logout("sessionWillPassivate("+se.getSession().getId()+")");  
  9.     }  
  10.     //HttpSessionBindingListener  
  11.     public   void   valueBound(HttpSessionBindingEvent   event)  
  12.     { //被设置到session中(setAttribute)  
  13.         logout("valueBound("+event.getSession().getId()+event.getValue()+")");  
  14.     }   
  15.     public   void   valueUnbound(HttpSessionBindingEvent   event)  
  16.     { //从session中解除(removeAttribute)  
  17.     logout("valueUnbound("+event.getSession().getId()+event.getValue()+")");  
  18.     }  
  19. }  

这样你就可以将它加到session中 
Java代码   收藏代码
  1. public class AAAServlet extends HttpServlet {  
  2.  protected void doGet(HttpServletRequest request, HttpServletResponse response)  throws ServletException, IOException {  
  3.    HttpSession session = request.getSession();  
  4.    session.setAttribute("attribute",attributeClass);  
  5.  }  
  6. }  

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐