2016-12-03 136 views
0

我已经下载了最新版本的春数据的Neo4j/OGM - java.lang.NoSuchMethodError:org.neo4j.ogm.session.Session.load

<neo4j.version>3.0.7</neo4j.version> 
    <spring-data-neo4j.version>4.2.0.BUILD-SNAPSHOT</spring-data-neo4j.version> 
    <neo4j-ogm.version>2.1.0-SNAPSHOT</neo4j-ogm.version> 

而现在我的生成失败,出现以下异常:

java.lang.NoSuchMethodError: org.neo4j.ogm.session.Session.load(Ljava/lang/Class;Ljava/lang/Object;)Ljava/lang/Object; 
    at org.springframework.data.neo4j.repository.support.SimpleGraphRepository.findOne(SimpleGraphRepository.java:86) 
    at org.springframework.data.neo4j.repository.support.SimpleGraphRepository.findOne(SimpleGraphRepository.java:42) 
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source) 
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source) 
    at java.lang.reflect.Method.invoke(Unknown Source) 
    at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.executeMethodOn(RepositoryFactorySupport.java:503) 
    at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.doInvoke(RepositoryFactorySupport.java:488) 
    at org.springframework.data.repository.core.support.RepositoryFactorySupport$QueryExecutorMethodInterceptor.invoke(RepositoryFactorySupport.java:460) 
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) 
    at org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor.invoke(DefaultMethodInvokingMethodInterceptor.java:61) 
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) 
    at org.springframework.transaction.interceptor.TransactionInterceptor$1.proceedWithInvocation(TransactionInterceptor.java:99) 
    at org.springframework.transaction.interceptor.TransactionAspectSupport.invokeWithinTransaction(TransactionAspectSupport.java:281) 
    at org.springframework.transaction.interceptor.TransactionInterceptor.invoke(TransactionInterceptor.java:96) 
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) 
    at org.springframework.dao.support.PersistenceExceptionTranslationInterceptor.invoke(PersistenceExceptionTranslationInterceptor.java:136) 
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) 
    at org.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:92) 
    at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:179) 
    at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:213) 
    at com.sun.proxy.$Proxy122.findOne(Unknown Source) 

修订

加入导致该异常的代码:

@Repository 
public interface CharacteristicRepository extends GraphRepository<Characteristic> { 
.... 
} 

characteristicRepository.findOne(id); 

如何解决?

+0

您可以添加导致此异常的代码吗? – digx1

+0

当然,我用代码更新了我的问题 – alexanoid

回答

1

请使用具有当前SDN快照的OGM的2.1.0-RC1。 SDN的RC1已被推迟,因此两个项目的快照都有点不同步。最新的OGM代码随后超越SDN。这两个快照在RC1发布后应该再次运行。