Browse Source

Merge branch '6.2.x'

pull/14475/head
Marcus Hert Da Coregio 2 years ago
parent
commit
c2dc61007f
  1. 2
      CONTRIBUTING.adoc
  2. 2
      docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc
  3. 2
      docs/modules/ROOT/pages/servlet/authentication/session-management.adoc

2
CONTRIBUTING.adoc

@ -79,7 +79,7 @@ See https://github.com/spring-projects/spring-security/tree/main#building-from-s @@ -79,7 +79,7 @@ See https://github.com/spring-projects/spring-security/tree/main#building-from-s
The wiki pages https://github.com/spring-projects/spring-framework/wiki/Code-Style[Code Style] and https://github.com/spring-projects/spring-framework/wiki/IntelliJ-IDEA-Editor-Settings[IntelliJ IDEA Editor Settings] define the source file coding standards we use along with some IDEA editor settings we customize.
To format the code as well as check the style, run `./gradle format check`.
To format the code as well as check the style, run `./gradlew format check`.
[[submit-a-pull-request]]
=== Submit a Pull Request

2
docs/modules/ROOT/pages/servlet/authentication/passwords/ldap.adoc

@ -614,7 +614,7 @@ You need only supply the domain name and an LDAP URL that supplies the address o @@ -614,7 +614,7 @@ You need only supply the domain name and an LDAP URL that supplies the address o
[NOTE]
====
It is also possible to obtain the server's IP address byusing a DNS lookup.
It is also possible to obtain the server's IP address by using a DNS lookup.
This is not currently supported, but hopefully will be in a future version.
====

2
docs/modules/ROOT/pages/servlet/authentication/session-management.adoc

@ -788,7 +788,7 @@ Java:: @@ -788,7 +788,7 @@ Java::
@Bean
public SecurityFilterChain filterChain(HttpSecurity http) {
http
.sessionManagement((session) - session
.sessionManagement((session) -> session
.sessionFixation((sessionFixation) -> sessionFixation
.newSession()
)

Loading…
Cancel
Save