接口 RestClientBuilderCustomizer

函数接口:
这是一个函数接口, 因此可用作 lambda 表达式或方法引用的赋值目标。

@FunctionalInterface public interface RestClientBuilderCustomizer
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 void
    customize(org.apache.http.client.config.RequestConfig.Builder builder)
    Customize the RequestConfig.Builder.
    default void
    customize(org.apache.http.impl.nio.client.HttpAsyncClientBuilder builder)
    Customize the HttpAsyncClientBuilder.
    void
    customize(org.elasticsearch.client.RestClientBuilder builder)
    Customize the RestClientBuilder.
  • 方法详细资料

    • customize

      void customize(org.elasticsearch.client.RestClientBuilder builder)
      Customize the RestClientBuilder.

      Possibly overrides customizations made with the "spring.elasticsearch.rest" configuration properties namespace. For more targeted changes, see customize(HttpAsyncClientBuilder) and customize(RequestConfig.Builder).

      参数:
      builder - the builder to customize
    • customize

      default void customize(org.apache.http.impl.nio.client.HttpAsyncClientBuilder builder)
      Customize the HttpAsyncClientBuilder.
      参数:
      builder - the builder
      从以下版本开始:
      2.3.0
    • customize

      default void customize(org.apache.http.client.config.RequestConfig.Builder builder)
      Customize the RequestConfig.Builder.
      参数:
      builder - the builder
      从以下版本开始:
      2.3.0