Record Class HttpClientSettings

java.lang.Object
java.lang.Record
org.springframework.boot.http.client.HttpClientSettings
Record Components:
cookieHandling - the cookie handling strategy to use or null to use the underlying library's default
redirects - the follow redirect strategy to use or null to redirect whenever the underlying library allows it
connectTimeout - the connect timeout
readTimeout - the read timeout
sslBundle - the SSL bundle providing SSL configuration
inetAddressFilter - the inetAddress filter used to filter out matching requests

public record HttpClientSettings(@Nullable HttpCookieHandling cookieHandling, @Nullable HttpRedirects redirects, @Nullable Duration connectTimeout, @Nullable Duration readTimeout, @Nullable SslBundle sslBundle, @Nullable InetAddressFilter inetAddressFilter) extends Record
Settings that can be applied when creating an imperative or reactive HTTP client.
Since:
3.5.0
Author:
Phillip Webb