You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Exception in thread "main" com.arangodb.ArangoDBException: No JsonFactory found for content type: JSON
at [email protected]/com.arangodb.serde.jackson.JacksonMapperProvider.of(JacksonMapperProvider.java:50)
at [email protected]/com.arangodb.serde.jackson.JacksonSerde.of(JacksonSerde.java:26)
at [email protected]/com.arangodb.serde.jackson.json.JacksonJsonSerdeProvider.create(JacksonJsonSerdeProvider.java:11)
at [email protected]/com.arangodb.internal.config.ArangoConfig.getUserDataSerde(ArangoConfig.java:265)
at [email protected]/com.arangodb.internal.config.ArangoConfig.getInternalSerde(ArangoConfig.java:271)
at [email protected]/com.arangodb.internal.net.Communication.<init>(Communication.java:36)
at com.arangodb.http.HttpCommunication.<init>(HttpCommunication.java:39)
at com.arangodb.http.HttpProtocolProvider.createProtocol(HttpProtocolProvider.java:33)
at [email protected]/com.arangodb.ArangoDB$Builder.build(ArangoDB.java:399)
at net.yura.arango/net.yura.arango.FirstProject.main(FirstProject.java:25)
The text was updated successfully, but these errors were encountered:
do not require Jackson in your module-info.java (and remove related code usages), or
use the shaded Java driver (com.arangodb:arangodb-java-driver-shaded) and the shaded Jackson classes (from package com.arangodb.shaded.fasterxml.jackson), or
use the shaded Java driver (com.arangodb:arangodb-java-driver-shaded) and the Jackson JSON serde (com.arangodb:jackson-serde-json) and manually configure the JSON serde:
I downloaded https://github.com/arangodb/arangodb-java-driver/tree/main/tutorial/maven
and added my projects module-info.java, and the example stopped working
arangodb-java-driver-demo.zip
The text was updated successfully, but these errors were encountered: