Eleftheria Stein 2ddf0a2fa9 Update LDAP samples to use LdapBindAuthenticationManagerFactory 3 лет назад
..
gradle 5097f9dcfc Update to Gradle 7.2 3 лет назад
src 2ddf0a2fa9 Update LDAP samples to use LdapBindAuthenticationManagerFactory 3 лет назад
README.adoc c9ed471e8d Add LDAP Sample 4 лет назад
build.gradle 73fbaa9950 Add milestone repository 3 лет назад
gradle.properties 08166219c7 Use Spring Security 5.7.0-SNAPSHOT 3 лет назад
gradlew c9ed471e8d Add LDAP Sample 4 лет назад
gradlew.bat c9ed471e8d Add LDAP Sample 4 лет назад
settings.gradle c9ed471e8d Add LDAP Sample 4 лет назад

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