Skip to content

Latest commit

 

History

History
 
 

cosmos-multi-database-single-account

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

Azure Spring Boot Sample Cosmos Multi Database Single Account for Java

This guide demonstrates how to use Azure Cosmos DB via azure-spring-data-cosmos to store data in and retrieve data from your Azure Cosmos DB.

What You Will Build

You will build an application to write data to and query data from Azure Cosmos DB via azure-spring-data-cosmos.

What You Need

Provision Azure Resources Required to Run This Sample

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.

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.

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": "your-username@domain.com",
      "type": "user"
    }
  }
]

If you have more than one subscription, specify the subscription-id you want to use with command below:

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

# 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

# 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:

azurecaf_name.resource_group: Creating...
azurecaf_name.cosmos: Creating...
azurerm_resource_group.main: Creating...
azurerm_cosmosdb_account.application: Creating...
...
...
azurerm_cosmosdb_account.application: Creation complete after 2m26s ...
azurerm_cosmosdb_sql_database.db: Creating...
...
azurerm_cosmosdb_sql_database.db: Creation complete after 41s ...
...
...
Apply complete! Resources: 5 added, 0 changed, 0 destroyed.

You can go to Azure portal 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

source ./terraform/setup_env.sh

Run with Powershell

terraform\setup_env.ps1

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

AZURE_COSMOS_URI=...
AZURE_COSMOS_KEY=...
AZURE_COSMOS_SECONDARY_KEY=...
AZURE_COSMOS_DATABASE=...

Run Locally

Run the sample with Maven

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

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.

Verify This Sample

Verify in your app’s logs that similar messages were posted:

...
Data added successfully .........
...
Get database1User 1024: 1024@geek.com 1k Mars .........
...
Get database2User 2048: 2048@geek.com 2k Mars .........

Verify Result: The corresponding data is added to cosmos database Result in Cosmos Database1 Result in Cosmos Database2

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

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

Run with Powershell

terraform -chdir=terraform destroy -auto-approve