| 12345678910111213141516171819202122 | = LDAP SampleThis sample demonstrates how to connect to an LDAP server using bind authentication.[[usage]]To use the application, first run it:```bash./gradlew :servlet:spring-boot:java:ldap:bootRun```Then, request `/`, using the following credentials:```bashcurl --user user:password localhost:8080 && echo```You should see a response like:```bashHello, user!```
 |