[LDAP:错误代码32-0000208D:NameErr:DSID-031001EE,问题2001(NO_OBJECT),数据0,最佳匹配项为:“];剩余的名字''

时间:2019-03-04 02:54:15

标签: spring-boot spring-security spring-ldap

在我的WebSecurityConfigurerAdapter中,我重写了configure方法,如下所示:

@Override
protected void configure(AuthenticationManagerBuilder auth) throws Exception {
    auth.ldapAuthentication()
            .userSearchBase("DC=unit1,DC=org1,DC=com")
            .userSearchFilter("(sAMAccountName={0})")
            .contextSource().url(ldapUrl).managerDn(mgrDn).managerPassword(mgrPassword);
}

我正在传递以下请求:

请求标头:Content-Type: application/x-www.form-urlencoded;charset=UTF-8 表单数据username=user&password=password

但是我继续遇到ldap错误。请告知。

0 个答案:

没有答案