本文主要研究一下spring 5的WebClient對reactor-netty的HttpClient的封裝java
spring-webflux-5.0.2.RELEASE-sources.jar!/org/springframework/web/reactive/function/client/DefaultWebClientBuilder.javareact
@Override public WebClient build() { ExchangeFunction exchange = initExchangeFunction(); ExchangeFunction filteredExchange = (this.filters != null ? this.filters.stream() .reduce(ExchangeFilterFunction::andThen) .map(filter -> filter.apply(exchange)) .orElse(exchange) : exchange); return new DefaultWebClient(filteredExchange, initUriBuilderFactory(), unmodifiableCopy(this.defaultHeaders), unmodifiableCopy(this.defaultCookies), new DefaultWebClientBuilder(this)); }
這裏的build調用了initExchangeFunction方法
private ExchangeFunction initExchangeFunction() { if (this.exchangeFunction != null) { return this.exchangeFunction; } else if (this.connector != null) { return ExchangeFunctions.create(this.connector, this.exchangeStrategies); } else { return ExchangeFunctions.create(new ReactorClientHttpConnector(), this.exchangeStrategies); } }
這裏new了一個ReactorClientHttpConnector
spring-web-5.0.2.RELEASE-sources.jar!/org/springframework/http/client/reactive/ReactorClientHttpConnector.javaweb
/** * Create a Reactor Netty {@link ClientHttpConnector} * with default {@link ClientOptions} and HTTP compression support enabled. */ public ReactorClientHttpConnector() { this.httpClient = HttpClient.builder() .options(options -> options.compression(true)) .build(); }
能夠看到這個構造器使用了reactor/ipc/netty/http/client/HttpClient
spring-webflux-5.0.2.RELEASE-sources.jar!/org/springframework/web/reactive/function/client/DefaultWebClient.javaspring
@Override public RequestHeadersUriSpec<?> get() { return methodInternal(HttpMethod.GET); } @Override public RequestHeadersUriSpec<?> head() { return methodInternal(HttpMethod.HEAD); } @Override public RequestBodyUriSpec post() { return methodInternal(HttpMethod.POST); } @Override public RequestBodyUriSpec put() { return methodInternal(HttpMethod.PUT); } @Override public RequestBodyUriSpec patch() { return methodInternal(HttpMethod.PATCH); } @Override public RequestHeadersUriSpec<?> delete() { return methodInternal(HttpMethod.DELETE); } @Override public RequestHeadersUriSpec<?> options() { return methodInternal(HttpMethod.OPTIONS); } @Override public RequestBodyUriSpec method(HttpMethod httpMethod) { return methodInternal(httpMethod); } @SuppressWarnings("unchecked") private RequestBodyUriSpec methodInternal(HttpMethod httpMethod) { return new DefaultRequestBodyUriSpec(httpMethod); }
DefaultWebClient主要對GET、HEAD、POST、PUT、PATCH、DELETE、OPTIONS方法封裝返回RequestHeadersUriSpec或者RequestBodyUriSpec
@Override public Mono<ClientResponse> exchange() { ClientRequest request = (this.inserter != null ? initRequestBuilder().body(this.inserter).build() : initRequestBuilder().build()); return exchangeFunction.exchange(request).switchIfEmpty(NO_HTTP_CLIENT_RESPONSE_ERROR); }
最後在exchange方法裏頭封裝了對exchangeFunction的調用,這裏的switchIfEmpty返回的是reactor.core.publisher.MonoSwitchIfEmpty<ClientResponse>
spring-webflux-5.0.2.RELEASE-sources.jar!/org/springframework/web/reactive/function/client/ExchangeFunctions.javaapp
public Mono<ClientResponse> exchange(ClientRequest request) { Assert.notNull(request, "'request' must not be null"); return this.connector .connect(request.method(), request.url(), clientHttpRequest -> request.writeTo(clientHttpRequest, this.strategies)) .log("org.springframework.web.reactive.function.client", Level.FINE) .map(clientHttpResponse -> new DefaultClientResponse(clientHttpResponse, this.strategies)); }
這裏調用了ReactorClientHttpConnector的connect方法
spring-web-5.0.2.RELEASE-sources.jar!/org/springframework/http/client/reactive/ReactorClientHttpConnector.javaide
public Mono<ClientHttpResponse> connect(HttpMethod method, URI uri, Function<? super ClientHttpRequest, Mono<Void>> requestCallback) { if (!uri.isAbsolute()) { return Mono.error(new IllegalArgumentException("URI is not absolute: " + uri)); } return this.httpClient .request(adaptHttpMethod(method), uri.toString(), request -> requestCallback.apply(adaptRequest(method, uri, request))) .map(this::adaptResponse); }
connect方法最後調用的reactor-netty的HttpClient的request方法。
spring 5的webflux部分主要基於reactor項目來的,WebClient也是基於reactor-netty來實現,主要是封裝了一些UriSpec及其餘便利方法。post
接口見spring-webflux-5.0.2.RELEASE-sources.jar!/org/springframework/web/reactive/function/client/WebClient.java