mirror of
https://github.com/spring-projects/spring-security.git
synced 2025-05-31 01:02:14 +00:00
Polish Resource Server Multi-tenancy Docs
Issue gh-7532
This commit is contained in:
parent
933104d2d6
commit
8872d8b7d0
@ -1604,8 +1604,7 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
|
||||
OpaqueTokenAuthenticationProvider opaqueToken = opaqueToken();
|
||||
|
||||
return request -> {
|
||||
String token = bearerToken.resolve(request);
|
||||
if (isAJwt(token)) {
|
||||
if (useJwt(request)) {
|
||||
return jwt::authenticate;
|
||||
} else {
|
||||
return opaqueToken::authenticate;
|
||||
@ -1614,6 +1613,8 @@ AuthenticationManagerResolver<HttpServletRequest> tokenAuthenticationManagerReso
|
||||
}
|
||||
----
|
||||
|
||||
NOTE: The implementation of `useJwt(HttpServletRequest)` will likely depend on custom request material like the path.
|
||||
|
||||
And then specify this `AuthenticationManagerResolver` in the DSL:
|
||||
|
||||
.Authentication Manager Resolver
|
||||
|
Loading…
x
Reference in New Issue
Block a user