接口 RestClientBuilderCustomizer
- 函数接口:
- 这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。
Callback interface that can be implemented by beans wishing to further customize the
RestClient through a RestClientBuilder whilst
retaining default auto-configuration.- 从以下版本开始:
- 2.1.0
- 作者:
- Brian Clozel, Vedran Pavic
-
方法概要
修饰符和类型方法说明default voidcustomize(org.apache.http.client.config.RequestConfig.Builder builder) Customize theRequestConfig.Builder.default voidcustomize(org.apache.http.impl.nio.client.HttpAsyncClientBuilder builder) Customize theHttpAsyncClientBuilder.voidcustomize(org.elasticsearch.client.RestClientBuilder builder) Customize theRestClientBuilder.
-
方法详细资料
-
customize
void customize(org.elasticsearch.client.RestClientBuilder builder) Customize theRestClientBuilder.Possibly overrides customizations made with the
"spring.elasticsearch.rest"configuration properties namespace. For more targeted changes, seecustomize(HttpAsyncClientBuilder)andcustomize(RequestConfig.Builder).- 参数:
builder- the builder to customize
-
customize
default void customize(org.apache.http.impl.nio.client.HttpAsyncClientBuilder builder) Customize theHttpAsyncClientBuilder.- 参数:
builder- the builder- 从以下版本开始:
- 2.3.0
-
customize
default void customize(org.apache.http.client.config.RequestConfig.Builder builder) Customize theRequestConfig.Builder.- 参数:
builder- the builder- 从以下版本开始:
- 2.3.0
-