Introducing the Azure DocumentDB Java SDK
We are pleased to announce the release of the Azure DocumentDB Java SDK!
The Java SDK allows you to easily create, read, update, and delete various DocumentDB resources as well as manage advanced configuration settings.
As usual, you can find all of the source code available via github:
git clone git://github.com/Azure/azure-documentdb-java.git
As a fully open-sourced SDK, we love and welcome your contributions. Please follow the instructions provided in the Azure Projects Contributions Guidelines.
You can also get the latest binaries, ready to use within your project, via Maven:
<dependency>
<groupId>com.microsoft.azure</groupId>
<artifactId>azure-documentdb</artifactId>
<version>0.9.0</version>
</dependency>
For more information on DocumentDB, Microsoft’s fully managed NoSQL document database service in the cloud, go here.
We have published a quick tutorial on how to create a Java web application on top of DocumentDB to help you get started.
If you need any help, please reach out to us on the Azure DocumentDB Developer Forums on MSDN or the developer forums on stack overflow.
Comments
- Anonymous
May 26, 2015
Just started to play with this but see that you have coupled junit as a run time dependency - why? I've never seen such an approach to include the tests & testing frameworks in the deployable artifacts? something smells..