如何更新OpenLDAP目录属性?
有没有办法通过Java代码以编程方式更新OpenLDAP目录属性?
Is there any way to programmatically update the OpenLDAP directory attribute through Java code?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 Novell 的 Java 的 LDAP 类 来完成此操作,它只需完成此工作即可对我们来说很好。
You can do this using Novell's LDAP Classes for Java, which do the job just fine for us.
Peter 是对的,只要您不想摆弄 JNDI,这些类是唯一可用的。
但有一件事是,如果您更新属性,则需要在添加新值之前删除该属性的值(尤其是对于多值属性)。
Peter is right, these classes are the only ones available as long you do not want to fiddle around with JNDI.
One thing though you if you update an attribute you will need to remove the value of the attribute before you add a new value (especially with multivalued attributes).