LDAP相关操作注意事项
Posted lishidefengchen
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LDAP相关操作注意事项相关的知识,希望对你有一定的参考价值。
lc.Modify(entry.DN, new LdapModification(LdapModification.REPLACE, new LdapAttribute("mDBUseDefaults", "FALSE")));//必须大写
对于布尔类型的属性值,必须要大写,否则报错;
if (entry.getAttribute("mDBStorageQuota") != null) lc.Modify(entry.DN, new LdapModification(LdapModification.DELETE, new LdapAttribute("mDBStorageQuota")));
在执行删除操作的时候,必须要先判断有无该属性,否则执行失败;
lc.Modify(entry.DN, new LdapModification(LdapModification.REPLACE, new LdapAttribute("mDBStorageQuota","");//ERROR
执行更新操作,需要注意的是,更新的值必须不能为空,否则报错。也就是说,要是清空某一个属性值,只能是执行DELETE删除该属性;
以上是关于LDAP相关操作注意事项的主要内容,如果未能解决你的问题,请参考以下文章
spark关于join后有重复列的问题(org.apache.spark.sql.AnalysisException: Reference '*' is ambiguous)(代码片段