Skip to content

Commit c7b739e

Browse files
Fix broken link to jaspan article
Closes gh-14358
1 parent 32e8605 commit c7b739e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ If you have more than one in your application context, you need to specify which
5252

5353
[[remember-me-persistent-token]]
5454
== Persistent Token Approach
55-
This approach is based on the article https://web.archive.org/web/20180819014446/http://jaspan.com/improved_persistent_login_cookie_best_practice[http://jaspan.com/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.
55+
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.
5656
There is a discussion on this in the comments section of this article.].
57-
To use the this approach with namespace configuration, you would supply a datasource reference:
57+
To use this approach with namespace configuration, you would supply a datasource reference:
5858

5959
[source,xml]
6060
----

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

Lines changed: 2 additions & 2 deletions
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)