最近在做自己的一个小项目,退出的时候遇到困难了,请大家看一下,下面有详细代码,不对请指出
挺急的,谢谢大家!
(1).这是页面的链接
href="${path}/system/admin/stulogout.action">退 出
(2).这是struts配置文件中的action
class="com.ldr.bysj.web.action.AdminMgrAction">
/login.jsp
(3).下面是action中的方法
public String stulogout() {
ActionContext ctx = ActionContext.getContext();
ctx.getSession().remove("student");
return SUCCESS;
}
已经获取用户信息并共享在session中!
这样,退出的时候虽然退出了,但后退还是能回到上一级页面