作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我已经从数据库中为当前用户加载了角色。而且我可以在JSP中使用spring security表达式访问用户角色,并且可以隐藏没有使用hasRole授权的选项和URL。现在我想将它放在 servlet 中并将其显示在日志中(或存储在用户对象 session 中)。我们如何实现它?
最佳答案
你可以试试这样的:
Collection<SimpleGrantedAuthority> authorities = (Collection<SimpleGrantedAuthority>) SecurityContextHolder.getContext().getAuthentication().getAuthorities();
您在权限变量中拥有角色集合。
关于spring - 如何从 Spring security 3.1 获取当前用户角色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10092882/
我是一名优秀的程序员,十分优秀!