Quickstart: Azure Cosmos DB for NoSQL library for Java
APPLIES TO: NoSQL
Get started with the Azure Cosmos DB for NoSQL client library for Java to query data in your containers and perform common operations on individual items. Follow these steps to deploy a minimal solution to your environment using the Azure Developer CLI.
API reference documentation | Library source code | Package (Maven) | Azure Developer CLI
Prerequisites
- An Azure account with an active subscription. Create an account for free.
- GitHub account
- An Azure account with an active subscription. Create an account for free.
- Azure Developer CLI
- Docker Desktop
Setting up
Deploy this project's development container to your environment. Then, use the Azure Developer CLI (azd
) to create an Azure Cosmos DB for NoSQL account and deploy a containerized sample application. The sample application uses the client library to manage, create, read, and query sample data.
Important
GitHub accounts include an entitlement of storage and core hours at no cost. For more information, see included storage and core hours for GitHub accounts.
Open a terminal in the root directory of the project.
Authenticate to the Azure Developer CLI using
azd auth login
. Follow the steps specified by the tool to authenticate to the CLI using your preferred Azure credentials.azd auth login
Use
azd init
to initialize the project.azd init --template cosmos-db-nosql-dotnet-quickstart
Note
This quickstart uses the azure-samples/cosmos-db-nosql-dotnet-quickstart template GitHub repository. The Azure Developer CLI will automatically clone this project to your machine if it is not already there.
During initialization, configure a unique environment name.
Tip
The environment name will also be used as the target resource group name. For this quickstart, consider using
msdocs-cosmos-db
.Deploy the Azure Cosmos DB account using
azd up
. The Bicep templates also deploy a sample web application.azd up
During the provisioning process, select your subscription and desired location. Wait for the provisioning process to complete. The process can take approximately five minutes.
Once the provisioning of your Azure resources is done, a URL to the running web application is included in the output.
Deploying services (azd deploy) (✓) Done: Deploying service web - Endpoint: <https://[container-app-sub-domain].azurecontainerapps.io> SUCCESS: Your application was provisioned and deployed to Azure in 5 minutes 0 seconds.
Use the URL in the console to navigate to your web application in the browser. Observe the output of the running app.
Install the client library
The client library is available through Maven, as the azure-spring-data-cosmos
package.
Navigate to the
/src/web
folder and open the pom.xml file.If it doesn't already exist, add an entry for the
azure-spring-data-cosmos
package.<dependency> <groupId>com.azure</groupId> <artifactId>azure-spring-data-cosmos</artifactId> </dependency>
Also, add another dependency for the
azure-identity
package if it doesn't already exist.<dependency> <groupId>com.azure</groupId> <artifactId>azure-identity</artifactId> </dependency>
Object model
Name | Description |
---|---|
EnableCosmosRepositories |
This type is a method decorator used to configure a repository to access Azure Cosmos DB for NoSQL. |
CosmosRepository |
This class is the primary client class and is used to manage data within a container. |
CosmosClientBuilder |
This class is a factory used to create a client used by the repository. |
Query |
This type is a method decorator used to specify the query that the repository executes. |
Code examples
The sample code in the template uses a database named cosmicworks
and container named products
. The products
container contains details such as name, category, quantity, a unique identifier, and a sale flag for each product. The container uses the /category
property as a logical partition key.
Authenticate the client
Application requests to most Azure services must be authorized. Use the DefaultAzureCredential
type as the preferred way to implement a passwordless connection between your applications and Azure Cosmos DB for NoSQL. DefaultAzureCredential
supports multiple authentication methods and determines which method should be used at runtime.
Important
You can also authorize requests to Azure services using passwords, connection strings, or other credentials directly. However, this approach should be used with caution. Developers must be diligent to never expose these secrets in an unsecure location. Anyone who gains access to the password or secret key is able to authenticate to the database service. DefaultAzureCredential
offers improved management and security benefits over the account key to allow passwordless authentication without the risk of storing keys.
First, this sample creates a new class that inherits from AbstractCosmosConfiguration
to configure the connection to Azure Cosmos DB for NoSQL.
@Configuration
@EnableCosmosRepositories
public class CosmosConfiguration extends AbstractCosmosConfiguration {
}
Within the configuration class, this sample creates a new instance of the CosmosClientBuilder
class and configures authentication using a DefaultAzureCredential
instance.
@Bean
public CosmosClientBuilder getCosmosClientBuilder() {
DefaultAzureCredential credential = new DefaultAzureCredentialBuilder()
.build();
return new CosmosClientBuilder()
.endpoint("<azure-cosmos-db-nosql-account-endpoint>")
.credential(credential);
}
Get a database
In the configuration class, the sample implements a method to return the name of the existing database named cosmicworks
.
@Override
protected String getDatabaseName() {
return "cosmicworks";
}
Get a container
Use the Container
method decorator to configure a class to represent items in a container. Author the class to include all of the members you want to serialize into JSON. In this example, the type has a unique identifier, and fields for category, name, quantity, price, and clearance.
@Container(containerName = "products", autoCreateContainer = false)
public class Item {
private String id;
private String name;
private Integer quantity;
private Boolean sale;
@PartitionKey
private String category;
// Extra members omitted for brevity
}
Create an item
Create an item in the container using repository.save
.
Item item = new Item(
"70b63682-b93a-4c77-aad2-65501347265f",
"gear-surf-surfboards",
"Yamba Surfboard",
12,
false
);
Item created_item = repository.save(item);
Read an item
Perform a point read operation by using both the unique identifier (id
) and partition key fields. Use repository.findById
to efficiently retrieve the specific item.
PartitionKey partitionKey = new PartitionKey("gear-surf-surfboards");
Optional<Item> existing_item = repository.findById("70b63682-b93a-4c77-aad2-65501347265f", partitionKey);
if (existing_item.isPresent()) {
// Do something
}
Query items
Perform a query over multiple items in a container by defining a query in the repository's interface. This sample uses the Query
method decorator to define a method that executes this parameterized query:
SELECT * FROM products p WHERE p.category = @category
@Repository
public interface ItemRepository extends CosmosRepository<Item, String> {
@Query("SELECT * FROM products p WHERE p.category = @category")
List<Item> getItemsByCategory(@Param("category") String category);
}
Fetch all of the results of the query using repository.getItemsByCategory
. Loop through the results of the query.
List<Item> items = repository.getItemsByCategory("gear-surf-surfboards");
for (Item item : items) {
// Do something
}