spring-boot-starter-ldap
时间: 2023-08-21 11:05:38 浏览: 163
The version number for the Spring Boot Starter LDAP can vary depending on the version of Spring Boot you are using. Here are a few examples:
- For Spring Boot 2.5.4, you can use version 2.5.4 of the Spring Boot Starter LDAP.
- For Spring Boot 2.4.10, you can use version 2.4.10 of the Spring Boot Starter LDAP.
- For Spring Boot 2.3.12, you can use version 2.3.12 of the Spring Boot Starter LDAP.
Please note that these version numbers are subject to change, so it's always a good idea to refer to the official documentation or Maven Central repository for the most up-to-date information on available versions.
相关问题
spring-boot-starter-data-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,***
spring-boot-starter-securityn和spring-security-core依赖包的区别
`spring-boot-starter-security`是Spring Boot中的一个starter,它是一个快速启动Spring Security的便捷方式。它会自动配置Spring Security的很多功能,比如基于内存的身份验证、基于表单的身份验证、基于OAuth2的身份验证等。
`spring-security-core`是Spring Security的核心模块,包含了Spring Security的核心代码和API。它提供了基于角色的访问控制、基于表单的身份验证、基于LDAP的身份验证、基于OpenID的身份验证等功能。在使用Spring Security时,需要引入该依赖。
简而言之,`spring-boot-starter-security`是一个Spring Boot starter,它依赖于`spring-security-core`。`spring-security-core`提供了Spring Security的核心功能,而`spring-boot-starter-security`则是使用Spring Security的快速启动方式。
阅读全文