Skip to content

Commit f504d05

Browse files
committed
Polishing in HTTP interface clients docs
1 parent e9e19f5 commit f504d05

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

framework-docs/modules/ROOT/pages/integration/rest-clients.adoc

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -928,6 +928,13 @@ Now, you're ready to create client proxies:
928928
// Use service methods for remote calls...
929929
----
930930

931+
HTTP service clients is a powerful and expressive choice for remote access over HTTP.
932+
It allows one team to own the knowledge of how a REST API works, what parts are relevant
933+
to a client application, what input and output types to create, what endpoint method
934+
signatures are needed, what Javadoc to have, and so on. The resulting Java API guides and
935+
is ready to use.
936+
937+
931938
[[rest-http-service-client-method-parameters]]
932939
=== Method Parameters
933940

framework-docs/modules/ROOT/pages/web/webflux-http-service-client.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
The Spring Frameworks lets you define an HTTP service as a Java interface with HTTP
55
exchange methods. You can then generate a proxy that implements this interface and
66
performs the exchanges. This helps to simplify HTTP remote access and provides additional
7-
flexibility for to choose an API style such as synchronous or reactive.
7+
flexibility in choosing an API style such as synchronous or reactive.
88

99
See xref:integration/rest-clients.adoc#rest-http-service-client[HTTP Service Clients] for details.

0 commit comments

Comments
 (0)