Rob Winch 579791c063 org.springframework.boot:spring-boot-security-test 1 month ago
..
gradle 7dac99f157 Update to Gradle 8.14.3 2 months ago
src 46e48b826a Fix webflux and webmvc test 1 month ago
README.adoc c9ed471e8d Add LDAP Sample 4 years ago
build.gradle 579791c063 org.springframework.boot:spring-boot-security-test 1 month ago
gradle.properties 1f1bc84935 Update :servlet:spring-boot:java:ldap to 7 4 months ago
gradlew 3f8e2c204a Upgrade to Gradle 8.3 2 years ago
gradlew.bat 3f8e2c204a Upgrade to Gradle 8.3 2 years ago
settings.gradle 50ffc04d54 Make Projects Individually Runnable 1 year ago

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!
```