Saturday 18 September 2021

Introduction to Java ArangoDB driver

In this tutorial series, I am going to explain how to talk to ArangoDB using Java driver.

 

Dependencies used

<dependencies>
  <dependency>
    <groupId>com.arangodb</groupId>
    <artifactId>arangodb-java-driver</artifactId>
    <version>6.12.1</version>
  </dependency>

  <dependency>
    <groupId>com.arangodb</groupId>
    <artifactId>jackson-dataformat-velocypack</artifactId>
    <version>2.0.0</version>
  </dependency>

</dependencies>

 

You can download all the examples of this tutorial from below link.

https://github.com/harikrishna553/arangodb-tutorial

 

 

 

Previous                                                    Next                                                    Home

No comments:

Post a Comment