springboot ldap ssl
时间: 2023-08-15 15:11:49 浏览: 185
spring-boot-ldap-useradmin:使用 ldap 进行用户管理
要在Spring Boot中使用LDAP SSL(Secure Sockets Layer),你需要进行一些配置。
首先,确保你的LDAP服务器支持SSL连接。你需要获取LDAP服务器的SSL证书。
接下来,在Spring Boot应用程序的配置文件(如application.properties)中,添加以下属性:
```
spring.ldap.urls=ldaps://localhost:636
spring.ldap.base=dc=mycompany,***
阅读全文