This website works better with JavaScript
Головна сторінка
Огляд
Довідка
Реєстрація
Увійти
github
/
spring-security-samples
дзеркало
https://github.com/spring-projects/spring-security-samples
Слідкувати
2
Зірка
0
Відгалуження
0
Файли
Проблеми
0
Wiki
Дерево:
da6fa7a565
Гілки
Теги
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
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!
```