Spring LDAP GSS-API

时间:2017-03-30 02:06:03

标签: spring-ldap gssapi

我正在尝试使用Spring LDAP连接到AD。我能够使用简单身份验证连接到服务器,但对于其中一个服务器,只有GSS-API身份验证处于活动状态。我无法使用Spring LDAP连接到此服务器。

有人可以帮我指导解决这个问题吗?任何帮助都非常感谢!

以下是我的代码;

@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;
}
}

1 个答案:

答案 0 :(得分:0)

Spring LDAP不支持此功能。 My library会为你做这件事。