Spring 启动 + Spring LDAP + 服务帐户 + 错误凭证
Spring boot + Spring LDAP + Service Account + Bad Credentials
我在使用 Active Directory 服务帐户时收到错误的凭据异常,而相同的代码对用户帐户工作正常。
并且服务用户凭据没有任何问题。
请在下面找到我的代码。
@Configuration
protected static class AuthenticationConfiguration extends GlobalAuthenticationConfigurerAdapter {
@Override
public void init(AuthenticationManagerBuilder auth) throws Exception {
ActiveDirectoryLdapAuthenticationProvider provider = new ActiveDirectoryLdapAuthenticationProvider(
"abc.def.ghi", "ldap://abc.def.ghi:389");
auth.authenticationProvider(provider);
}
}
userPrincipleName 属性 不符合该特定用户帐户的预期格式 username@domainname。
我在使用 Active Directory 服务帐户时收到错误的凭据异常,而相同的代码对用户帐户工作正常。
并且服务用户凭据没有任何问题。
请在下面找到我的代码。
@Configuration
protected static class AuthenticationConfiguration extends GlobalAuthenticationConfigurerAdapter {
@Override
public void init(AuthenticationManagerBuilder auth) throws Exception {
ActiveDirectoryLdapAuthenticationProvider provider = new ActiveDirectoryLdapAuthenticationProvider(
"abc.def.ghi", "ldap://abc.def.ghi:389");
auth.authenticationProvider(provider);
}
}
userPrincipleName 属性 不符合该特定用户帐户的预期格式 username@domainname。