0
這是我的彈簧security.xml文件的某個部分。 我的要求是 - 我想只能用嵌入式LDAP服務器,並且希望使用LdapAuthoritiesPopulator在與ITT如何實現定製LdapAuthoritiesPopulator在
<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服務器中使用它。 我是新來的春天到現在爲止。
什麼可以是conextSource的嵌入式服務器。你可以給它嗎? – Discovery
@Learner我更新了我的答案代碼。 –