From c4a46d100e51d0e0f9e37d822a06cfd2575de332 Mon Sep 17 00:00:00 2001 From: Tran Ngoc Nhan Date: Sat, 5 Sep 2026 18:11:04 +0700 Subject: [PATCH] Update Reactor's Context reference link Signed-off-by: Tran Ngoc Nhan --- docs/modules/ROOT/pages/reactive/authorization/method.adoc | 2 +- .../ROOT/pages/reactive/oauth2/client/authorization-grants.adoc | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/modules/ROOT/pages/reactive/authorization/method.adoc b/docs/modules/ROOT/pages/reactive/authorization/method.adoc index 27b4e45c13..bfb6f9daf8 100644 --- a/docs/modules/ROOT/pages/reactive/authorization/method.adoc +++ b/docs/modules/ROOT/pages/reactive/authorization/method.adoc @@ -1,7 +1,7 @@ [[jc-erms]] = EnableReactiveMethodSecurity -Spring Security supports method security by using https://projectreactor.io/docs/core/release/reference/#context[Reactor's Context], which is set up by `ReactiveSecurityContextHolder`. +Spring Security supports method security by using https://projectreactor.io/docs/core/release/reference/advancedFeatures/context.html[Reactor's Context], which is set up by `ReactiveSecurityContextHolder`. The following example shows how to retrieve the currently logged in user's message: [NOTE] diff --git a/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc b/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc index 703c8ba4bd..afa26d7584 100644 --- a/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc +++ b/docs/modules/ROOT/pages/reactive/oauth2/client/authorization-grants.adoc @@ -695,7 +695,7 @@ class OAuth2ClientController { [NOTE] ==== `ServerWebExchange` is an OPTIONAL attribute. -If not provided, it will be obtained from the https://projectreactor.io/docs/core/release/reference/#context[Reactor's Context] via the key `ServerWebExchange.class`. +If not provided, it will be obtained from the https://projectreactor.io/docs/core/release/reference/advancedFeatures/context.html[Reactor's Context] via the key `ServerWebExchange.class`. ==== [[oauth2-client-jwt-bearer]]