Eleftheria Stein 2b7ce67ff5 Update samples to Spring Boot 3.0.0-SNAPSHOT il y a 3 ans
..
gradle a43cbcab41 Upgrade to Gradle 7.3 il y a 3 ans
src c9ed471e8d Add LDAP Sample il y a 4 ans
README.adoc c9ed471e8d Add LDAP Sample il y a 4 ans
build.gradle 2b7ce67ff5 Update samples to Spring Boot 3.0.0-SNAPSHOT il y a 3 ans
gradle.properties bce2126fd1 Update samples to use Spring Security 6 il y a 3 ans
gradlew c9ed471e8d Add LDAP Sample il y a 4 ans
gradlew.bat c9ed471e8d Add LDAP Sample il y a 4 ans
settings.gradle c9ed471e8d Add LDAP Sample il y a 4 ans

README.adoc

= LDAP Sample

This 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:

```bash
curl --user user:password localhost:8080 && echo
```

You should see a response like:

```bash
Hello, user!
```