Just like in title, I want that only users of spec. Here is my authentication code:
public void configureGlobal(AuthenticationManagerBuilder auth) throws Exception {
auth.ldapAuthentication().userSearchFilter("(sAMAccountName={0})")
.contextSource(contextSource());
}
I found that there are functions like groupSearchFilter
and groupSearchBase
or groupRoleAttribute
but I have no idea how to use them
should be replaced with following
where cn, ou,dc are the specifications of the group in directory
I made some modifications on Megha's solution
It depends on how your group membership is set up. Something like the following might work, replacing your group dn and objectclasses as necessary: