Sample Helidon MP project that includes multiple REST operations.
Start a local database:
SSL=true ./docker/start_db.sh
With JDK21
mvn package
java -jar target/arango-helidon-native-example.jar
Basic:
curl -X GET http://localhost:8080/version
{"license":"COMMUNITY","server":"arango","version":"3.12.0-2"}
You can build a native binary using Maven as follows:
mvn -Pnative-image package -DskipTests
You can then execute your native executable with:
./target/arango-helidon-native-example
You can build a native binary using Maven as follows:
mvn -Pnative-image package -DskipTests -Dshaded