我使用的是Spring core 2.0.2。当我调用'context.createSubContext()'时,我得到一个'not implemented'错误。当我查看LdapTemplate的Spring Ldap核心源时,我发现它没有实现。
那么如何在Spring Ldap中创建一个subContext?
答案 0 :(得分:0)
DirContextAdapter
旨在简化属性值的处理,而不是与LDAP树交互(请参阅reference docs)。您应该使用LdapTemplate
- 更具体地说,在这种情况下,使用bind
操作。