2017-03-30 8 views
0

스프링 LDAP을 사용하여 AD에 연결하려고합니다. 단순 인증을 사용하여 서버에 연결할 수 있지만 서버 중 하나에서만 GSS-API 인증이 활성화됩니다. Spring LDAP를 사용하여이 서버에 연결할 수 없습니다.스프링 LDAP GSS-API

누군가이 문제를 해결하도록 안내 할 수 있습니까? 어떤 도움이라도 정말 고맙습니다!

아래 코드는 내 코드입니다.

@Configuration 
@Profile("prod") 
public class AppProdConfig { 

@Bean 
public LdapContextSource ldapContextSource(){ 
    LdapContextSource ldapContextSource = new LdapContextSource(); 
    ldapContextSource.setUrls(new String[]{"ldaps://1.1.1.1:636","ldaps://2.2.2.2:636"}); 
    ldapContextSource.setBase("ou=users,ou=usersAndGroups,dc=ecommerce,dc=company"); 
    ldapContextSource.setUserDn("user"); 
    ldapContextSource.setPassword("password123"); 

    return ldapContextSource; 
} 

@Bean 
public LdapTemplate ldapTemplate(LdapContextSource ldapContextSource){ 
    LdapTemplate ldapTemplate = new LdapTemplate(ldapContextSource); 
    return ldapTemplate; 
} 
} 

답변

0

스프링 LDAP은 이것을 지원하지 않습니다. My library이 처리합니다.