从Spring MVC控制器的安全上下文中获取UserDetails对象
我正在使用Spring Security 3和Spring MVC 3.05。
我想打印当前登录用户的用户名,如何在控制器中获取UserDetails?
@RequestMapping(value="/index.html", method=RequestMethod.GET) public ModelAndView indexView(){
UserDetails user = ?
mv.addObject("username", user.getUsername());
ModelAndView mv = new ModelAndView("index");
return mv;
}
回答:
如果你已经确定该用户已登录(在你的示例中/index.html
为受保护用户):
UserDetails userDetails = (UserDetails)SecurityContextHolder.getContext().getAuthentication().getPrincipal();
要首先检查用户是否已登录,请检查当前用户Authentication
不是AnonymousAuthenticationToken
。
Authentication auth = SecurityContextHolder.getContext().getAuthentication();if (!(auth instanceof AnonymousAuthenticationToken)) {
// userDetails = auth.getPrincipal()
}
以上是 从Spring MVC控制器的安全上下文中获取UserDetails对象 的全部内容, 来源链接: utcz.com/qa/400698.html