在我的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错误。请告知。