Browse Source

Merge branch '3.1.x'

pull/37451/head
Moritz Halbritter 2 years ago
parent
commit
bc7414d106
  1. 2
      spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/function/client/WebClientSsl.java

2
spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/web/reactive/function/client/WebClientSsl.java

@ -31,7 +31,7 @@ import org.springframework.web.reactive.function.client.WebClient; @@ -31,7 +31,7 @@ import org.springframework.web.reactive.function.client.WebClient;
* Typically used as follows: <pre class="code">
* &#064;Bean
* public MyBean myBean(WebClient.Builder webClientBuilder, WebClientSsl ssl) {
* WebClient webClient = webClientBuilder.apply(ssl.forBundle("mybundle")).build();
* WebClient webClient = webClientBuilder.apply(ssl.fromBundle("mybundle")).build();
* return new MyBean(webClient);
* }
* </pre> NOTE: Apply SSL configuration will replace any previously

Loading…
Cancel
Save