From 8ab2800bde3aebe4c58c753f5e1e0da3db0041bc Mon Sep 17 00:00:00 2001 From: mgreene57005 Date: Sat, 8 Feb 2025 18:10:13 -0500 Subject: [PATCH] Fix ordering for security filter configuration Signed-off-by: Matthew Greene Signed-off-by: mgreene57005 --- docs/modules/ROOT/pages/servlet/architecture.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/modules/ROOT/pages/servlet/architecture.adoc b/docs/modules/ROOT/pages/servlet/architecture.adoc index ad143353b8c..8b1183064be 100644 --- a/docs/modules/ROOT/pages/servlet/architecture.adoc +++ b/docs/modules/ROOT/pages/servlet/architecture.adoc @@ -237,8 +237,8 @@ The above configuration will result in the following `Filter` ordering: |==== | Filter | Added by | xref:servlet/exploits/csrf.adoc[CsrfFilter] | `HttpSecurity#csrf` -| xref:servlet/authentication/passwords/form.adoc#servlet-authentication-form[UsernamePasswordAuthenticationFilter] | `HttpSecurity#formLogin` | xref:servlet/authentication/passwords/basic.adoc[BasicAuthenticationFilter] | `HttpSecurity#httpBasic` +| xref:servlet/authentication/passwords/form.adoc#servlet-authentication-form[UsernamePasswordAuthenticationFilter] | `HttpSecurity#formLogin` | xref:servlet/authorization/authorize-http-requests.adoc[AuthorizationFilter] | `HttpSecurity#authorizeHttpRequests` |====