Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我知道可以在 LDAP 的所有条目中搜索属性。搜索后,我想从包含它的所有条目中删除该属性。 一种方法是遍历所有条目并DirContext.modifyAttributes(name, mods)在每个条目上调用。我想知道是否有任何简单的方法可以做到这一点,比如我可以一次性从所有条目中删除它。
DirContext.modifyAttributes(name, mods)
提前致谢。