Skip to content

Commit de88610

Browse files
committed
Revise to new Azure UI
1 parent cdab340 commit de88610

File tree

6 files changed

+33
-13
lines changed

6 files changed

+33
-13
lines changed

java/spring-framework/configure-spring-cloud-stream-binder-java-app-azure-event-hub.md

Lines changed: 33 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@ ms.workload: na
1515

1616
# How to create a Spring Cloud Stream Binder application with Azure Event Hubs
1717

18-
## Overview
19-
2018
This article demonstrates how to configure a Java-based Spring Cloud Stream Binder application created with the Spring Boot Initializer with Azure Event Hubs.
2119

2220
## Prerequisites
@@ -34,48 +32,70 @@ The following prerequisites are required in order to follow the steps in this ar
3432
3533
## Create an Azure Event Hub using the Azure portal
3634

35+
The following procedure creates an Azure event hub.
36+
3737
### Create an Azure Event Hub Namespace
3838

3939
1. Browse to the Azure portal at <https://portal.azure.com/> and sign in.
4040

41-
1. Click **+Create a resource**, then **Internet of Things**, and then click **IOT Hub**.
41+
1. Click **+Create a resource**, then search for *Event Hubs**.
42+
43+
1. Click **Create**.
4244

4345
![Create Azure Event Hub Namespace][IMG01]
4446

4547
1. On the **Create Namespace** page, enter the following information:
4648

49+
* Enter a unique **Name**, which will become part of the URI for your event hub namespace. For example: if you entered **wingtiptoys** for the **Name**, the URI would be *wingtiptoys.servicebus.windows.net*.
50+
* Pricing tier.
4751
* Choose the **Subscription** you want to use for your namespace.
4852
* Specify whether to create a new **Resource group** for your namespace, or choose an existing resource group.
4953
* Specify the **Location** for your event hub namespace.
50-
* Enter a unique **Name**, which will become part of the URI for your event hub namespace. For example: if you entered **wingtiptoys** for the **Name**, the URI would be *wingtiptoys.servicebus.windows.net*.
54+
* You can also specify the **Throughput units** for the namespace.
5155

5256
![Specify Azure Event Hub Namespace options][IMG02]
5357

54-
1. When you have specified the options listed above, click **Review + create** to create your namespace.
55-
1. Review the options, and click create.
58+
1. When you have specified the options listed above, click **Create** to create your namespace.
59+
60+
## Create an Azure Event Hub in your namespace
61+
62+
After your namespace is deployed, you can create an event hub in the namespace.
63+
64+
1. Navigate to the namespace created in the previous step.
65+
66+
1. Click **+ Event Hub** in top menu bar.
67+
68+
1. Name the event hub.
69+
70+
1. Click **Create**.
71+
72+
![Create Event Hub][IMG05]
5673

5774
### Create an Azure Storage Account for your Event Hub checkpoints
5875

59-
1. Browse to the Azure portal at <https://portal.azure.com/>.
76+
The following procedure creates a storage account for event hub checkpoints.
6077

61-
1. Click **+Create a resource**, then **Storage**, and then click **Storage Account**.
78+
1. Browse to the Azure portal at <https://portal.azure.com/>.
6279

63-
![Create Azure Storage Account][IMG07]
80+
1. Click **+Create**, then **Storage**, and then click **Storage Account**.
6481

65-
1. On the **Create Namespace** page, enter the following information:
82+
1. On the **Create storage account** page, enter the following information:
6683

6784
* Choose the **Subscription** you want to use for your storage account.
6885
* Specify whether to create a new **Resource group** for your storage account, or choose an existing resource group.
69-
* Enter a unique **Name**, which will become part of the URI for your storage account. For example: if you entered **wingtiptoys** for the **Name**, the URI would be *wingtiptoys.core.windows.net*.
70-
* Choose **Blob storage** for the **Account kind**.
86+
* Enter a unique **Name** for the storage account.
7187
* Specify the **Location** for your storage account.
7288

7389
![Specify Azure Storage Account options][IMG08]
7490

75-
1. When you have specified the options listed above, click **Create** to create your storage account.
91+
1. When you have specified the options listed above, click **Review + create** to create your storage account.
92+
93+
1. Review the specifications and click **Create**. The deployment will take several minutes.
7694

7795
## Create a simple Spring Boot application with the Spring Initializr
7896

97+
The following procedure creates a Spring boot application.
98+
7999
1. Browse to <https://start.spring.io/>.
80100

81101
1. Specify the following options:

0 commit comments

Comments
 (0)