From 29997d8980eb70038f678fa75c287946b909712a Mon Sep 17 00:00:00 2001 From: Mehdi Rahimi Date: Mon, 30 Dec 2024 11:45:55 +0330 Subject: [PATCH] Change deprecated FilterSecurityInterceptor to AuthorizationFilter with a link to authorization page. --- 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 db92de0b7c..ad143353b8 100644 --- a/docs/modules/ROOT/pages/servlet/architecture.adoc +++ b/docs/modules/ROOT/pages/servlet/architecture.adoc @@ -609,7 +609,7 @@ try { } ---- <1> As described in <>, invoking `FilterChain.doFilter(request, response)` is the equivalent of invoking the rest of the application. -This means that if another part of the application, (<> or method security) throws an `AuthenticationException` or `AccessDeniedException` it is caught and handled here. +This means that if another part of the application, (xref:servlet/authorization/authorize-http-requests.adoc[`AuthorizationFilter`] or method security) throws an `AuthenticationException` or `AccessDeniedException` it is caught and handled here. <2> If the user is not authenticated or it is an `AuthenticationException`, __Start Authentication__. <3> Otherwise, __Access Denied__