解决方案 »

  1.   

    用过滤器,或者一个父 action 统一处理
      

  2.   

    response.sendRedirect("");
    引号中加上你想跳转的地址。如果跳转到首页,可以为空,楼主试试吧。
      

  3.   

    我在注销按钮下面的action中的函数的内容如下:
    HttpSession session = request.getSession();

    session.removeAttribute(MDCConstants.USER_LOGGED);
    session.removeAttribute(MDCConstants.CURRENT_DATETIME);
    response.sendRedirect("");
    楼主是怎么设置的页面跳转?发来看看吧。
      

  4.   

    你应该用js操作easyui的layout吧,跳出顶级框架应该就行了,你试试:
    top.location.href="xxxxx";
      

  5.   

    已解决:response.getWriter().write("<script>window.top.location='login.jsp'</script>");