//注销用户 清除session信息
@RequestMapping("/logoff")
public String logoff(HttpSession session){
Enumeration<String> em=session.getAttributeNames();
while (em.hasMoreElements()){
String value=em.nextElement().toString();
session.removeAttribute(value);
}
return "redirect:/login.jsp";
}
这里是用户存储在session使用while循环清除session种的信息即可