Skip to content

Commit 7a4eaae

Browse files
Apply suggestions from code review
Co-authored-by: Karl Erickson <[email protected]>
1 parent d7bdb65 commit 7a4eaae

File tree

1 file changed

+13
-11
lines changed

1 file changed

+13
-11
lines changed

articles/spring-apps/quickstart.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ This quickstart explains how to:
3030
3131
At the end of this quickstart, you'll have a working spring app running on Azure Spring Apps.
3232

33-
## [CLI](#tab/Azure-CLI)
33+
## [Azure CLI](#tab/Azure-CLI)
3434

3535
### Prerequisites
3636

@@ -44,14 +44,14 @@ At the end of this quickstart, you'll have a working spring app running on Azure
4444
az account show
4545
```
4646

47-
1. Azure Cloud Shell workspaces are temporary. On initial start, the shell prompts you to associate an [Azure Storage](/azure/storage/common/storage-introduction) with your subscription to persist files across sessions.
47+
1. Azure Cloud Shell workspaces are temporary. On initial start, the shell prompts you to associate an [Azure Storage](/azure/storage/common/storage-introduction) instance with your subscription to persist files across sessions.
4848

4949
:::image type="content" source="media/quickstart/Azure-storage-subscription.png" alt-text="Screenshot of Azure Storage subscription.":::
5050

51-
1. After you log in successfully, use the following command to display a list of your subscriptions.
51+
1. After you sign in successfully, use the following command to display a list of your subscriptions.
5252

5353
```azurecli-interactive
54-
az account list -o table
54+
az account list --output table
5555
```
5656

5757
1. Use the following command to choose and link to your subscription.
@@ -60,7 +60,7 @@ At the end of this quickstart, you'll have a working spring app running on Azure
6060
az account set --subscription <subscription-id>
6161
```
6262

63-
1. Use the following command to create a Resource Group.
63+
1. Use the following command to create a resource group.
6464

6565
```azurecli-interactive
6666
az group create \
@@ -134,7 +134,9 @@ Deploying the application can take a few minutes.
134134

135135
### Generate a Spring project
136136

137-
Use [Spring Initializr](https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.6.10&packaging=jar&jvmVersion=11&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 Apps. The following URL provides default settings for you.
137+
Use the following steps to create the project:
138+
139+
1. Use [Spring Initializr](https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.6.10&packaging=jar&jvmVersion=11&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 Apps. The following URL provides default settings for you.
138140

139141
```url
140142
https://start.spring.io/#!type=maven-project&language=java&platformVersion=2.6.10&packaging=jar&jvmVersion=11&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
@@ -185,8 +187,8 @@ Use the following steps to create an instance of Azure Spring Apps using the Azu
185187
1. Fill out the form on the Azure Spring Apps **Create** page. Consider the following guidelines:
186188

187189
- **Subscription**: Select the subscription you want to be billed for this resource.
188-
- **Resource group**: Creating new resource groups for new resources is a best practice. You'll use this resource group in later steps as *\<resource-group-name\>*.
189-
- **Service Name**: Specify the **\<service instance name\>**. The name must be between 4 and 32 characters long and can contain only lowercase letters, numbers, and hyphens. The first character of the service name must be a letter and the last character must be either a letter or a number.
190+
- **Resource group**: Creating new resource groups for new resources is a best practice.
191+
- **Service Name**: Specify the service instance name. You'll use this name later in this article where the *\<service-instance-name\>* placeholder appears. The name must be between 4 and 32 characters long and can contain only lowercase letters, numbers, and hyphens. The first character of the service name must be a letter and the last character must be either a letter or a number.
190192
- **Region**: Select the region for your service instance.
191193

192194
:::image type="content" source="media/quickstart/portal-start.png" alt-text="Screenshot of Azure portal showing Azure Spring Apps Create page." lightbox="media/quickstart/portal-start.png":::
@@ -205,7 +207,7 @@ Use the following steps to import the project.
205207
### Build and deploy your app
206208

207209
> [!NOTE]
208-
> To run the project locally, add `spring.config.import=optional:configserver:` to the project's `application.properties` file.
210+
> To run the project locally, add `spring.config.import=optional:configserver:` to the project's *application.properties* file.
209211
210212
1. If you haven't already installed the Azure Toolkit for IntelliJ, follow the steps in [Install the Azure Toolkit for IntelliJ](/azure/developer/java/toolkit-for-intellij/install-toolkit).
211213

@@ -221,8 +223,8 @@ Use the following steps to import the project.
221223
222224
:::image type="content" source="media/quickstart/intellij-create-new-app.png" alt-text="Screenshot of IntelliJ IDEA showing Deploy Azure Spring Apps dialog box.":::
223225
224-
1. In the **App name:** textbox under **App Basics**, enter *hellospring*, and then check the **More settings** check box.
225-
1. Select the **Enable** button next to **Public endpoint**. The button changes to *Disable \<to be enabled\>*.
226+
1. In the **App name:** textbox under **App Basics**, enter *hellospring*, and then select the **More settings** check box.
227+
1. Select the **Enable** button next to **Public endpoint**. The button changes to **Disable \<to be enabled\>**.
226228
1. If you're using Java 11, select **Java 11** for the **Runtime** option.
227229
1. Select **OK**.
228230

0 commit comments

Comments
 (0)