你可以使用session的 invalidate方法 .
下面是一个从action方法中结束session的例子: :
public String logout() {
FacesContext fc = FacesContext.getCurrentInstance();
HttpSession session = (HttpSession) fc.getExternalContext().getSession(false);
...
- 2007-06-12 16:11
- 浏览 1255
- 评论(0)