我希望以循环方式使用两个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...
});
答案 0 :(得分:1)
检查spring-ldap reference documentation:
如果需要故障转移功能,可以指定多个URL
因此,您无法以这种方式实现负载平衡。
如果要在不同的LDAP服务器之间进行负载平衡,则应该使用指向位于LDAP服务器前面的负载均衡器(例如HaProxy)的单个LDAP服务器URL并使用它与mode tcp
和balance roundrobin
。