Browse Source

Javadoc

Issue: SPR-15912
pull/1511/head
Arjen Poutsma 9 years ago
parent
commit
14af5d941a
  1. 5
      spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java

5
spring-webflux/src/main/java/org/springframework/web/reactive/function/client/WebClient.java

@ -479,11 +479,6 @@ public interface WebClient { @@ -479,11 +479,6 @@ public interface WebClient {
* .accept(MediaType.APPLICATION_JSON)
* .retrieve()
* .bodyToMono(Pojo.class);
*
* Mono<ResponseEntity<Pojo>> entityMono = client.get().uri("/")
* .accept(MediaType.APPLICATION_JSON)
* .retrieve()
* .bodyToEntity(Pojo.class);
* </pre>
* @return spec with options for extracting the response body
*/

Loading…
Cancel
Save