From e8436aa996afbc7497fb06e5c2622d29007e2b47 Mon Sep 17 00:00:00 2001 From: L33gn21 Date: Mon, 1 Dec 2025 04:47:13 +0900 Subject: [PATCH] Fix broken link to Spring Boot docs Signed-off-by: L33gn21 --- .../pages/servlet/authorization/authorize-http-requests.adoc | 2 +- docs/modules/ROOT/pages/servlet/getting-started.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc index a424da06294..a5e5639854e 100644 --- a/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc +++ b/docs/modules/ROOT/pages/servlet/authorization/authorize-http-requests.adoc @@ -639,7 +639,7 @@ This is because Spring Security requires all URIs to be absolute (minus the cont [TIP] ===== -There are several other components that create request matchers for you like {spring-boot-api-url}org/springframework/boot/autoconfigure/security/servlet/PathRequest.html[`PathRequest#toStaticResources#atCommonLocations`] +There are several other components that create request matchers for you like {spring-boot-api-url}org/springframework/boot/security/autoconfigure/web/servlet/PathRequest.html[`PathRequest#toStaticResources#atCommonLocations`] ===== [[match-by-custom]] diff --git a/docs/modules/ROOT/pages/servlet/getting-started.adoc b/docs/modules/ROOT/pages/servlet/getting-started.adoc index 4fecd048b17..a0896fd7fdf 100644 --- a/docs/modules/ROOT/pages/servlet/getting-started.adoc +++ b/docs/modules/ROOT/pages/servlet/getting-started.adoc @@ -118,7 +118,7 @@ The default arrangement of Spring Boot and Spring Security affords the following * Publishes xref:servlet/authentication/events.adoc[authentication success and failure events] It can be helpful to understand how Spring Boot is coordinating with Spring Security to achieve this. -Taking a look at {spring-boot-api-url}org/springframework/boot/autoconfigure/security/servlet/SecurityAutoConfiguration.html[Boot's security auto configuration], it does the following (simplified for illustration): +Taking a look at {spring-boot-api-url}org/springframework/boot/security/autoconfigure/SecurityAutoConfiguration.html[Boot's security auto configuration], it does the following (simplified for illustration): .Spring Boot Security Auto Configuration [source,java]