Spring Ldap

此篇关于Spring LDAP的使用,主要偏向于简单的DEMO,后续会根据实际项目需求再进行修改正。
这篇文章是我鼓起勇气发布的第一篇文章,有一些问题或者错误理解,请提出改正,谢谢!

一、)Ldap的一些简单缩写介绍
1、这是我们自己搭建的open ldap的结构,可以看到里面有几个重要的缩写:DC、OU、CN、DN
关键字 英文名称 含义
DC domainComponent 域名的部分,其格式是将完整的域名分成几部分,如域名为example.com变成dc=example,dc=com(一条记录的所属位置)
OU Organization Unit 组织单位,组织单位可以包含其他各种对象(包括其他组织单元),如“oa组”
CN common name 公共名称,如“lichunlan”(一条记录的名称)
DN Distinguished Name “cn=lichunlan,ou=people,dc=example,dc=com”,一条记录的位置(唯一)
image.png
2、objectClass

结构型(Structural):如account、inetOrgPerson、person和organizationUnit;
辅助型(Auxiliary):如extensibeObject;
抽象型(Abstract):如top,抽象型的objectClass不能直接使用。
规定了就是说指定为特定的objectClass之后,有些属性就是必须要有的例如,account就要求userid是必填项,而inetOrgPerson则要求cn(common name,常用名称)和sn(sure name,真实名称)是必填项。

image.png
二、)SpringBoot ldap的具体使用
1、简单结构
image.png
2、pom.xml
 <dependency>
       <groupId>org.springframework.boot</groupId>
       <artifactId>spring-boot-starter-data-ldap</artifactId>
 </dependency>
3、application.properties
#这里有一个坑,我们自己搭建openldap,浏览器访问的地址是http://IP:81/ ,
# 我在研究的时候,spring.ldap.urls=ldap://IP:81   spring.ldap.urls=http://IP:81  都提示url不对,
# 最后把默认81端口去掉才OK的spring.ldap.urls=ldap://IP
spring.ldap.urls=ldap://IP
spring.ldap.base= dc=lets,dc=com
spring.ldap.username= cn=lichunlan,ou=people,dc=lets,dc=com
spring.ldap.password=*******
server.port= 9999
4、Person.class
package com.example.ldap.entry;

import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Data;
import org.springframework.ldap.odm.annotations.Attribute;
import org.springframework.ldap.odm.annotations.DnAttribute;
import org.springframework.ldap.odm.annotations.Entry;
import org.springframework.ldap.odm.annotations.Id;

import javax.naming.Name;

/**
 * @author lichunlan
 * @description
 * @since 2020-01-20
 */
@Data
@Entry(objectClasses = {"inetOrgPerson","top"})

public class Person {
    /**
     * 唯一标识名
     */
    @Id
    @JsonIgnore
    private Name dn;

    /**
     * 常用名称
     */
    @Attribute(name="cn")
    private String cn;

    /**
     * 用户标识
     */
    @Attribute(name="uid")
    private String userName;

    /**
     * 邮箱
     */
    @Attribute(name="mail")
    private String mail;

    /**
     *真实名称
     */
    @Attribute(name="sn")
    private String sn;


    /**
     * 密码
     */
    @Attribute(name="userPassword")
    private String userPassword;

    /**
     * 组织
     */
    @DnAttribute("ou")
    private String ou;
    /**
     */
    @Attribute(name = "mobile")
    private String mobile;


    /**
     * 机构名称
     */
    @DnAttribute("ou")
    private String orgId;


    @Override
    public String toString() {
        return "Person{" +
                "dn=" + dn.toString() +
                ", cn='" + cn + '\'' +
                ", sn='" + sn + '\'' +
                ", userPassword='" + userPassword + '\'' +
                '}';
    }
}

5、LdapServices.class
package com.example.ldap.services;

import com.example.ldap.entry.Person;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.ldap.core.LdapTemplate;
import org.springframework.ldap.query.LdapQueryBuilder;
import org.springframework.stereotype.Service;

import java.util.List;

/**
 * @author lichunlan
 * @description
 * @since 2020-01-20
 */
@Service
public class LdapServices {
    @Autowired
    private LdapTemplate ldapTemplate;

    public List<Person> getAllPersonNames() {
        return ldapTemplate.findAll(Person.class);
    }


    public Person findByCn(String cn){
        return ldapTemplate.findOne(LdapQueryBuilder.query().where("cn").is(cn),Person.class);
    }


}

6、testController.class
package com.example.ldap.controller;

import com.example.ldap.entry.Person;
import com.example.ldap.services.LdapServices;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.*;

import java.util.List;

/**
 * @author lichunlan
 * @description
 * @since 2020-01-20
 */
@RestController
public class testController {
    @Autowired
    private LdapServices ldapServices;

    @RequestMapping(value = "/findOne",method = RequestMethod.GET)

    public Person findByCn(@RequestParam(name = "cn",required = true) String cn){
        return ldapServices.findByCn(cn);
    }

    @RequestMapping(value = "/findAllPersion",method = RequestMethod.GET)
    public List<Person> findAllPersion(){
        return ldapServices.getAllPersonNames();
    }
}

7、使用postMan进行接口测试
7.1、findOne(获取某个账号的信息)
image.png
7.2、findAllPersion(获取Ou下的所有信息)
image.png

因为我们的项目具体是只需要获取客户的所有人员信息,所有没有测试新增、编辑、删除这几个,有需求的人自行使用ldapTemplate中的一些方法即可
这里目前只有一个ou,实际项目中是会有多个ou的,所以年后开工的时候,我会把多个ou下的信息补齐,并进行验证。到时候再进行文档更新

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,558评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,002评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,036评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,024评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,144评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,255评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,295评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,068评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,478评论 1 305
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,789评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,965评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,649评论 4 336
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,267评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,982评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,800评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,847评论 2 351

推荐阅读更多精彩内容