gpt4 book ai didi

java - 使用 LdapTemplate 为 Ldap posixAccount 生成 uidNumber

转载 作者:行者123 更新时间:2023-11-29 09:01:40 26 4
gpt4 key购买 nike

有人在 Ldap 中创建 posixAccount 时遇到过这个错误吗?

 javax.naming.directory.SchemaViolationException: [LDAP: error code 65 - object class 'posixAccount' requires attribute 'uidNumber']

有没有一种聪明的方法来生成一个唯一的 UidNumber,将创建委托(delegate)给 Ldap 而不是注意找出唯一性? (例如 SQL Server 中的标识列)

谢谢

这里是我使用的代码:

public class LdapService {

//...
private LdapTemplate ldapTemplate;

public UserInfo save(final UserInfo user) {
Name dn = buildDn(user);
ldapTemplate.bind(dn, null, buildUserAttributes(user));

// Update Groups
for (String group : user.getGroups()) {
try {
DistinguishedName groupDn = new DistinguishedName();
groupDn.add("ou", "groups");
groupDn.add("cn", group);
DirContextOperations context = ldapTemplate
.lookupContext(groupDn);
context.addAttributeValue("memberUid", user.getUid());
ldapTemplate.modifyAttributes(context);
} catch (Exception e) {
e.printStackTrace();
}
}
return user;
}

private Attributes buildUserAttributes(final UserInfo user) {
Attributes attrs = new BasicAttributes();
BasicAttribute ocattr = new BasicAttribute("objectclass");
ocattr.add("top");
ocattr.add("inetOrgPerson");
ocattr.add("posixAccount");
attrs.put(ocattr);
attrs.put("givenName", user.getName());
attrs.put("sn", user.getSurname());
if (user.getDisplayName() != null)
attrs.put("cn", user.getDisplayName());
attrs.put("userPassword", "{SHA}" + this.encrypt(user.getPassword()));
attrs.put("mail", user.getEmail());

return attrs;
}
//...
}

最佳答案

如果您的服务器支持修改-递增请求控制,LDAP 客户端可以使用它在一个原子操作中递增一个整数。另请参阅:LDAP: Modify-Increment Extension .

关于java - 使用 LdapTemplate 为 Ldap posixAccount 生成 uidNumber,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17110452/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com