0
如何使用java獲得Ldap組中的所有成員?我想:獲取Ldap上的所有成員
public List getListAdmin() {
String base = "cn=admin, ou=group, dc=Google";
return ldapTemplate.search(base, "(&(objectclass=person)(memberOf=admin))", new UtenteAttributeMapper());
}
公共列表getAllContactAdmin(){ 字符串基地= 「CN =管理員,OU = Group_test」; String filter =「(member = *)」; return ldapTemplate.search(base,filter,new UtenteAttributeMapper()); } –