You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/spring-cloud/quickstart.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -317,7 +317,7 @@ The application code used in this tutorial is a simple app built with Spring Ini
317
317
This quickstart explains how to:
318
318
319
319
> [!div class="checklist"]
320
-
> * Generate a basic Spring project
320
+
> * Generate a basic Spring Cloud project
321
321
> * Provision a service instance
322
322
> * Build and deploy the app with a public endpoint
323
323
> * Stream logs in real time
@@ -333,7 +333,7 @@ To complete this quickstart:
333
333
* (Optional) [Install the Azure Toolkit for IntelliJ](https://plugins.jetbrains.com/plugin/8053-azure-toolkit-for-intellij/) and [sign-in](/azure/developer/java/toolkit-for-intellij/create-hello-world-web-app#installation-and-sign-in)
334
334
* (Optional) [Install Maven](https://maven.apache.org/guides/getting-started/maven-in-five-minutes.html). If you use the Azure Cloud Shell, this installation isn't needed.
335
335
336
-
## Generate a Spring project
336
+
## Generate a Spring Cloud project
337
337
338
338
Start with [Spring Initializr](https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.5.5&packaging=jar&jvmVersion=1.8&groupId=com.example&artifactId=hellospring&name=hellospring&description=Demo%20project%20for%20Spring%20Boot&packageName=com.example.hellospring&dependencies=web,cloud-eureka,actuator,cloud-config-client) to generate a sample project with recommended dependencies for Azure Spring Cloud. This link uses the following URL to provide default settings for you.
339
339
@@ -422,7 +422,7 @@ The following procedure builds and deploys the application using the Azure CLI.
422
422
mvn clean package -DskipTests
423
423
```
424
424
425
-
1.Create the app with a public endpoint assigned. If you selected Java version 11 when generating the Spring project, include the `--runtime-version=Java_11` switch.
425
+
1.Create the app with a public endpoint assigned. If you selected Java version 11 when generating the SpringCloudproject, include the `--runtime-version=Java_11` switch.
426
426
427
427
```azurecli
428
428
az spring-cloud app create -n hellospring -s <service instance name>-g <resource group name>--assign-endpoint true
@@ -537,7 +537,7 @@ az group delete --name <your resource group name> --yes
0 commit comments