Skip to content

Commit 746fc33

Browse files
committed
Merge branch '6.2.x'
2 parents 9979de9 + b741632 commit 746fc33

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

framework-docs/modules/ROOT/pages/web/webflux-webclient.adoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@
22
= WebClient
33
:page-section-summary-toc: 1
44

5-
Spring WebFlux includes a client to perform HTTP requests with. `WebClient` has a
6-
functional, fluent API based on Reactor, see xref:web-reactive.adoc#webflux-reactive-libraries[Reactive Libraries],
5+
Spring WebFlux includes a client to perform HTTP requests. `WebClient` has a
6+
functional, fluent API based on Reactor (see xref:web/webflux-reactive-libraries.adoc[Reactive Libraries])
77
which enables declarative composition of asynchronous logic without the need to deal with
8-
threads or concurrency. It is fully non-blocking, it supports streaming, and relies on
8+
threads or concurrency. It is fully non-blocking, supports streaming, and relies on
99
the same xref:web/webflux/reactive-spring.adoc#webflux-codecs[codecs] that are also used to encode and
1010
decode request and response content on the server side.
1111

12-
`WebClient` needs an HTTP client library to perform requests with. There is built-in
12+
`WebClient` needs an HTTP client library to perform requests. There is built-in
1313
support for the following:
1414

1515
* {reactor-github-org}/reactor-netty[Reactor Netty]
1616
* {java-api}/java.net.http/java/net/http/HttpClient.html[JDK HttpClient]
1717
* https://github.com/jetty-project/jetty-reactive-httpclient[Jetty Reactive HttpClient]
1818
* https://hc.apache.org/index.html[Apache HttpComponents]
19-
* Others can be plugged via `ClientHttpConnector`.
19+
* Others can be plugged in via `ClientHttpConnector`.

framework-docs/modules/ROOT/pages/web/webmvc-client.adoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,27 +15,27 @@ See xref:integration/rest-clients.adoc#rest-restclient[`RestClient`] for more de
1515
[[webmvc-webclient]]
1616
== `WebClient`
1717

18-
`WebClient` is a reactive client to perform HTTP requests with a fluent API.
18+
`WebClient` is a reactive client for making HTTP requests with a fluent API.
1919

20-
See xref:web/webflux-webclient.adoc[WebClient] for more details.
20+
See xref:web/webflux-webclient.adoc[`WebClient`] for more details.
2121

2222

2323
[[webmvc-resttemplate]]
2424
== `RestTemplate`
2525

26-
`RestTemplate` is a synchronous client to perform HTTP requests. It is the original
26+
`RestTemplate` is a synchronous client for making HTTP requests. It is the original
2727
Spring REST client and exposes a simple, template-method API over underlying HTTP client
2828
libraries.
2929

30-
See xref:integration/rest-clients.adoc[REST Endpoints] for details.
30+
See xref:integration/rest-clients.adoc#rest-resttemplate[`RestTemplate`] for details.
3131

3232

3333
[[webmvc-http-interface]]
3434
== HTTP Interface
3535

36-
The Spring Frameworks lets you define an HTTP service as a Java interface with HTTP
36+
The Spring Framework lets you define an HTTP service as a Java interface with HTTP
3737
exchange methods. You can then generate a proxy that implements this interface and
3838
performs the exchanges. This helps to simplify HTTP remote access and provides additional
39-
flexibility for to choose an API style such as synchronous or reactive.
39+
flexibility for choosing an API style such as synchronous or reactive.
4040

41-
See xref:integration/rest-clients.adoc#rest-http-interface[REST Endpoints] for details.
41+
See xref:integration/rest-clients.adoc#rest-http-interface[HTTP Interface] for details.

0 commit comments

Comments
 (0)