From 9fed1ac8c32d7200fe8b13039b4b1633a114c20d Mon Sep 17 00:00:00 2001 From: Rob Winch <362503+rwinch@users.noreply.github.com> Date: Mon, 9 Mar 2026 13:59:35 -0500 Subject: [PATCH] New line per sentence Signed-off-by: Rob Winch <362503+rwinch@users.noreply.github.com> --- .../ROOT/pages/servlet/authentication/session-management.adoc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc index 2d6aac85af..fe19b63ddf 100644 --- a/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc +++ b/docs/modules/ROOT/pages/servlet/authentication/session-management.adoc @@ -3,7 +3,8 @@ Once you have got an application that is xref:servlet/authentication/index.adoc[authenticating requests], it is important to consider how that resulting authentication will be persisted and restored on future requests. -This is done automatically by default. If you have a custom filter or controller that is setting the security context, you will need to use a `SecurityContextRepository` to persist it across requests. +This is done automatically by default. +If you have a custom filter or controller that is setting the security context, you will need to use a `SecurityContextRepository` to persist it across requests. If you are upgrading from an older version, you may be interested in the `requireExplicitSave` setting that preserves Spring Security 5's default, though note that this is primarily for migration purposes.