我试图获取,存储,然后使用objectGUID来查询Active目录.
要获取用户属性,我正在使用以下内容
public static class MyDnKeyValueAttMapper implements AttributesMapper {
@Override
public List mapFromAttributes(Attributes attributes)
throws NamingException, javax.naming.NamingException {
List attributeKeyValMap = new ArrayList();
NamingEnumeration namingEnumeration = attributes.getIDs();
while (namingEnumeration.hasMoreElements()) {
String attributeName = (String) namingEnumeration.nextElement();
String AttributeValue = attributes.get(attributeName).get().toString();
attributeKeyValMap.add(new LdapKeyValueList(attributeName, AttributeValue));
}
return attributeKeyValMap;
}
}
objectGuid似乎总是以字符串格式返回.
我也尝试过 –
UUID guid = (UUID) attributes.get("objectGUID").get();
抛出“无法将字符串转换为uuid”的错误
似乎之前我可以做任何事情ldaptemplate搜索总是以字符串格式返回属性.
如何以其格式获取“objectGUID”,以便我可以存储它并在ldapTemplate搜索查询中使用.
提前致谢.