作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有以下用于注销的 Controller ,我想获取注销用户的名称,如何实现此目的?
String userName=(String)session.getAttribute("name");
此行不起作用
注销 Controller
@RequestMapping(value = "/session", method = RequestMethod.DELETE)
public @ResponseBody ResponseEntity<?> logout(HttpSession session){
String userName=(String)session.getAttribute("name");
System.out.println("name: " + userName);
session.invalidate();
return ResponseEntity.ok("user logged out");
}
最佳答案
我目前附近没有任何 Spring 项目,但据我记得,可以这样做:
SecurityContextHolder.getContext().getAuthentication().getPrincipal();
正如我所说,我不确定它是否有效。自从我上次使用 Spring 以来已经有一段时间了,如果是的话请告诉我。
关于java - Spring : How to get the username on logout call,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46462464/
我是一名优秀的程序员,十分优秀!