使用 AD 为内部用户设置 Spring Security,为外部用户设置 LDAP

时间:2021-02-08 21:51:58

标签: spring-security-ldap

支持多个 LDAP 身份验证提供程序(例如用于内部用户的 Active Directory 和用于外部用户的 LDAP)的最佳方式是什么?此示例 https://www.baeldung.com/spring-security-multiple-auth-providers 将内存中身份验证提供程序传递到 auth.authenticationProvider()。我见过的 LDAP 示例使用 auth.ldapAuthentication()。混合这两种风格打破了我的测试。在哪里可以找到为 LDAP 实现 AuthenticationProvider 的示例?我想做这样的事情。

   @Override
   public void configure(AuthenticationManagerBuilder auth) throws Exception {
       auth.authenticationProvider(activeDirectoryAuthenticationProvider);
       auth.authenticationProvider(openLdapAuthenticationProvider);
   }

0 个答案:

没有答案
相关问题