Hi,
Apologies in advance if I have missed a message on the topic (I did a search).
I am running a first junit test on arango and I am getting an exception when getting a document with the key after I stored it.
The message is:
java.util.concurrent.ExecutionException: com.arangodb.ArangoDBException: com.arangodb.velocypack.exception.VPackParserException: java.lang.InstantiationException: java.time.LocalDate
The object stored is:
{"id":"1","json":"json","actor":"toto","date":{"year":2021,"month":3,"day":23}}
The date field is of type LocalDate. ...
it fails in the call: collection.getDocument(key, TestClass.class).get();
There is a setter and getting for that field.
Thanks in advance-