Skip to content

Commit

Permalink
Correct Documentation
Browse files Browse the repository at this point in the history
Correct Documentation

Corrected a mistake in the documentation related to RequestCacheAwareFilter

Closes spring-projectsgh-14855
  • Loading branch information
angel-gruevski committed Apr 22, 2024
1 parent fe836fe commit 1f57275
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/modules/ROOT/pages/servlet/architecture.adoc
Expand Up @@ -449,7 +449,7 @@ In Spring Security this is done by saving the `HttpServletRequest` using a <<req

The `HttpServletRequest` is saved in the {security-api-url}org/springframework/security/web/savedrequest/RequestCache.html[`RequestCache`].
When the user successfully authenticates, the `RequestCache` is used to replay the original request.
The `RequestCacheAwareFilter` uses the `RequestCache` to get the saved `HttpServletRequest` after the user authenticates, while the `ExceptionTranslationFilter` uses the `RequestCache` to save the `HttpServletRequest` after it detects `AuthenticationException`, before redirecting the user to the login endpoint.
The <<requestcacheawarefilter,`RequestCacheAwareFilter`>> uses the `RequestCache` to get the saved `HttpServletRequest` after the user authenticates, while the `ExceptionTranslationFilter` uses the `RequestCache` to save the `HttpServletRequest` after it detects `AuthenticationException`, before redirecting the user to the login endpoint.

By default, an `HttpSessionRequestCache` is used.
The code below demonstrates how to customize the `RequestCache` implementation that is used to check the `HttpSession` for a saved request if the parameter named `continue` is present.
Expand Down

0 comments on commit 1f57275

Please sign in to comment.