Skip to content

Commit

Permalink
support spring3
Browse files Browse the repository at this point in the history
  • Loading branch information
Netyyyy committed Aug 15, 2024
1 parent 7f7be97 commit 1a32511
Show file tree
Hide file tree
Showing 27 changed files with 971 additions and 3 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/spring2sample</module>
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder</module>
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/spring2sample</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace</module>
<module>servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging</module>
<module>storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample</module>
Expand Down Expand Up @@ -179,7 +179,7 @@
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-multibinders/spring3sample</module>
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-topic-binder</module>
<module>servicebus/spring-cloud-azure-stream-binder-servicebus/servicebus-queue-binder-arm</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/multiple-namespaces/spring3sample</module>
<module>servicebus/spring-cloud-azure-starter-integration-servicebus/single-namespace</module>
<module>servicebus/spring-messaging-azure-servicebus/servicebus-spring-messaging</module>
<module>storage/spring-cloud-azure-starter-storage-blob/storage-blob-sample</module>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>com.azure.spring</groupId>
<artifactId>azure-spring-boot-samples</artifactId>
<version>1.0.0</version>
<relativePath>../../../pom.xml</relativePath>
<relativePath>../../../../pom.xml</relativePath>
</parent>

<artifactId>spring-cloud-azure-starter-integration-sample-servicebus-multiple-namespaces</artifactId>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.sample.servicebus;

import com.azure.spring.integration.core.handler.DefaultMessageHandler;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
package com.azure.spring.sample.servicebus;

import com.azure.spring.messaging.servicebus.core.DefaultServiceBusNamespaceProcessorFactory;
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,200 @@
---
page_type: sample
languages:
- java
products:
- azure-service-bus
name: Sending and Receiving Message by Azure Service Bus (Multiple Namespaces) And Spring Integration in Spring Boot Application
description: This sample demonstrates how to send and receive message by Azure Service Bus (multiple namespaces) and Spring Integration in Spring Boot application.
---

# Sending and Receiving Message by Azure Service Bus (Multiple Namespaces) And Spring Integration in Spring Boot Application

This code sample demonstrates how to use Spring Integration to interact with multiple Azure Service Bus namespaces.

## What You Will Build

You will build an application that using Spring Integration for Azure Service Bus to send and receive messages with two Service Bus namespaces.
This sample will send messages to two queues in two different Azure Service Bus namespaces and then receive the messages.
In addition, this sample will forward all messages received from the first queue to the second queue.

## What You Need

- [An Azure subscription](https://azure.microsoft.com/free/)
- [Terraform](https://www.terraform.io/)
- [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli)
- [JDK8](https://www.oracle.com/java/technologies/downloads/) or later
- Maven
- You can also import the code straight into your IDE:
- [IntelliJ IDEA](https://www.jetbrains.com/idea/download)

## Provision Azure Resources Required to Run This Sample
This sample will create Azure resources using Terraform. If you choose to run it without using Terraform to provision resources, please pay attention to:
> [!IMPORTANT]
> If you choose to use a security principal to authenticate and authorize with Microsoft Entra ID for accessing an Azure resource
> please refer to [Authorize access with Microsoft Entra ID](https://learn.microsoft.com/azure/developer/java/spring-framework/authentication#authorize-access-with-microsoft-entra-id) to make sure the security principal has been granted the sufficient permission to access the Azure resource.
### Authenticate Using the Azure CLI
Terraform must authenticate to Azure to create infrastructure.

In your terminal, use the Azure CLI tool to setup your account permissions locally.

```shell
az login
```

Your browser window will open and you will be prompted to enter your Azure login credentials. After successful authentication, your terminal will display your subscription information. You do not need to save this output as it is saved in your system for Terraform to use.

```shell
You have logged in. Now let us find all the subscriptions to which you have access...

[
{
"cloudName": "AzureCloud",
"homeTenantId": "home-Tenant-Id",
"id": "subscription-id",
"isDefault": true,
"managedByTenants": [],
"name": "Subscription-Name",
"state": "Enabled",
"tenantId": "0envbwi39-TenantId",
"user": {
"name": "[email protected]",
"type": "user"
}
}
]
```

If you have more than one subscription, specify the subscription-id you want to use with command below:
```shell
az account set --subscription <your-subscription-id>
```

### Provision the Resources

After login Azure CLI with your account, now you can use the terraform script to create Azure Resources.

#### Run with Bash

```shell

# in the root directory of the sample
# Initialize your Terraform configuration
terraform -chdir=./terraform init

# Apply your Terraform Configuration
terraform -chdir=./terraform apply -auto-approve

```

#### Run with Powershell

```shell
# In the root directory of the sample
# Initialize your Terraform configuration
terraform -chdir=terraform init

# Apply your Terraform Configuration
terraform -chdir=terraform apply -auto-approve

```

It may take a few minutes to run the script. After successful running, you will see prompt information like below:

```shell

...
azurerm_role_assignment.servicebus_02_data_owner: Still creating...
azurerm_role_assignment.servicebus_01_data_owner: Still creating...
azurerm_role_assignment.servicebus_01_data_owner: Creation complete after 29s...
azurerm_role_assignment.servicebus_02_data_owner: Creation complete after 29s...

Apply complete! Resources: 14 added, 0 changed, 0 destroyed.

Outputs:

AZURE_SERVICEBUS_NAMESPACE_01 = "${YOUR_SERVICEBUS_NAMESPACE_01}"
AZURE_SERVICEBUS_NAMESPACE_02 = "${YOUR_SERVICEBUS_NAMESPACE_02}"
AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME = "${YOUR_AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME}"
AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME = "${YOUR_AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME}"
```

You can go to [Azure portal](https://ms.portal.azure.com/) in your web browser to check the resources you created.

### Export Output to Your Local Environment
Running the command below to export environment values:

#### Run with Bash

```shell
source ./terraform/setup_env.sh
```

#### Run with Powershell

```shell
terraform\setup_env.ps1
```

If you want to run the sample in debug mode, you can save the output value.

```shell
AZURE_SERVICEBUS_NAMESPACE_01=...
AZURE_SERVICEBUS_NAMESPACE_02=...
AZURE_SERVICEBUS_NAMESPACE_01_QUEUE_NAME=...
AZURE_SERVICEBUS_NAMESPACE_02_QUEUE_NAME=...
```

## Run Locally

### Run the sample with Maven

In your terminal, run `mvn clean spring-boot:run`.

```shell
mvn clean spring-boot:run
```

### Run the sample in IDEs

You can debug your sample by adding the saved output values to the tool's environment variables or the sample's `application.yaml` file.

* If your tool is `IDEA`, please refer to [Debug your first Java application](https://www.jetbrains.com/help/idea/debugging-your-first-java-application.html) and [add environment variables](https://www.jetbrains.com/help/objc/add-environment-variables-and-program-arguments.html#add-environment-variables).

* If your tool is `ECLIPSE`, please refer to [Debugging the Eclipse IDE for Java Developers](https://www.eclipse.org/community/eclipse_newsletter/2017/june/article1.php) and [Eclipse Environment Variable Setup](https://examples.javacodegeeks.com/desktop-java/ide/eclipse/eclipse-environment-variable-setup-example/).

## Verify This Sample


Verify in your app’s logs that similar messages were posted:
```shell
Receive messages from the first queue: 1
Receive messages from the second queue: 2
...
Receive messages from the second queue: transformed from queue1, 1
...
```


## Clean Up Resources
After running the sample, if you don't want to run the sample, remember to destroy the Azure resources you created to avoid unnecessary billing.

The terraform destroy command terminates resources managed by your Terraform project.
To destroy the resources you created.

#### Run with Bash

```shell
terraform -chdir=./terraform destroy -auto-approve
```

#### Run with Powershell

```shell
terraform -chdir=terraform destroy -auto-approve
```

## Deploy to Azure Spring Apps

Now that you have the Spring Boot application running locally, it's time to move it to production. [Azure Spring Apps](https://learn.microsoft.com/azure/spring-apps/overview) makes it easy to deploy Spring Boot applications to Azure without any code changes. The service manages the infrastructure of Spring applications so developers can focus on their code. Azure Spring Apps provides lifecycle management using comprehensive monitoring and diagnostics, configuration management, service discovery, CI/CD integration, blue-green deployments, and more. To deploy your application to Azure Spring Apps, see [Deploy your first application to Azure Spring Apps](https://learn.microsoft.com/azure/spring-apps/quickstart?tabs=Azure-CLI).
Loading

0 comments on commit 1a32511

Please sign in to comment.