gpt4 book ai didi

java - 如何在找到结果时停止 LDAP 搜索

转载 作者:行者123 更新时间:2023-12-01 17:54:40 24 4
gpt4 key购买 nike

我正在尝试从distinguishedName 参数获取登录用户的组名。我可以找到组名称,但搜索是 countine,即使我在 ldap 搜索和 and gets 中找到该人

PartialResultException:未处理的继续引用;

这是我的代码

当我获得成功结果时,我想停止 ldapTemplate.search 进程,你们有什么想法吗?

public List<String> getUserGroup(String username) throws Exception {
try {
LdapQuery query;
LdapTemplate ldapTemplate = ldapConf.ldapTemplate();
if (ldapConf.getSearchBase().isEmpty()) {
System.out.println("searchbase empty");
query = query().where(env.getProperty("retouch.ldap.searchKeyword")).isPresent();
} else
query = query().base(ldapConf.getSearchBase()).where(env.getProperty("retouch.ldap.searchKeyword")).isPresent();
List<String> result = ldapTemplate.search(query, new AttributesMapper<String>() {
public String mapFromAttributes(Attributes attrs) throws NamingException, javax.naming.NamingException {

for (Enumeration vals = attrs.get("distinguishedName").getAll(); vals.hasMoreElements();) {
String userName = (String) vals.nextElement();
if (userName.contains(username)) {
return (String) attrs.get("distinguishedName").get();
}
}

return null;
}
});
logger.debug("ldap groups" + result);
while (result.remove(null)) {
}
return result;
} catch (Exception e) {
e.printStackTrace();
logger.error(e, e);
throw e;
}
}

最佳答案

我完全误解了 ldap 搜索机制。我的 ldap 查询也是错误的

query = query().where(env.getProperty("ldap.searchKeyword")).isPresent();

而不是 isPresent()我应该使用 is(username)这样我就可以直接获取我想要的用户。我还试图在我的代码中获取用户 DN。而不是new AttributesMapper<String>() , new ContextMapper<String>()提供 DN

关于java - 如何在找到结果时停止 LDAP 搜索,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60741566/

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