查看完整版本: JSF中用户登出返回登录页面问题

qingqing3721 2012-5-11 11:57

JSF中用户登出返回登录页面问题

在页面中运用
  h:commandLink value="[#{msg.logout}]" action="#myBean.logout}"/h:commandLink
  做登出操作的时分,代码如下:
  public String logoutHMS() {
  String outCome ="logoutSuccess";
  System.out.print("Logout!!);
  // 设置登录Session关键信息
  FacesContext fc = FacesContext.getCurrentInstance();
  HttpSession Session = (HttpSession) fc.[url=http://www.scicen.com/][color=black]pangoo电视机[/color][/url]getExternalContext()
  .getSession(false);
  Session.invalidate();
  return outCome;
  }
  不能运用actionListener属性,否则退出了,重载不了登录页面。
页: [1]
查看完整版本: JSF中用户登出返回登录页面问题