Interface WebClientSsl


public interface WebClientSsl
Interface that can be used to apply SSL configuration to a WebClient.Builder.

Typically used as follows:

@Bean
public MyBean myBean(WebClient.Builder webClientBuilder, WebClientSsl ssl) {
    WebClient webClient = webClientBuilder.apply(ssl.fromBundle("mybundle")).build();
    return new MyBean(webClient);
}
NOTE: Apply SSL configuration will replace any previously configured ClientHttpConnector.
Since:
4.0.0
Author:
Phillip Webb