Browse Source

Merge branch '2.0.x'

pull/14501/merge
Stephane Nicoll 7 years ago
parent
commit
36d22c8541
  1. 2
      spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

2
spring-boot-project/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc

@ -5912,7 +5912,7 @@ The following code shows a typical example: @@ -5912,7 +5912,7 @@ The following code shows a typical example:
}
public Mono<Details> someRestCall(String name) {
return this.webClient.get().url("/{name}/details", name)
return this.webClient.get().uri("/{name}/details", name)
.retrieve().bodyToMono(Details.class);
}

Loading…
Cancel
Save