Skip to content

Commit d1c6a50

Browse files
author
Ryan Baxter
committed
Tweaking the README
1 parent 3bc4310 commit d1c6a50

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
:icons: font
99
:source-highlighter: prettify
1010
:project_id: gs-spring-cloud-circuitbreaker
11-
This guide walks you through the process of applying circuit breakers to potentially-failing method calls using the Netflix Hystrix fault tolerance library.
11+
This guide walks you through the process of applying circuit breakers to potentially-failing method calls using Spring Cloud Circuit Breaker.
1212

1313
== What you'll build
1414

@@ -86,7 +86,7 @@ include::https://raw.githubusercontent.com/spring-guides/getting-started-macros/
8686
[[initial]]
8787
== Set up a server microservice application
8888

89-
The Bookstore service will have a single endpoint. It will be accessible at `/recommended`, and will (for simplicity) return a `String` recommended reading list.
89+
The Bookstore service will have a single endpoint. It will be accessible at `/recommended`, and will (for simplicity) return a `Mono` of `String` recommended reading list.
9090

9191
Edit our main class, in `BookstoreApplication.java`. It should look like this:
9292

@@ -140,7 +140,7 @@ public class ReadingApplication {
140140
}
141141
----
142142

143-
To get the list from Bookstore, we're using Spring's `WebClient` class. `WebClient` makes an HTTP GET request to the Bookstore service's URL as we provide it and then returns the result as a `String`. (For more information on using Spring to consume a RESTful service using `WebClient`, see the https://spring.io/guides/gs/reactive-rest-service/[Building a Reactive RESTful Web Service] guide.)
143+
To get the list from Bookstore, we're using Spring's `WebClient` class. `WebClient` makes an HTTP GET request to the Bookstore service's URL as we provide it and then returns the result as a `Mono` of `String`. (For more information on using Spring to consume a RESTful service using `WebClient`, see the https://spring.io/guides/gs/reactive-rest-service/[Building a Reactive RESTful Web Service] guide.)
144144

145145
Add the `server.port` property to `src/main/resources/application.properties`:
146146

0 commit comments

Comments
 (0)