I'm trying to upgrade a project to Spring Data Neo4j 4.0.0 and I'm facing two problems :
- The "spring-data-neo4j-rest" package is missing at MvnRepository (spring-data-neo4j-rest-4.0.0.jar returns 404 error). Does the package still exist and should be there, or should I just delete the dependency from my pom.xml?
- I've got the following error :
The method fetch(Set<...>) is undefined for the type Neo4jOperations
in all my DAOs. The method was used to initialize collections of lazily loaded nodes. How can I initialize a node's collections?
Thanks!