ClientHttpConnectorBuilder
Interface used to build a fully configured ClientHttpConnector. Builders for Reactor, Jetty, Apache HTTP Components and JDK can be obtained using the factory methods on this interface. The of method may be used to instantiate based on the connector type.
Author
Phillip Webb
Since
3.5.0
Parameters
<T>
the ClientHttpConnector type
Functions
Link copied to clipboard
Build a default configured ClientHttpConnectorBuilder.
Build a fully configured ClientHttpConnector, applying the given
settings
if they are provided.Link copied to clipboard
Detect the most suitable ClientHttpConnectorBuilder based on the classpath.
Link copied to clipboard
Return a HttpComponentsClientHttpConnectorBuilder that can be used to build a HttpComponentsClientHttpConnector.
Link copied to clipboard
Return a JdkClientHttpConnectorBuilder that can be used to build a JdkClientHttpConnector .
Link copied to clipboard
Return a JettyClientHttpConnectorBuilder that can be used to build a JettyClientHttpConnector.
Link copied to clipboard
open fun <T : ClientHttpConnector?> of(clientHttpConnectorType: Class<T>): ClientHttpConnectorBuilder<T>
Return a new ClientHttpConnectorBuilder for the given
requestFactoryType
.Link copied to clipboard
Return a ReactorClientHttpConnectorBuilder that can be used to build a ReactorClientHttpConnector.
Link copied to clipboard
Return a new ClientHttpConnectorBuilder that applies the given customizer to the ClientHttpConnector after it has been built.
Link copied to clipboard
Return a new ClientHttpConnectorBuilder that applies the given customizers to the ClientHttpConnector after it has been built.