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
# Quickstart: Deploy an eventdriven application to Azure Spring Apps
12
+
# Quickstart: Deploy an event-driven application to Azure Spring Apps with the Standard consumption plan
13
13
14
14
> [!NOTE]
15
15
> 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).
This article explains how to deploy a Spring Boot eventdriven application to Azure Spring Apps. The sample project is an eventdriven 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:
23
23
24
-
:::image type="content" source="media/quickstart-for-event-driven-app/diagram.png" alt-text="Screenshot of Spring eventdriven 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":::
25
25
26
26
## Prerequisites
27
27
@@ -123,7 +123,7 @@ To manage the resources easily, create a resource group to hold these resources.
123
123
124
124
### Step 4 - Create an Azure Spring Apps Consumption plan instance
125
125
126
-
An Azure Spring Apps Consumption plan hosts the spring eventdriven 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.
127
127
128
128
#### Step 4.1 - Create an Azure Container Apps environment
129
129
@@ -155,7 +155,7 @@ The Azure Container Apps environment creates a secure boundary around a group of
155
155
156
156
#### Step 4.2 - Create Azure Spring Apps instance
157
157
158
-
1. Install the spring extension designed for StandardGen2 Azure Spring Apps.
158
+
1. Install the Spring extension designed for StandardGen2 Azure Spring Apps.
To check whether the eventdriven 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.
246
246
247
247
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).
248
248
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).
0 commit comments