request.getSession().invalidate();

  销毁当前会话域中的所有属性

request.getSession().removeAttribute("username"); //假设当前session域对象中已经有属性名为username的属性

  只移除特定属性名的属性

  博主推荐用removeAttribute() ,假设一个用户购物的实际应用场景,你在淘宝上购物,添加了多件不同类型的商品在购物车(一次会话中,设置包含每件商品的属性 如:session.setAttribute("goods1");  session.setAttribute("goods2"); session.setAttribute("goods3"); session.setAttribute("goods4");等),当你不想买某件商品时,直接session.removeAttribute("goodx");(x为1,2,3,4代表商品),从购物车中移除。

  如果使用invalidate(),清除了购物车中所有商品。  

 

posted on 2017-06-14 16:06  花江  阅读(6683)  评论(1编辑  收藏  举报