ClassNotFound:spring-data-neo4j-rest 3.3.0中的UpdateableState

时间:2015-06-09 10:58:55

标签: spring neo4j spring-data spring-data-neo4j

示例应用程序SampleMovieApplication https://github.com/neo4j-contrib/developer-resources/tree/gh-pages/language-guides/java/spring-data-neo4j在运行spring-data-neo4j-rest版本3.2.0.RELEASE时没有遇到任何问题,但它使用3.3.0.RELEASE获得了ClassNotFound异常。缺少类org.springframework.data.neo4j.core.UpdateableState。有谁知道这个课程会发生什么,以及如何避免这个错误?

1 个答案:

答案 0 :(得分:0)

在SDN-rest 3.3.0和SDN 3.2.2之间似乎存在不正确的依赖性问题。

如果我还在pom中添加了SDN-3.3.0依赖项,那么它可以工作。非常感谢提醒。

public static void main(String[] args) {
    int[] array = getRandNums();
    for (int i=0; i< array.length; ++i) {
       System.out.print(" | " + arra[i]);
    }
    System.out.println(" | ");
}