- 浏览: 2244 次
- 性别:
- 来自: 北京
最近访客 更多访客>>
最新评论
-
Artkai:
HttpSession httpSession = Servl ...
struts2 session过期遇到的问题
文章列表
今天遇到一个奇怪的问题,在web系统有个“退出系统”的链接,对应的action会使seesion失效,代码如下
HttpSession httpSession = ServletActionContext.getRequest().getSession();
if (httpSession != null)
{
System.out.println(httpSession.getAttribute(Constant.SESSION_LOGINNAME));
httpSession.invalidate();
}
...
- 2009-03-06 20:14
- 浏览 2244
- 评论(1)