SpringBoot web Application as LDAP client

Viewed 23

My client required me to use his existed LDAP server. After browsing spring boot ldap authentication I found tons of articles which explain how to build an LDAP server like: https://spring.io/guides/gs/authenticating-ldap/ using

implementation("org.springframework.ldap:spring-ldap-core")
implementation("org.springframework.security:spring-security-ldap")
implementation("com.unboundid:unboundid-ldapsdk")

These dependencies add Spring Security and UnboundId, an open source LDAP server

but I need a client only. I don't wanna to establish an LDAP server due to my client's one

Please prompt me how can I use 3rd party LDAP server from my SpringBoot web Application?

0 Answers
Related