Skip to content

Commit

Permalink
Removing extra links to start.spring.io to avoid confusion. (#109)
Browse files Browse the repository at this point in the history
  • Loading branch information
yevster authored Feb 2, 2021
1 parent a2f3cf0 commit 0333daf
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion 02-build-a-simple-spring-boot-microservice/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Build the simplest possible Spring Boot microservice, made with [https://start.s

The microservice that we create in this guide is [available here](simple-microservice/).

To create our microservice, we will use [https://start.spring.io/](https://start.spring.io/) via the command line.
A typical way to create Spring Boot applications is to use the Spring Initializer at [https://start.spring.io/](https://start.spring.io/). Feel free to explore it outside this training. **For the purposes of this training, we will only invoke the Spring Initializer site via the `curl` command**.

>💡 __Note:__ All subsequent commands in this workshop should be run from the same directory, except where otherwise indicated via `cd` commands.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ For both features, it will just be a matter of adding an official Spring Boot st

The microservice that we create in this guide is [available here](spring-cloud-microservice/).

To create our microservice, we will use [https://start.spring.io/](https://start.spring.io/) with the command line:
To create our microservice, we will invoke the Spring Initalizer service from the command line:

```bash
curl https://start.spring.io/starter.tgz -d dependencies=web,cloud-eureka,cloud-config-client -d baseDir=spring-cloud-microservice -d bootVersion=2.3.8 -d javaVersion=1.8 | tar -xzvf -
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ From Section 00, you should already have a CosmosDB account named `sclabc-<uniqu

The microservice that we create in this guide is [available here](city-service/).

To create our microservice, we will use [https://start.spring.io/](https://start.spring.io/) with the command line:
To create our microservice, we will invoke the Spring Initalizer service from the command line:

```bash
curl https://start.spring.io/starter.tgz -d dependencies=webflux,cloud-eureka,cloud-config-client -d baseDir=city-service -d bootVersion=2.3.8 -d javaVersion=1.8 | tar -xzvf -
Expand Down
2 changes: 1 addition & 1 deletion 07-build-a-spring-boot-microservice-using-mysql/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ In the [Azure Portal](https://portal.azure.com/?WT.mc_id=azurespringcloud-github

Now that we've provisioned the Azure Spring Cloud instance and configured the service binding, let's get the code for `weather-service` ready. The microservice that we create in this guide is [available here](weather-service/).

To create our microservice, we will use [https://start.spring.io/](https://start.spring.io/) with the command line:
To create our microservice, we will invoke the Spring Initalizer service from the command line:

```bash
curl https://start.spring.io/starter.tgz -d dependencies=web,data-jpa,mysql,cloud-eureka,cloud-config-client -d baseDir=weather-service -d bootVersion=2.3.8 -d javaVersion=1.8 | tar -xzvf -
Expand Down
2 changes: 1 addition & 1 deletion 08-build-a-spring-cloud-gateway/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Build a [Spring Cloud Gateway](https://spring.io/projects/spring-cloud-gateway)

The application that we create in this guide is [available here](gateway/).

To create our gateway, we will use [https://start.spring.io/](https://start.spring.io/) with the command line:
To create our gateway, we will invoke the Spring Initalizer service from the command line:

```bash
curl https://start.spring.io/starter.tgz -d dependencies=cloud-gateway,cloud-eureka,cloud-config-client -d baseDir=gateway -d bootVersion=2.3.8 -d javaVersion=1.8 | tar -xzvf -
Expand Down
2 changes: 1 addition & 1 deletion 12-making-microservices-talk-to-each-other/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ To resolve this inefficiency, we will create a single microservice that implemen

## Create a Spring Boot Microservice

To create our microservice, we will use [https://start.spring.io/](https://start.spring.io/) with the command line:
To create our microservice, we will invoke the Spring Initalizer service from the command line:

```bash
curl https://start.spring.io/starter.tgz -d dependencies=cloud-feign,web,cloud-eureka,cloud-config-client -d baseDir=all-cities-weather-service -d bootVersion=2.3.8 -d javaVersion=1.8 | tar -xzvf -
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Basics on creating a cluster and configuring the CLI to work efficiently.

## [02 - Build a simple Spring Boot microservice](02-build-a-simple-spring-boot-microservice/README.md)

Build the simplest possible Spring Boot microservice, made with [https://start.spring.io/](https://start.spring.io/).
Build the simplest possible Spring Boot microservice using the Spring Initializer.

## [03 - Configure application logs](03-configure-monitoring/README.md)

Expand Down

0 comments on commit 0333daf

Please sign in to comment.