Skip to content

Example of Micronaut native image generation using ArangoDB Java driver.

Notifications You must be signed in to change notification settings

arangodb-helper/arango-micronaut-native-example

 
 

Repository files navigation

arango-micronaut-native-example project

Example application using ArangoDB Java driver integrated with:

prerequisites

Start a local database:

SSL=true ./docker/start_db.sh

test

mvn test

test shaded

mvn test -Dshaded

native image

mvn package -Dpackaging=native-image
./target/demo
curl -X GET http://localhost:8080/version
curl -X GET http://localhost:8080/order

native image shaded

mvn package -Dpackaging=native-image -Dshaded
./target/demo
curl -X GET http://localhost:8080/version
curl -X GET http://localhost:8080/order

About

Example of Micronaut native image generation using ArangoDB Java driver.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Java 81.5%
  • Kotlin 11.3%
  • Shell 7.2%