在Spring中加载平衡LDAP连接

时间:2016-10-11 14:34:17

标签: java spring-boot ldap connection-pooling spring-ldap

我希望以循环方式使用两个LDAP服务器。这个代码写的似乎总是选择第一个服务器。 如何让它选择均匀

private static LdapTemplate createLdapTemplate(String[] urls, String username, String password) {

    LdapContextSource contextSource = new LdapContextSource();
    contextSource.setUrls(urls);
    contextSource.setBase(LDAP_SEARCH_BASE);

    // username is the same for both LDAP servers
    contextSource.setUserDn(username);
    contextSource.setPassword(password);

    contextSource.setPooled(true);
    contextSource.afterPropertiesSet();

    return new LdapTemplate(contextSource);
}

我使用LDAP模板:

SearchControls searchControls = new SearchControls();
searchControls.setTimeLimit(5000);

List ldapResultList = ldapTemplate.search("", filter.encode(), searchControls, (ContextMapper) o -> {
    // do things with result...
});

1 个答案:

答案 0 :(得分:1)

检查spring-ldap reference documentation

  

如果需要故障转移功能,可以指定多个URL

因此,您无法以这种方式实现负载平衡。

如果要在不同的LDAP服务器之间进行负载平衡,则应该使用指向位于LDAP服务器前面的负载均衡器(例如HaProxy)的单个LDAP服务器URL并使用它与mode tcpbalance roundrobin