我已经设置了Active Directory,并且想设置SSO。我正在使用Waffles,并且想知道我的Servlet中的用户组。如何检索用户的群组?
答案 0 :(得分:0)
我使用 WindowsPrincipal 来获取用户的组。
WindowsPrincipal p = (WindowsPrincipal)request.getSession().getAttribute("waffle.servlet.NegotiateSecurityFilter.PRINCIPAL");
for(Map.Entry<String, WindowsAccount> entry: p.getGroups().entrySet()){
System.out.println(entry.getValue().getName); //The is the group that the user memberOf
}