Class ServletBearerExchangeFilterFunction
java.lang.Object
org.springframework.security.oauth2.server.resource.web.reactive.function.client.ServletBearerExchangeFilterFunction
- All Implemented Interfaces:
org.springframework.web.reactive.function.client.ExchangeFilterFunction
public final class ServletBearerExchangeFilterFunction
extends Object
implements org.springframework.web.reactive.function.client.ExchangeFilterFunction
An
ExchangeFilterFunction that adds the
Bearer
Token from an existing OAuth2Token tied to the current
Authentication.
Suitable for Servlet applications, applying it to a typical
WebClient configuration:
@Bean
WebClient webClient() {
ServletBearerExchangeFilterFunction bearer = new ServletBearerExchangeFilterFunction();
return WebClient.builder()
.filter(bearer).build();
}
To locate the bearer token, this looks in the Reactor Context for a key of type
Authentication.- Since:
- 5.2
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<org.springframework.web.reactive.function.client.ClientResponse>filter(org.springframework.web.reactive.function.client.ClientRequest request, org.springframework.web.reactive.function.client.ExchangeFunction next) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.springframework.web.reactive.function.client.ExchangeFilterFunction
andThen, apply
-
Constructor Details
-
ServletBearerExchangeFilterFunction
public ServletBearerExchangeFilterFunction()
-
-
Method Details
-
filter
public reactor.core.publisher.Mono<org.springframework.web.reactive.function.client.ClientResponse> filter(org.springframework.web.reactive.function.client.ClientRequest request, org.springframework.web.reactive.function.client.ExchangeFunction next) - Specified by:
filterin interfaceorg.springframework.web.reactive.function.client.ExchangeFilterFunction
-