Skip to content

Commit 47ad405

Browse files
Merge branch '5.8.x' into 6.2.x
Closes gh-15148
2 parents bd72741 + c7b739e commit 47ad405

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -50,9 +50,9 @@ If you have more than one in your application context, you need to specify which
5050

5151
[[remember-me-persistent-token]]
5252
== Persistent Token Approach
53-
This approach is based on the article titled http://jaspan.com/improved_persistent_login_cookie_best_practice[http://jaspan.com/improved_persistent_login_cookie_best_practice], with some minor modifications. (Essentially, the username is not included in the cookie, to prevent exposing a valid login name unecessarily.
54-
There is a discussion on this in the comments section of this article.)
55-
To use the this approach with namespace configuration, supply a datasource reference:
53+
This approach is based on the article https://web.archive.org/web/20180819014446/http://jaspan.com/improved_persistent_login_cookie_best_practice[Improved Persistent Login Cookie Best Practice] with some minor modifications footnote:[Essentially, the username is not included in the cookie, to prevent exposing a valid login name unecessarily.
54+
There is a discussion on this in the comments section of this article.].
55+
To use this approach with namespace configuration, you would supply a datasource reference:
5656

5757
[source,xml]
5858
----

web/src/main/java/org/springframework/security/web/authentication/rememberme/PersistentTokenBasedRememberMeServices.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@
3232
import org.springframework.util.Assert;
3333

3434
/**
35-
* {@link RememberMeServices} implementation based on Barry Jaspan's
36-
* <a href="http://jaspan.com/improved_persistent_login_cookie_best_practice">Improved
35+
* {@link RememberMeServices} implementation based on Barry Jaspan's <a href=
36+
* "https://web.archive.org/web/20180819014446/http://jaspan.com/improved_persistent_login_cookie_best_practice">Improved
3737
* Persistent Login Cookie Best Practice</a>.
3838
*
3939
* There is a slight modification to the described approach, in that the username is not

0 commit comments

Comments
 (0)