升级到 Spring Data Neo4j 4.0.0 时出现问题
Problems upgrading to Spring Data Neo4j 4.0.0
我正在尝试将项目升级到 Spring Data Neo4j 4.0.0,但我面临两个问题:
- MvnRepository 中缺少“spring-data-neo4j-rest”包(spring-data-neo4j-rest-4.0.0.jar returns 404 错误)。该包是否仍然存在并且应该存在,还是我应该从我的 pom.xml 中删除依赖项?
- 我的所有 DAO 中都出现了以下错误:
The method fetch(Set<...>) is undefined for the type Neo4jOperations
。该方法用于初始化延迟加载节点的集合。如何初始化节点的集合?
谢谢!
您是否阅读了为 SDN 4 提供的迁移指南?
http://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#migration
fetch 消失了,取而代之的是 fetch-depth
SDN-rest 也不再需要了(因为 SDN-4 都是关于远程连接的)。
我正在尝试将项目升级到 Spring Data Neo4j 4.0.0,但我面临两个问题:
- MvnRepository 中缺少“spring-data-neo4j-rest”包(spring-data-neo4j-rest-4.0.0.jar returns 404 错误)。该包是否仍然存在并且应该存在,还是我应该从我的 pom.xml 中删除依赖项?
- 我的所有 DAO 中都出现了以下错误:
The method fetch(Set<...>) is undefined for the type Neo4jOperations
。该方法用于初始化延迟加载节点的集合。如何初始化节点的集合?
谢谢!
您是否阅读了为 SDN 4 提供的迁移指南?
http://docs.spring.io/spring-data/neo4j/docs/current/reference/html/#migration
fetch 消失了,取而代之的是 fetch-depth SDN-rest 也不再需要了(因为 SDN-4 都是关于远程连接的)。