Skip to content

Commit b4b4cd0

Browse files
Merge branch '5.8.x' into 6.0.x
Closes gh-12941
2 parents 20358e7 + eb58655 commit b4b4cd0

File tree

3 files changed

+40
-6
lines changed

3 files changed

+40
-6
lines changed

docs/modules/ROOT/pages/migration/servlet/session-management.adoc

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,14 @@ In Spring Security 6, the default behavior is that the xref:servlet/authenticati
1313
Users now must explicitly save the `SecurityContext` with the `SecurityContextRepository` if they want the `SecurityContext` to persist between requests.
1414
This removes ambiguity and improves performance by only requiring writing to the `SecurityContextRepository` (i.e. `HttpSession`) when it is necessary.
1515

16+
[NOTE]
17+
====
18+
Saving the context is also needed when clearing it out, for example during logout. Refer to this section to xref:servlet/authentication/session-management.adoc#properly-clearing-authentication[know more about that].
19+
====
20+
1621
If you are explicitly opting into Spring Security 6's new defaults, the following configuration can be removed to accept the Spring Security 6 defaults.
1722

23+
1824
include::partial$servlet/architecture/security-context-explicit.adoc[]
1925

2026
== Multiple SecurityContextRepository

docs/modules/ROOT/pages/servlet/authentication/logout.adoc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ If not configured, a status code 200 is returned by default.
141141
[[jc-logout-references]]
142142
== Further Logout-Related References
143143

144+
- xref:servlet/authentication/session-management.adoc#properly-clearing-authentication[Properly Clearing Authentication When Explicit Save Is Enabled]
144145
- <<ns-logout, Logout Handling>>
145146
- xref:servlet/test/mockmvc/logout.adoc#test-logout[Testing Logout]
146147
- xref:servlet/integrations/servlet-api.adoc#servletapi-logout[`HttpServletRequest.logout()`]

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

Lines changed: 33 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ But before you leave, consider if any of these use cases fit your application:
1212
* I want to <<understanding-session-management-components,Understand Session Management's components>>
1313
* I want to <<ns-concurrent-sessions,restrict the number of times>> a user can be logged in concurrently
1414
* I want <<store-authentication-manually,to store the authentication directly>> myself instead of Spring Security doing it for me
15+
* I am storing the authentication manually and I want <<properly-clearing-authentication,to remove it>>
1516
* I am using <<the-sessionmanagementfilter, `SessionManagementFilter`>> and I need <<moving-away-from-sessionmanagementfilter,guidance on moving away from that>>
1617
* I want to store the authentication <<customizing-where-authentication-is-stored,in something other than the session>>
1718
* I am using a <<stateless-authentication, stateless authentication>>, but <<storing-stateless-authentication-in-the-session,I'd still like to store it in the session>>
@@ -84,12 +85,6 @@ By default, Spring Security stores the security context for you in the HTTP sess
8485

8586
First, you need to create an implementation of `SecurityContextRepository` or use an existing implementation like `HttpSessionSecurityContextRepository`, then you can set it in `HttpSecurity`.
8687

87-
[NOTE]
88-
====
89-
The above configuration sets the `SecurityContextRepository` on the `SecurityContextHolderFilter` and **participating** authentication filters, like `UsernamePasswordAuthenticationFilter`.
90-
To also set it in stateless filters, please see <<storing-stateless-authentication-in-the-session,how to customize the `SecurityContextRepository` for Stateless Authentication>>.
91-
====
92-
9388
[[customizing-the-securitycontextrepository]]
9489
.Customizing the `SecurityContextRepository`
9590
====
@@ -134,6 +129,12 @@ open fun filterChain(http: HttpSecurity): SecurityFilterChain {
134129
----
135130
====
136131

132+
[NOTE]
133+
====
134+
The above configuration sets the `SecurityContextRepository` on the `SecurityContextHolderFilter` and **participating** authentication filters, like `UsernamePasswordAuthenticationFilter`.
135+
To also set it in stateless filters, please see <<storing-stateless-authentication-in-the-session,how to customize the `SecurityContextRepository` for Stateless Authentication>>.
136+
====
137+
137138
If you are using a custom authentication mechanism, you might want to <<store-authentication-manually,store the `Authentication` by yourself>>.
138139

139140
[[store-authentication-manually]]
@@ -181,6 +182,32 @@ class LoginRequest {
181182
And that's it.
182183
If you are not sure what `securityContextHolderStrategy` is in the above example, you can read more about it in the <<use-securitycontextholderstrategy, Using `SecurityContextStrategy` section>>.
183184

185+
[[properly-clearing-authentication]]
186+
=== Properly Clearing an Authentication
187+
188+
If you are using Spring Security's xref:servlet/authentication/logout.adoc[Logout Support] then it handles a lot of stuff for you including clearing and saving the context.
189+
But, let's say you need to manually log users out of your app. In that case, you'll need to make sure you're clearing and saving the context properly.
190+
191+
Now, you might already be familiar with clearing the `SecurityContextHolder` by doing `SecurityContextHolderStrategy#clearContext()`.
192+
That's great, but if your app requires an xref:migration/servlet/session-management.adoc#_require_explicit_saving_of_securitycontextrepository[explicit save of the context], simply clearing it isn't enough.
193+
The reason is that it doesn't remove it from the `SecurityContextRepository`, which means the `SecurityContext` could still be available for the next requests, and we definitely don't want that.
194+
195+
To make sure the authentication is properly cleared and saved, you can invoke {security-api-url}/org/springframework/security/web/authentication/logout/SecurityContextLogoutHandler.html[the `SecurityContextLogoutHandler`] which does that for us, like so:
196+
197+
====
198+
.Java
199+
[source,java,role="primary"]
200+
----
201+
SecurityContextLogoutHandler handler = new SecurityContextLogoutHandler(); <1>
202+
handler.logout(httpServletRequest, httpServletResponse, null); <2>
203+
----
204+
====
205+
206+
<1> Create a new instance of `SecurityContextLogoutHandler`
207+
<2> Call the `logout` method passing in the `HttpServletRequest`, `HttpServletResponse` and a `null` authentication because it is not required for this handler.
208+
209+
It's important to remember that clearing and saving the context is just one piece of the logout process, therefore we recommend having Spring Security take care of it.
210+
184211
[[stateless-authentication]]
185212
=== Configuring Persistence for Stateless Authentication
186213

0 commit comments

Comments
 (0)