Hàm destroy session trong java , khi bạn tạo ra session thì catch đã nhớ password của bạn rồi nếu bạn muốn logout ra thì phải hủy session vừa tạo code tham khảo như sau :
public String logout(){
HttpSession sessout=(HttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(false);
sessout.invalidate();
// trả về trang chủ lúc chưa đăng nhập
return "index" ;
}
public String logout(){
HttpSession sessout=(HttpSession)FacesContext.getCurrentInstance().getExternalContext().getSession(false);
sessout.invalidate();
// trả về trang chủ lúc chưa đăng nhập
return "index" ;
}