文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

springboot集成Ldap

2023-09-13 14:27

关注

一、什么是Ldap
轻型目录访问协议(英文:Lightweight Directory Access Protocol,缩写:LDAP,/ˈɛldæp/)是一个开放的,中立的,工业标准的应用协议,通过IP协议提供访问控制和维护分布式信息的目录信息。
二、为什么需要Ldap
这里举个例子,一个公司内部有很多系统,每个系统都有独立的用户名和密码。密码太多,有时候想不起来哪个密码对应的是哪个系统。后续如果又新增一个项目,还要在开发和维护一套用户和密码。如何才能系统整合,以此做到账号的打通,使多套系统共用一个用户名和密码。如果要求不高的话Ldap就能很好的满足要求,如果要求比较高的话可以开发一个统一门户管理平台(统一门户平台不在本次讨论范围)。
三、Ldap介绍
在 LDAP 里, 一切都是等级化的,或者称之为层级化(hiearchical)。
一棵树有树干,树枝和树叶;树叶长在树枝上,树枝依附于树干。这就是一个简单的层级结构。LDAP 的结构同一棵树类似。假设 LDAP 里存储的是公司的信息,那么可以把公司(company)本身理解为树干,公司里面的各个部门,比如组(group),理解为树干,把用户(user)理解为树叶。这样的结构称之为目录信息树(DIrectory Information Tree,DIT)。

CN, OU, DC 都是 LDAP 连接服务器的端字符串中的区别名称(DN, distinguished name)
LDAP连接服务器的连接字串格式为:ldap://servername/DN
其中DN有三个属性,分别是CN,OU,DC
LDAP是一种通讯协议,如同HTTP是一种协议一样的!
在 LDAP 目录中,
· DC (Domain Component)
· CN (Common Name)
· OU (Organizational Unit)
LDAP 目录类似于文件系统目录。
下列目录:
DC=Remeber,DC=Da,DC=microsoft,DC=com
如果我们类比文件系统的话,可被看作如下文件路径:
Com\Microsoft\Da\Remeber
例如:CN=testsan,OU=developer,DC=domainname,DC=com
在上面的代码中 cn=testsan可能代表一个用户名,ou=developer 代表一个 active directory 中的组织单位。这句话的含义可能就是说明 test 这个对象处在domainname.com 域的 developer 组织单元中。

四、Ldap基本模型
每一个系统、协议都会有属于自己的模型,LDAP也不例外,在了解LDAP的基本模型之前我们需要先了解几个LDAP的目录树概念:
(一)目录树概念

  1. 目录树:在一个目录服务系统中,整个目录信息集可以表示为一个目录信息树,树中的每个节点是一个条目。
  2. 条目:每个条目就是一条记录,每个条目有自己的唯一可区别的名称(DN)。
  3. 对象类:与某个实体类型对应的一组属性,对象类是可以继承的,这样父类的必须属性也会被继承下来。
  4. 属性:描述条目的某个方面的信息,一个属性由一个属性类型和一个或多个属性值组成,属性有必须属性和非必须属性。
    (二)DC、UID、OU、CN、SN、DN、RDN

关键字 英文全称 含义
dc Domain Component 域名的部分,其格式是将完整的域名分成几部分,如域名为example.com变成dc=example,dc=com(一条记录的所属位置)
Uid User Id 用户ID songtao.xu(一条记录的ID
ou Organization Unit 组织单位,组织单位可以包含其他各种对象(包括其他组织单元),如“oa组”(一条记录的所属组织)
cn Common Name 公共名称,如“Thomas Johansson”(一条记录的名称)
dn Distinguished Name “uid=songtao.xu,ou=oa组,dc=example,dc=com”,一条记录的位置(唯一)
rdn Relative dn 相对辨别名,类似于文件系统中的相对路径,它是与目录树结构无关的部分,如“uid=tom”或“cn= Thomas Johansson”
sn Surname 姓,如“许”
五、集成过程
1、添加依赖

org.springframework.boot
spring-boot-starter-data-ldap

1、在application.properties中添加如下配置
ldap:

服务地址 生产环境

urls: xxxx
base: OU=组织机构,DC=xxxx,DC=ad
username: xxxx
password: xxxx
2、通过如上两步,我们已经完成了springboot集成ldap 。
3、我们建三个方法,方法一:获得所有的域用户,方法二:获得所有的部门,方法三:登录验证
package com.ldap.demo.service.impl;

import static org.springframework.ldap.query.LdapQueryBuilder.query;

import java.util.List;

import javax.naming.NamingException;
import javax.naming.directory.Attributes;
import javax.naming.directory.DirContext;

import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.ldap.core.AttributesMapper;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.ldap.support.LdapUtils;
import org.springframework.stereotype.Service;

import com.ldap.demo.service.LdapService;
import com.ldap.demo.service.entity.LdapDept;
import com.ldap.demo.service.entity.Ldapuser;

@Service
public class LdapServiceImpl implements LdapService {
@Autowired
private LdapTemplate ldapTemplate;

@Override@SuppressWarnings({ "rawtypes", "unchecked" })public List getPersonList() {    //下面也可以使用filter查询方式,filter 为(&(objectClass=user)(!(objectClass=computer))    return ldapTemplate.search(query().where("objectclass").is("user").and("objectclass").not().is("computer"),            new AttributesMapper() {                @Override                public Ldapuser mapFromAttributes(Attributes attr) throws NamingException {                    //如果不知道ldap中有哪些属性,可以使用下面这种方式打印                    // NamingEnumeration att = attr.getAll();                    //while (att.hasMore()) {                    //  Attribute a = att.next();                    // System.out.println(a.getID());                    //}                    Ldapuser person = new Ldapuser();                    String distingugihedName = (String) attr.get("distinguishedName").get();                    person.setUserName((String) attr.get("sAMAccountName").get());                    person.setRealName((String) attr.get("cn").get());                    String departmentName = StringUtils.substringAfter(distingugihedName.split(",")[1], "OU=");                    person.setUnitName(departmentName);                    if (attr.get("description") != null) {                        person.setDescription((String) attr.get("description").get());                    }                    if (attr.get("mobile") != null) {                        person.setPhone((String) attr.get("mobile").get());                    }                    if (attr.get("telephoneNumber") != null) {                        person.setTelephone((String) attr.get("telephoneNumber").get());                    }                    if (attr.get("userPrincipalName") != null) {                        person.setEmail((String) attr.get("userPrincipalName").get());                    }                    return person;                }            });}@Override@SuppressWarnings({ "rawtypes", "unchecked" })public List getDeptList() {    return ldapTemplate.search(            下面也可以使用filter查询方式,filter 为(|(objectclass=organizationalunit)(objectclass=organization))            query().where("objectclass").is("organizationalunit").or("objectclass").is("organization"),            new AttributesMapper() {                @Override                public LdapDept mapFromAttributes(Attributes attr) throws NamingException {                    //如果不知道ldap中有哪些属性,可以使用下面这种方式打印                    // NamingEnumeration att = attr.getAll();                    //while (att.hasMore()) {                    //  Attribute a = att.next();                    // System.out.println(a.getID());                    //}                    LdapDept dept = new LdapDept();                    dept.setDeptId(attr.get("ou").toString().split(":")[1].trim());                    if (attr.get("description") != null) {                        dept.setDeptName(attr.get("description").toString().split(":")[1].trim());                    }                    return dept;                }            });}@SuppressWarnings("unchecked")@Overridepublic boolean authenticate(String userCn, String pwd) {    DirContext ctx = null;    System.out.println(userCn + ":" + pwd);    try {        //调用ldap 的 authenticate方法检验        String filter = "(&(objectclass=user)(!(objectClass=computer))(sAMAccountName=" + userCn + "))";        boolean authenticate = ldapTemplate.authenticate("", filter, pwd);        return authenticate;    } catch (Exception e) {        e.printStackTrace();        return false;    } finally {        LdapUtils.closeContext(ctx);    }}

}
Ldapuser代码如下:
package com.ldap.demo.service.entity;

import lombok.Data;

@Data
public class Ldapuser {

private String description;

}
LdapDept代码如下
package com.ldap.demo.service.entity;

import lombok.Data;

@Data
public class LdapDept {

private String deptName;

}

来源地址:https://blog.csdn.net/weixin_42491646/article/details/129858863

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-服务器
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯