这是我的 spring-security.xml 的一部分。我的要求是 - 我只想使用嵌入式 LDAP 服务器,并希望将 LdapAuthoritiesPopulator 与 itt 一起使用
<security:authentication-manager>
<security:ldap-authentication-provider
user-search-filter="(uid={0})"
user-search-base="ou=users"
group-search-filter="(uniqueMember={0})"
group-search-base="ou=groups"
group-role-attribute="cn"
role-prefix="ROLE_">
</security:ldap-authentication-provider>
</security:authentication-manager>
<!-- Use an embedded LDAP server. We need to declare the location of the LDIF file
We also need to customize the root attribute default is -->
<security:ldap-server ldif="classpath:mojo.ldif" root="dc=springframework,dc=org"/>
我想使用我的自定义 LdapAuthoritiesPopulator。如何将它与嵌入式 ldap 服务器一起使用。到目前为止,我是春天的新手。