Я использую ldap spring security для аутентификации пользователя.Нет проблем с аутентификацией.Из-за сложных полномочий мы создали CustomLdapAuthoritiesPopulator, см. Программу ниже.Все работает нормально, но соединение не закрывается.При каждом входе пользователя в систему создается новое соединение при выполнении следующей строки
List<String> appGroupUsersList = ldapTemplate.search(query, new AppGroupUsersListContextMapper());
Как мне закрыть соединение после получения полномочий от ldap?
public class CustomLdapAuthoritiesPopulator implements LdapAuthoritiesPopulator {
private static final Logger logger = LoggerFactory.getLogger(CustomLdapAuthoritiesPopulator.class);
private final LdapTemplate ldapTemplate;
private String groupSearchBase;
public AblLdapAuthoritiesPopulator(ContextSource contextSource, String groupSearchBase) {
this.ldapTemplate = new LdapTemplate(contextSource);
this.groupSearchBase = groupSearchBase;
}
@Override
public final Collection<GrantedAuthority> getGrantedAuthorities(DirContextOperations user, String username) {
if (groupSearchBase == null) {
return new HashSet<GrantedAuthority>();
}
logger.debug("Getting authorities for user " + user.getNameInNamespace());
LdapQuery query = query().base(groupSearchBase)
.where("cn").is("UsersList")
.and("objectclass").is("groupOfUniqueNames")
.and("uniqueMember").is(user.getNameInNamespace());
logger.debug("query: " + query.toString());
List<String> appGroupUsersList = ldapTemplate.search(query, new AppGroupUsersListContextMapper());
logger.debug("appGroupUsersList: " + appGroupUsersList.toString());
if(appGroupUsersList.size() == 0) {
throw new BadCredentialsException("Unauthorized Access");
}
List<String[]> functionsList = new LinkedList<String[]>();
for (String appGroup : appGroupUsersList) {
query = query().base("ou="+appGroup+","+groupSearchBase)
.where("cn").is("FunctionsList");
List<String[]> appGroupFunctionsList = ldapTemplate.search(query, new AppGroupFunctionsListContextMapper());
functionsList.addAll(appGroupFunctionsList);
}
Set<GrantedAuthority> authorities = new HashSet<GrantedAuthority>();
for (String[] roles : functionsList) {
for (String role : roles) {
authorities.add(new SimpleGrantedAuthority(role));
}
}
logger.debug("authorities: " + authorities.size());
return authorities;
}
private static class AppGroupUsersListContextMapper extends AbstractContextMapper<String> {
public String doMapFromContext(DirContextOperations context) {
String usersList = null;
Name dn = context.getDn();
if (!dn.isEmpty()) {
if (dn.size() > 3) {
usersList = (dn.get(2).split("="))[1];
}
}
return usersList;
}
}
private static class AppGroupFunctionsListContextMapper extends AbstractContextMapper<String[]> {
public String[] doMapFromContext(DirContextOperations context) {
String[] functionNames = null;
String[] functionsList = context.getStringAttributes("uniqueMember");
if (functionsList != null) {
functionNames = new String[functionsList.length];
for (int i = 0; i < functionsList.length; i++) {
String[] attributes = functionsList[i].split(",");
for (int j = 0; j < attributes.length; j++) {
String[] keyValue = attributes[j].split("=");
if ("cn".equalsIgnoreCase(keyValue[0])) {
functionNames[i] = keyValue[1];
}
}
}
}
return functionNames;
}
}
}