با سلام. این کد logout یکی سیستم هست که با خروج کاربر session اون رو از بین میبره . این کد در wildfly 8.1 کار نمیکنه و همچنان کاربر وجود داره و session اون فعال هست .
@RequestMapping(value = "/do_logout.html")
public ModelAndView doLogout(HttpServletRequest request) {
HttpSession httpSession = request.getSession(false);
if (httpSession != null) {
httpSession.removeAttribute("user");
httpSession.invalidate();
}
return new ModelAndView("/login");
}