Skip to content

Instantly share code, notes, and snippets.

@wdfx100
Created April 17, 2013 13:27
Show Gist options
  • Save wdfx100/5404281 to your computer and use it in GitHub Desktop.
Save wdfx100/5404281 to your computer and use it in GitHub Desktop.
#删除cookie#安全退出
//让session过期
request.getSession().invalidate();//安全退出,强制Session过期
//删除cookie
Cookie[] cookies = request.getCookies();
if(cookies!=null){
for(Cookie c:cookies){
if("username".equals(c.getName())||"password".equals(c.getName())){
c.setMaxAge(0);
c.setPath("/");
c.setDomain("www.wdfx100.com");
response.addCookie(c);
}
}
}
response.sendRedirect("index");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment