本文介绍了一起使用Spring-data-MongoDB和Spring-data-new 4j的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何在同一个Spring-Boot应用程序中使用Spring-data-mongoDB和Spring-data-new 4j?

遵循《入门指南》,我可以很容易地使用其中的一个,但只要我尝试将Neo4J添加到MongoDB应用程序中,我就会收到运行时错误,如:

org.springframework.beans.factory.UnsatisfiedDependencyException: Error creating bean with name 'application': Unsatisfied dependency expressed through field 'repository'; nested exception is org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'bookRepository': Invocation of init method failed; nested exception is org.springframework.data.mapping.PropertyReferenceException: No property findAll found for type MongoBook!

我在https://github.com/afaulconbridge/myspring-mongo-neo

设置了一个最小示例

推荐答案

正如@Manish指出的,您需要让Spring data MongoDB和Spring data Neo4J扫描不同的包。即

@EnableMongoRepositories(basePackageClasses=MongoBook.class)
@EnableNeo4jRepositories(basePackageClasses=NeoAuthor.class)

我已使用解决方案更新了https://github.com/afaulconbridge/myspring-mongo-neo处的示例项目。

这篇关于一起使用Spring-data-MongoDB和Spring-data-new 4j的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-03 11:37