インターフェース WebClientSsl


public interface WebClientSsl
apply SSL 構成から WebClient.Builder に使用できるインターフェース。

通常は次のように使用されます。

 @Bean
 public MyBean myBean(WebClient.Builder webClientBuilder, WebClientSsl ssl) {
     WebClient webClient = webClientBuilder.apply(ssl.fromBundle("mybundle")).build();
     return new MyBean(webClient);
 }
 
NOTE: SSL 構成を適用すると、以前の configured ClientHttpConnector が置き換えられます。
導入:
3.1.0
作成者:
Phillip Webb