Class HttpComponentsClientHttpConnectorBuilder
java.lang.Object
org.springframework.boot.http.client.reactive.HttpComponentsClientHttpConnectorBuilder
- All Implemented Interfaces:
ClientHttpConnectorBuilder<HttpComponentsClientHttpConnector>
Builder for
ClientHttpConnectorBuilder.httpComponents()
.- Since:
- 3.5.0
- Author:
- Phillip Webb
-
Method Summary
Modifier and TypeMethodDescriptionprotected final HttpClientSettings
build
(ClientHttpConnectorSettings settings) Build a fully configuredClientHttpConnector
, applying the givensettings
if they are provided.protected HttpComponentsClientHttpConnector
protected final List<Consumer<HttpComponentsClientHttpConnector>>
protected final List<Consumer<HttpComponentsClientHttpConnector>>
mergedCustomizers
(Collection<Consumer<HttpComponentsClientHttpConnector>> customizers) protected final List<Consumer<HttpComponentsClientHttpConnector>>
mergedCustomizers
(Consumer<HttpComponentsClientHttpConnector> customizer) withConnectionConfigCustomizer
(Consumer<org.apache.hc.client5.http.config.ConnectionConfig.Builder> connectionConfigCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingConnectionConfig.Builder
.withConnectionManagerCustomizer
(Consumer<org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManagerBuilder> connectionManagerCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingPoolingAsyncClientConnectionManagerBuilder
.withDefaultRequestConfigCustomizer
(Consumer<org.apache.hc.client5.http.config.RequestConfig.Builder> defaultRequestConfigCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingRequestConfig.Builder
used for default requests.withHttpClientCustomizer
(Consumer<org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder> httpClientCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingHttpAsyncClientBuilder
.withTlsSocketStrategyFactory
(Function<SslBundle, org.apache.hc.core5.http.nio.ssl.TlsStrategy> tlsStrategyFactory) Return a newHttpComponentsClientHttpConnectorBuilder
with a replacementTlsStrategy
factory.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.boot.http.client.reactive.ClientHttpConnectorBuilder
build, withCustomizer, withCustomizers
-
Method Details
-
withHttpClientCustomizer
public HttpComponentsClientHttpConnectorBuilder withHttpClientCustomizer(Consumer<org.apache.hc.client5.http.impl.async.HttpAsyncClientBuilder> httpClientCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingHttpAsyncClientBuilder
.- Parameters:
httpClientCustomizer
- the customizer to apply- Returns:
- a new
HttpComponentsHttpAsyncClientBuilder
instance
-
withConnectionManagerCustomizer
public HttpComponentsClientHttpConnectorBuilder withConnectionManagerCustomizer(Consumer<org.apache.hc.client5.http.impl.nio.PoolingAsyncClientConnectionManagerBuilder> connectionManagerCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingPoolingAsyncClientConnectionManagerBuilder
.- Parameters:
connectionManagerCustomizer
- the customizer to apply- Returns:
- a new
HttpComponentsClientHttpConnectorBuilder
instance
-
withConnectionConfigCustomizer
public HttpComponentsClientHttpConnectorBuilder withConnectionConfigCustomizer(Consumer<org.apache.hc.client5.http.config.ConnectionConfig.Builder> connectionConfigCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingConnectionConfig.Builder
.- Parameters:
connectionConfigCustomizer
- the customizer to apply- Returns:
- a new
HttpComponentsClientHttpConnectorBuilder
instance
-
withTlsSocketStrategyFactory
public HttpComponentsClientHttpConnectorBuilder withTlsSocketStrategyFactory(Function<SslBundle, org.apache.hc.core5.http.nio.ssl.TlsStrategy> tlsStrategyFactory) Return a newHttpComponentsClientHttpConnectorBuilder
with a replacementTlsStrategy
factory.- Parameters:
tlsStrategyFactory
- the new factory used to create aTlsStrategy
for a givenSslBundle
- Returns:
- a new
HttpComponentsClientHttpConnectorBuilder
instance
-
withDefaultRequestConfigCustomizer
public HttpComponentsClientHttpConnectorBuilder withDefaultRequestConfigCustomizer(Consumer<org.apache.hc.client5.http.config.RequestConfig.Builder> defaultRequestConfigCustomizer) Return a newHttpComponentsClientHttpConnectorBuilder
that applies additional customization to the underlyingRequestConfig.Builder
used for default requests.- Parameters:
defaultRequestConfigCustomizer
- the customizer to apply- Returns:
- a new
HttpComponentsClientHttpConnectorBuilder
instance
-
createClientHttpConnector
protected HttpComponentsClientHttpConnector createClientHttpConnector(ClientHttpConnectorSettings settings) -
getCustomizers
-
mergedCustomizers
protected final List<Consumer<HttpComponentsClientHttpConnector>> mergedCustomizers(Consumer<HttpComponentsClientHttpConnector> customizer) -
mergedCustomizers
protected final List<Consumer<HttpComponentsClientHttpConnector>> mergedCustomizers(Collection<Consumer<HttpComponentsClientHttpConnector>> customizers) -
build
Description copied from interface:ClientHttpConnectorBuilder
Build a fully configuredClientHttpConnector
, applying the givensettings
if they are provided.- Specified by:
build
in interfaceClientHttpConnectorBuilder<T extends ClientHttpConnector>
- Parameters:
settings
- the settings to apply ornull
- Returns:
- a fully configured
ClientHttpConnector
.
-
asHttpClientSettings
-