Spring LDAP 常见问题解答

操作属性

如何使用 context.removeAttributeValue() 删除操作属性?

默认情况下,DirContextAdapter 仅读取可见属性。这是因为操作属性只有在明确要求时才会由服务器返回,而 Spring LDAP 无法知道要请求哪些属性。这意味着 DirContextAdapter 未填充操作属性。因此,removeAttributeValue 没有任何效果(因为从 DirContextAdapter 的角度来看,它最初就不存在)。

基本上有两种方法可以做到这一点

  • 使用将属性名称作为参数的搜索或查找方法,例如 LdapTemplate#lookup(Name, String[], ContextMapper)。然后使用在 mapFromContext() 中返回提供的 DirContextAdapterContextMapper 实现。

  • 直接使用 LdapTemplate#modifyAttributes(Name, ModificationItem[]),手动构建 ModificationItem 数组。