diff --git a/spring-cloud-cli.html b/spring-cloud-cli.html index 6e6ded3..14e7d47 100644 --- a/spring-cloud-cli.html +++ b/spring-cloud-cli.html @@ -512,7 +512,7 @@ just list them on the command line, e.g.

-
$ spring cloud eureka configserver h2 kafka zipkin
+
$ spring cloud eureka configserver h2 kafka stubrunner zipkin
@@ -576,6 +576,12 @@ just list them on the command line, e.g.

http://localhost:9411

Zipkin Server with UI for visualizing traces. Stores span data in memory and accepts them via HTTP POST of JSON data.

+ +

stubrunner

+

Stub Runner Boot

+

http://localhost:8750

+

Downloads WireMock stubs, starts WireMock and feeds the started servers with stored stubs. Pass stubrunner.ids to pass stub coordinates and then go to http://localhost:8750/stubs.

+
@@ -596,6 +602,18 @@ do something like this to locate a local git repository for the backend:

uri: file://${user.home}/dev/demo/config-repo
+
+

E.g. in Stub Runner app you could fetch stubs from your local .m2 in the following way.

+
+
+
stubrunner.yml
+
+
stubrunner:
+  workOffline: true
+  ids:
+    - com.example:beer-api-producer:+:9876
+
+

Adding Additional Applications

@@ -623,7 +641,7 @@ do something like this to locate a local git repository for the backend:

$ spring cloud --list
-source sink configserver dataflow eureka h2 hystrixdashboard kafka zipkin
+source sink configserver dataflow eureka h2 hystrixdashboard kafka stubrunner zipkin