我正在使用SpringBoot 1.5.4.RELEASE,ArangoDB Java驱动程序4.5.0,Arango Spring Data 1.1.5
检索对象时出现此错误。
com.arangodb.velocypack.exception.VPackParserException: java.lang.InstantiationException: com.arangodb.springframework.core.convert.DBEntity
我还没有找到根本原因(仍在寻找),但是我可以看到在哪里抛出了错误,在VPack类中有此方法
private <T> T createInstance(final Type type) throws InstantiationException, IllegalAccessException {
final T entity;
final VPackInstanceCreator<?> creator = instanceCreators.get(type);
if (creator != null) {
entity = (T) creator.createInstance();
} else if (type instanceof ParameterizedType) {
entity = createInstance(((ParameterizedType) type).getRawType());
} else {
entity = ((Class<T>) type).newInstance();
}
return entity;
}
但是传入的类型是接口
com.arangodb.springframework.core.convert.DBEntity
。没有创建者,它也不是参数化类型,因此调用newInstance。这当然会失败。这似乎源自find方法中的
ArangoTemplate
。这是传递DBEntity.class的位置。 @Override
public <T> Optional<T> find(final String id, final Class<T> entityClass, final DocumentReadOptions options)
throws DataAccessException {
try {
final DBEntity doc = _collection(entityClass, id).getDocument(determineDocumentKeyFromId(id),
DBEntity.class, options);
return Optional.ofNullable(fromDBEntity(entityClass, doc));
} catch (final ArangoDBException e) {
throw translateExceptionIfPossible(e);
}
}
我正在尝试创建一个将按需生成此测试的测试。如果我成功,我会在这里发布。
谢谢,
西蒙
最佳答案
通常不会发生这种情况,因为存在VPackDeseralizer for DBEntity。您是否已覆盖AbstractArangoConfiguration.arangoTemplate()
?在这种情况下,您已删除了基础驱动程序的所需配置。