Skip to content

Commit 0616851

Browse files
committed
edits
1 parent ca4e827 commit 0616851

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

articles/spring-apps/quickstart-deploy-event-driven-app.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Quickstart - Deploy event driven application to Azure Spring Apps
3-
description: Learn how to deploy an event driven application to Azure Spring Apps
2+
title: Quickstart - Deploy event-driven application to Azure Spring Apps with the Standard consumption plan
3+
description: Learn how to deploy an event-driven application to Azure Spring Apps
44
author: karlerickson
55
ms.service: spring-apps
66
ms.topic: quickstart
@@ -9,7 +9,7 @@ ms.author: rujche
99
ms.custom: devx-track-java, devx-track-azurecli, mode-other, event-tier1-build-2022, engagement-fy23
1010
---
1111

12-
# Quickstart: Deploy an event driven application to Azure Spring Apps
12+
# Quickstart: Deploy an event-driven application to Azure Spring Apps with the Standard consumption plan
1313

1414
> [!NOTE]
1515
> The first 50 vCPU hours and 100 GB hours of memory are free each month. For more information, see [Price Reduction - Azure Spring Apps does more, costs less!](https://techcommunity.microsoft.com/t5/apps-on-azure-blog/price-reduction-azure-spring-apps-does-more-costs-less/ba-p/3614058) on the [Apps on Azure Blog](https://techcommunity.microsoft.com/t5/apps-on-azure-blog/bg-p/AppsonAzureBlog).
@@ -19,9 +19,9 @@ ms.custom: devx-track-java, devx-track-azurecli, mode-other, event-tier1-build-2
1919
2020
**This article applies to:** ✔️ Standard consumption (Preview) ❌ Basic/Standard ❌ Enterprise
2121

22-
This article explains how to deploy a Spring Boot event driven application to Azure Spring Apps. The sample project is an event driven application that subscribes to a [Service Bus queue](/azure/service-bus-messaging/service-bus-queues-topics-subscriptions#queues) named `lower-case`, and then handles the message and sends another message to another queue named `upper-case`. To make the app simple, message processing just converts the message to uppercase. The following diagram depicts this process:
22+
This article explains how to deploy a Spring Boot event-driven application to Azure Spring Apps with the Standard consumption plan. The sample project is an event-driven application that subscribes to a [Service Bus queue](/azure/service-bus-messaging/service-bus-queues-topics-subscriptions#queues) named `lower-case`, and then handles the message and sends another message to another queue named `upper-case`. To make the app simple, message processing just converts the message to uppercase. The following diagram depicts this process:
2323

24-
:::image type="content" source="media/quickstart-for-event-driven-app/diagram.png" alt-text="Screenshot of Spring event driven app architecture." lightbox="media/quickstart-for-event-driven-app/diagram.png":::
24+
:::image type="content" source="media/quickstart-for-event-driven-app/diagram.png" alt-text="Screenshot of Spring event-driven app architecture." lightbox="media/quickstart-for-event-driven-app/diagram.png":::
2525

2626
## Prerequisites
2727

@@ -123,7 +123,7 @@ To manage the resources easily, create a resource group to hold these resources.
123123

124124
### Step 4 - Create an Azure Spring Apps Consumption plan instance
125125

126-
An Azure Spring Apps Consumption plan hosts the spring event driven app. This section provides the steps of to create an instance of an Azure Spring Apps Consumption plan and then creates an app inside the plan.
126+
An Azure Spring Apps Consumption plan hosts the Spring event-driven app. This section provides the steps of to create an instance of an Azure Spring Apps Consumption plan and then creates an app inside the plan.
127127

128128
#### Step 4.1 - Create an Azure Container Apps environment
129129

@@ -155,7 +155,7 @@ The Azure Container Apps environment creates a secure boundary around a group of
155155

156156
#### Step 4.2 - Create Azure Spring Apps instance
157157

158-
1. Install the spring extension designed for StandardGen2 Azure Spring Apps.
158+
1. Install the Spring extension designed for StandardGen2 Azure Spring Apps.
159159

160160
```azurecli-interactive
161161
az extension remove -n spring && \
@@ -240,9 +240,9 @@ az spring app deploy \
240240
--artifact-path target/simple-event-driven-app-0.0.1-SNAPSHOT.jar
241241
```
242242

243-
## Validate the event driven app
243+
## Validate the event-driven app
244244

245-
To check whether the event driven app works well, validate it by sending a message to the `lower-case` queue and check whether there's a message in the `upper-case`queue.
245+
To check whether the event-driven app works well, validate it by sending a message to the `lower-case` queue and check whether there's a message in the `upper-case`queue.
246246

247247
1. Send a message to `lower-case` queue with Service Bus Explorer. For details see [Send a message to a queue or topic](/azure/service-bus-messaging/explorer#send-a-message-to-a-queue-or-topic).
248248
1. Check whether there is a new message sent to the `upper-case` queue. For details see [Peek a message](/azure/service-bus-messaging/explorer#peek-a-message).

articles/spring-apps/toc.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ items:
2323
href: quickstart-provision-standard-consumption-plan-service-instance.md
2424
- name: Provision in an Azure Container Apps environment with VNet
2525
href: quickstart-provision-app-environment-with-virtual-network.md
26-
- name: Launch your first event driven app
27-
href: quickstart-for-event-driven-app.md
26+
- name: Launch your first event-driven app
27+
href: quickstart-deploy-event-driven-app.md
2828
- name: Run apps on Basic/Standard tier
2929
expanded: true
3030
items:

0 commit comments

Comments
 (0)