Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
HttpServletRequest isUserInRole() 方法将根据角色是否存在返回一个布尔值。现在,如果它正在这样做,它应该在某处拥有登录用户的完整角色列表。我如何获得完整的角色列表?
isUserInRole()使用SecurityContext您的身份验证器需要设置的请求。该SecurityContext接口不提供允许您访问此信息的方法,但您可以在身份验证器中执行某些操作以使信息作为提供者可访问,或者将其添加为请求属性并以这种方式访问它。
isUserInRole()
SecurityContext