Class JettyHttpClientBuilder
java.lang.Object
org.springframework.boot.http.client.JettyHttpClientBuilder
Builder that can be used to create a Jetty
HttpClient
.- Since:
- 3.5.0
- Author:
- Phillip Webb, Andy Wilkinson, Scott Frederick
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionorg.eclipse.jetty.client.HttpClient
build
(HttpClientSettings settings) Build a newHttpClient
instance with the given settings applied.withClientConnectorCustomizerCustomizer
(Consumer<org.eclipse.jetty.io.ClientConnector> clientConnectorCustomizerCustomizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingClientConnector
.withCustomizer
(Consumer<org.eclipse.jetty.client.HttpClient> customizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingHttpClient
.withHttpClientTransportCustomizer
(Consumer<org.eclipse.jetty.client.HttpClientTransport> httpClientTransportCustomizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingHttpClientTransport
.
-
Constructor Details
-
JettyHttpClientBuilder
public JettyHttpClientBuilder()
-
-
Method Details
-
withCustomizer
public JettyHttpClientBuilder withCustomizer(Consumer<org.eclipse.jetty.client.HttpClient> customizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingHttpClient
.- Parameters:
customizer
- the customizer to apply- Returns:
- a new
JettyClientHttpRequestFactoryBuilder
instance
-
withHttpClientTransportCustomizer
public JettyHttpClientBuilder withHttpClientTransportCustomizer(Consumer<org.eclipse.jetty.client.HttpClientTransport> httpClientTransportCustomizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingHttpClientTransport
.- Parameters:
httpClientTransportCustomizer
- the customizer to apply- Returns:
- a new
JettyClientHttpRequestFactoryBuilder
instance
-
withClientConnectorCustomizerCustomizer
public JettyHttpClientBuilder withClientConnectorCustomizerCustomizer(Consumer<org.eclipse.jetty.io.ClientConnector> clientConnectorCustomizerCustomizer) Return a newJettyClientHttpRequestFactoryBuilder
that applies additional customization to the underlyingClientConnector
.- Parameters:
clientConnectorCustomizerCustomizer
- the customizer to apply- Returns:
- a new
JettyClientHttpRequestFactoryBuilder
instance
-
build
Build a newHttpClient
instance with the given settings applied.- Parameters:
settings
- the settings to apply- Returns:
- a new
HttpClient
instance
-