README.adoc 384 B

12345678910111213141516171819202122
  1. = LDAP Sample
  2. This sample demonstrates how to connect to an LDAP server using bind authentication.
  3. [[usage]]
  4. To use the application, first run it:
  5. ```bash
  6. ./gradlew :servlet:spring-boot:java:ldap:bootRun
  7. ```
  8. Then, request `/`, using the following credentials:
  9. ```bash
  10. curl --user user:password localhost:8080 && echo
  11. ```
  12. You should see a response like:
  13. ```bash
  14. Hello, user!
  15. ```