使用 Spring Ldap 我需要为已经创建的上下文创建一个子上下文

Using Spring Ldap I need to create a subContext to an already created context

我正在使用 Spring 核心 2.0.2。当我调用 'context.createSubContext()' 时,出现 'not implemented' 错误。当我查看 LdapTemplate 的 Spring Ldap 核心源时,我发现它没有实现。

那么如何在 Spring Ldap 中创建子上下文?

DirContextAdapter 旨在简化对属性值的处理,而不是与 LDAP 树交互(参见 reference docs). You should use LdapTemplate instead - more specifically, in this case, the bind 操作。