Class JdkHttpClientBuilder
java.lang.Object
org.springframework.boot.http.client.JdkHttpClientBuilder
Builder that can be used to create a JDK
HttpClient
.- Since:
- 3.5.0
- Author:
- Phillip Webb, Andy Wilkinson, Scott Frederick
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionbuild
(HttpClientSettings settings) Build a newHttpClient
instance with the given settings applied.withCustomizer
(Consumer<HttpClient.Builder> customizer) Return a newJdkHttpClientBuilder
that applies additional customization to the underlyingHttpClient.Builder
.
-
Constructor Details
-
JdkHttpClientBuilder
public JdkHttpClientBuilder()
-
-
Method Details
-
withCustomizer
Return a newJdkHttpClientBuilder
that applies additional customization to the underlyingHttpClient.Builder
.- Parameters:
customizer
- the customizer to apply- Returns:
- a new
JdkHttpClientBuilder
instance
-
build
Build a newHttpClient
instance with the given settings applied.- Parameters:
settings
- the settings to apply- Returns:
- a new
HttpClient
instance
-