spring-boot-starter-data-ldap 如何进行增删改查操作
时间: 2023-07-30 14:04:54 浏览: 302
Spring Boot 连接LDAP的方法
在Spring Boot中使用spring-boot-starter-data-ldap进行增删改查操作需要遵循以下步骤:
1. 添加依赖:在您的Spring Boot项目的pom.xml文件中,添加spring-boot-starter-data-ldap依赖。
```xml
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-data-ldap</artifactId>
</dependency>
```
2. 配置LDAP连接:在您的项目配置文件(application.properties或application.yml)中,添加LDAP连接相关的配置。
对于application.properties:
```properties
spring.ldap.urls=ldap://localhost:389
spring.ldap.base=dc=example,***
阅读全文