1
0
mirror of synced 2026-09-12 12:15:13 +00:00

Update Reactor's Context reference link

Signed-off-by: Tran Ngoc Nhan <ngocnhan.tran1996@gmail.com>
This commit is contained in:
Tran Ngoc Nhan
2026-09-05 18:11:04 +07:00
committed by Josh Cummings
parent 6b007529bb
commit c4a46d100e
2 changed files with 2 additions and 2 deletions
@@ -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]
@@ -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]]