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

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