This website works better with JavaScript
Home
Esplora
Aiuto
Registrati
Accedi
github
/
spring-security-samples
mirror da
https://github.com/spring-projects/spring-security-samples
Segui
2
Vota
0
Forka
0
File
Problemi
0
Wiki
Albero (Tree):
d065576ba6
Rami (Branch)
Tag
5.5.x
5.6.x
5.7.x
5.8.x
6.0.x
6.1.x
6.2.x
6.3.x
6.4.x
6.5.x
dependabot/gradle/6.1.x/io.spring.javaformat-0.0.43
dependabot/gradle/6.1.x/io.spring.javaformat-spring-javaformat-checkstyle-0.0.43
dependabot/gradle/6.1.x/org.springframework-spring-framework-bom-6.0.23
dependabot/gradle/6.2.x/io.spring.javaformat-0.0.43
dependabot/gradle/6.2.x/io.spring.javaformat-spring-javaformat-checkstyle-0.0.43
dependabot/gradle/6.2.x/org.springframework-spring-framework-bom-6.1.14
dependabot/gradle/6.2.x/org.springframework.boot-3.2.11
dependabot/gradle/6.2.x/org.springframework.data-spring-data-bom-2023.1.11
dependabot/gradle/main/io.spring.javaformat-0.0.43
dependabot/gradle/main/io.spring.javaformat-spring-javaformat-checkstyle-0.0.43
dependabot/gradle/main/org.springframework.data-spring-data-bom-2024.0.5
guides
main
5.5.0
spring-security...
/
servlet
/
spring-boot
/
java
/
ldap
Josh Cummings
1f1bc84935
Update :servlet:spring-boot:java:ldap to 7
1 mese fa
..
gradle
1ce2c14dba
Update to Gradle 8.10.2
10 mesi fa
src
c9ed471e8d
Add LDAP Sample
4 anni fa
README.adoc
c9ed471e8d
Add LDAP Sample
4 anni fa
build.gradle
0f17eb2862
Update to UnboundID 6.0.10
1 anno fa
gradle.properties
1f1bc84935
Update :servlet:spring-boot:java:ldap to 7
1 mese fa
gradlew
3f8e2c204a
Upgrade to Gradle 8.3
1 anno fa
gradlew.bat
3f8e2c204a
Upgrade to Gradle 8.3
1 anno fa
settings.gradle
50ffc04d54
Make Projects Individually Runnable
1 anno 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!
```