Uses of Record Class
org.springframework.boot.web.client.ClientHttpRequestFactorySettings
Packages that use ClientHttpRequestFactorySettings
Package
Description
Web client test utilities.
Web client utilities.
-
Uses of ClientHttpRequestFactorySettings in org.springframework.boot.test.web.client
Constructors in org.springframework.boot.test.web.client with parameters of type ClientHttpRequestFactorySettingsModifierConstructorDescriptionCustomHttpComponentsClientHttpRequestFactory(TestRestTemplate.HttpClientOption[] httpClientOptions, ClientHttpRequestFactorySettings settings) Deprecated, for removal: This API element is subject to removal in a future version. -
Uses of ClientHttpRequestFactorySettings in org.springframework.boot.web.client
Fields in org.springframework.boot.web.client declared as ClientHttpRequestFactorySettingsModifier and TypeFieldDescriptionstatic final ClientHttpRequestFactorySettingsClientHttpRequestFactorySettings.DEFAULTSDeprecated, for removal: This API element is subject to removal in a future version.Use defaults for theClientHttpRequestFactorywhich can differ depending on the implementation.Methods in org.springframework.boot.web.client that return ClientHttpRequestFactorySettingsModifier and TypeMethodDescriptionClientHttpRequestFactorySettings.withConnectTimeout(Duration connectTimeout) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated connect timeout setting.ClientHttpRequestFactorySettings.withReadTimeout(Duration readTimeout) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated read timeout setting.ClientHttpRequestFactorySettings.withSslBundle(SslBundle sslBundle) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactorySettingsinstance with an updated SSL bundle setting.Methods in org.springframework.boot.web.client with parameters of type ClientHttpRequestFactorySettingsModifier and TypeMethodDescriptionstatic <T extends ClientHttpRequestFactory>
TClientHttpRequestFactories.get(Class<T> requestFactoryType, ClientHttpRequestFactorySettings settings) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactoryof the givenrequestFactoryType, applyingClientHttpRequestFactorySettingsusing reflection if necessary.static <T extends ClientHttpRequestFactory>
TClientHttpRequestFactories.get(Supplier<T> requestFactorySupplier, ClientHttpRequestFactorySettings settings) Deprecated, for removal: This API element is subject to removal in a future version.Return a newClientHttpRequestFactoryfrom the given supplier, applyingClientHttpRequestFactorySettingsusing reflection.static ClientHttpRequestFactoryClientHttpRequestFactories.get(ClientHttpRequestFactorySettings settings) Deprecated, for removal: This API element is subject to removal in a future version.Return aClientHttpRequestFactoryimplementation with the givensettingsapplied.Method parameters in org.springframework.boot.web.client with type arguments of type ClientHttpRequestFactorySettingsModifier and TypeMethodDescriptionRestTemplateBuilder.requestFactory(Function<ClientHttpRequestFactorySettings, ClientHttpRequestFactory> requestFactoryFunction) Deprecated, for removal: This API element is subject to removal in a future version.since 3.4.0 for removal in 4.0.0 in favor ofRestTemplateBuilder.requestFactoryBuilder(ClientHttpRequestFactoryBuilder)
CustomHttpComponentsClientHttpRequestFactory(HttpClientOption[], ClientHttpRequestFactorySettings)