0
라운드 로빈 방식으로 사용하려는 두 개의 LDAP 서버가 있습니다. 이 코드는 항상 첫 번째 서버를 선택하는 것으로 보입니다. 어떻게 균등하게 고를 수 있나요??스프링에서 LDAP 연결로드 균형 조정
SearchControls searchControls = new SearchControls();
searchControls.setTimeLimit(5000);
List ldapResultList = ldapTemplate.search("", filter.encode(), searchControls, (ContextMapper) o -> {
// do things with result...
});