Hi 

I am developing application that is trying to access Neo4J server data base 
using REST. I am using spring data for neo4j rest. Below is my pom.xml. Can 
any body provide me full maven dependency so that i can proceed.

<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"; 
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 
http://maven.apache.org/xsd/maven-4.0.0.xsd";>
    <modelVersion>4.0.0</modelVersion>

    <groupId>org.springframework</groupId>
    <artifactId>gs-accessing-neo4j-data-rest</artifactId>
    <version>0.1.0</version>

    <parent>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>1.2.2.RELEASE</version>
    </parent>
    <dependencies>
    <dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
</dependency>
<!-- dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-neo4j</artifactId>
        <version>2.4.0.BUILD-SNAPSHOT</version>
    </dependency-->
    <dependency>
    <groupId>org.neo4j</groupId>
    <artifactId>neo4j-rest-graphdb</artifactId>
    <version>2.0.1</version>
    <exclusions>
                <exclusion>
                    <groupId>org.neo4j</groupId>
                    <artifactId>neo4j-kernel</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.neo4j</groupId>
                    <artifactId>neo4j-lucene-index</artifactId>
                </exclusion>
            </exclusions>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>1.1.1</version>
</dependency>

   <dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter</artifactId>
   </dependency>
    <dependency>
        <groupId>org.springframework.data</groupId>
        <artifactId>spring-data-neo4j-rest</artifactId>
        <version>2.2.0.RELEASE</version>
        <exclusions>
        <exclusion>
        <artifactId>neo4j-kernel</artifactId>
        <groupId>org.neo4j</groupId>
        </exclusion>
        </exclusions>
    </dependency>
    
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-neo4j</artifactId>
            <version>2.2.0.RELEASE</version>
            <exclusions>
                <exclusion>
                    <groupId>org.springframework.data</groupId>
                    <artifactId>spring-data-commons-core</artifactId>
                </exclusion>
                 <exclusion>
                    <groupId>org.neo4j</groupId>
                    <artifactId>neo4j</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-commons-core</artifactId>
            <version>1.2.0.RELEASE</version>
        </dependency>
<dependency>
<groupId>org.hibernate</groupId>
<artifactId>hibernate-validator</artifactId>
</dependency>
<dependency>
<groupId>javax.el</groupId>
<artifactId>javax.el-api</artifactId>
<version>2.2.4</version>
</dependency>
    </dependencies>
 
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
        </plugins>
    </build>
<repositories>
        <repository>
            <id>spring-maven-release</id>
            <name>Spring Maven Release Repository</name>
            <url>http://maven.springframework.org/release</url>
        </repository>
        <repository>
        <id>neo4j-release-repository</id>
        <name>Neo4j Maven 2 release repository</name>
        <url>http://m2.neo4j.org/content/repositories/releases/</url>
        <releases>
            <enabled>true</enabled>
        </releases>
        <snapshots>
            <enabled>false</enabled>
        </snapshots>
    </repository>
        <repository>
            <id>neo4j</id>
            <name>Neo4j</name>
            <url>http://org.neo4j</url>
        </repository>
</repositories>
</project> 

Still i am not able to run the project sucessfully.

*org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'app': Injection of autowired dependencies failed; nested 
exception is org.springframework.beans.factory.BeanCreationException: Could 
not autowire field: 
unityconnection.calltree.dal.UnityConnectionRepositories 
unityconnection.calltree.App.personRepository; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'unityConnectionRepositories': Cannot resolve reference to 
bean 'neo4jTemplate' while setting bean property 'neo4jTemplate'; nested 
exception is org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'neo4jTemplate' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.Neo4jTemplate]: Factory method 
'neo4jTemplate' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mappingInfrastructure' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:334)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1202)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:537)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)*
* at 
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)*
* at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:755)*
* at 
org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:757)*
* at 
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:480)*
* at 
org.springframework.boot.SpringApplication.refresh(SpringApplication.java:686)*
* at 
org.springframework.boot.SpringApplication.run(SpringApplication.java:320)*
* at 
org.springframework.boot.SpringApplication.run(SpringApplication.java:957)*
* at 
org.springframework.boot.SpringApplication.run(SpringApplication.java:946)*
* at unityconnection.calltree.App.main(App.java:136)*
*Caused by: org.springframework.beans.factory.BeanCreationException: Could 
not autowire field: 
unityconnection.calltree.dal.UnityConnectionRepositories 
unityconnection.calltree.App.personRepository; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'unityConnectionRepositories': Cannot resolve reference to 
bean 'neo4jTemplate' while setting bean property 'neo4jTemplate'; nested 
exception is org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'neo4jTemplate' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.Neo4jTemplate]: Factory method 
'neo4jTemplate' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mappingInfrastructure' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:561)*
* at 
org.springframework.beans.factory.annotation.InjectionMetadata.inject(InjectionMetadata.java:88)*
* at 
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor.postProcessPropertyValues(AutowiredAnnotationBeanPostProcessor.java:331)*
* ... 15 common frames omitted*
*Caused by: org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'unityConnectionRepositories': Cannot resolve 
reference to bean 'neo4jTemplate' while setting bean property 
'neo4jTemplate'; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'neo4jTemplate' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.Neo4jTemplate]: Factory method 
'neo4jTemplate' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mappingInfrastructure' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:359)*
* at 
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveValueIfNecessary(BeanDefinitionValueResolver.java:108)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyPropertyValues(AbstractAutowireCapableBeanFactory.java:1469)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.populateBean(AbstractAutowireCapableBeanFactory.java:1214)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:537)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)*
* at 
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)*
* at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.findAutowireCandidates(DefaultListableBeanFactory.java:1120)*
* at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.doResolveDependency(DefaultListableBeanFactory.java:1044)*
* at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.resolveDependency(DefaultListableBeanFactory.java:942)*
* at 
org.springframework.beans.factory.annotation.AutowiredAnnotationBeanPostProcessor$AutowiredFieldElement.inject(AutowiredAnnotationBeanPostProcessor.java:533)*
* ... 17 common frames omitted*
*Caused by: org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'neo4jTemplate' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.Neo4jTemplate]: Factory method 
'neo4jTemplate' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mappingInfrastructure' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:599)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1111)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1006)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:504)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)*
* at 
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)*
* at 
org.springframework.beans.factory.support.BeanDefinitionValueResolver.resolveReference(BeanDefinitionValueResolver.java:351)*
* ... 30 common frames omitted*
*Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
instantiate [org.springframework.data.neo4j.support.Neo4jTemplate]: Factory 
method 'neo4jTemplate' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'mappingInfrastructure' defined in class path resource 
[unityconnection/calltree/App$ApplicationConfig.class]: Bean instantiation 
via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)*
* ... 39 common frames omitted*
*Caused by: org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'mappingInfrastructure' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:599)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1111)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1006)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:504)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)*
* at 
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)*
* at 
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:285)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.mappingInfrastructure(<generated>)*
* at 
org.springframework.data.neo4j.config.Neo4jConfiguration.neo4jTemplate(Neo4jConfiguration.java:136)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.CGLIB$neo4jTemplate$3(<generated>)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea$$FastClassBySpringCGLIB$$e91d4a82.invoke(<generated>)*
* at 
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)*
* at 
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:309)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.neo4jTemplate(<generated>)*
* 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.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162)*
* ... 40 common frames omitted*
*Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
instantiate 
[org.springframework.data.neo4j.support.MappingInfrastructureFactoryBean]: 
Factory method 'mappingInfrastructure' threw exception; nested exception is 
org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'typeRepresentationStrategyFactory' defined in class path 
resource [unityconnection/calltree/App$ApplicationConfig.class]: Bean 
instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)*
* ... 61 common frames omitted*
*Caused by: org.springframework.beans.factory.BeanCreationException: Error 
creating bean with name 'typeRepresentationStrategyFactory' defined in 
class path resource [unityconnection/calltree/App$ApplicationConfig.class]: 
Bean instantiation via factory method failed; nested exception is 
org.springframework.beans.BeanInstantiationException: Failed to instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:599)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateUsingFactoryMethod(AbstractAutowireCapableBeanFactory.java:1111)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBeanInstance(AbstractAutowireCapableBeanFactory.java:1006)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:504)*
* at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:476)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:303)*
* at 
org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:299)*
* at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:194)*
* at 
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:322)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.typeRepresentationStrategyFactory(<generated>)*
* at 
org.springframework.data.neo4j.config.Neo4jConfiguration.mappingInfrastructure(Neo4jConfiguration.java:104)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.CGLIB$mappingInfrastructure$6(<generated>)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea$$FastClassBySpringCGLIB$$e91d4a82.invoke(<generated>)*
* at 
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)*
* at 
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:309)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.mappingInfrastructure(<generated>)*
* 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.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162)*
* ... 62 common frames omitted*
*Caused by: org.springframework.beans.BeanInstantiationException: Failed to 
instantiate 
[org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory]:
 
Factory method 'typeRepresentationStrategyFactory' threw exception; nested 
exception is java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:189)*
* at 
org.springframework.beans.factory.support.ConstructorResolver.instantiateUsingFactoryMethod(ConstructorResolver.java:588)*
* ... 83 common frames omitted*
*Caused by: java.lang.AbstractMethodError: 
org.springframework.data.neo4j.rest.SpringRestGraphDatabase.getReferenceNode()Lorg/neo4j/graphdb/Node;*
* at 
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory.isAlreadySubRef(TypeRepresentationStrategyFactory.java:71)*
* at 
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory.chooseStrategy(TypeRepresentationStrategyFactory.java:56)*
* at 
org.springframework.data.neo4j.support.typerepresentation.TypeRepresentationStrategyFactory.<init>(TypeRepresentationStrategyFactory.java:40)*
* at 
org.springframework.data.neo4j.config.Neo4jConfiguration.typeRepresentationStrategyFactory(Neo4jConfiguration.java:151)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.CGLIB$typeRepresentationStrategyFactory$24(<generated>)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea$$FastClassBySpringCGLIB$$e91d4a82.invoke(<generated>)*
* at 
org.springframework.cglib.proxy.MethodProxy.invokeSuper(MethodProxy.java:228)*
* at 
org.springframework.context.annotation.ConfigurationClassEnhancer$BeanMethodInterceptor.intercept(ConfigurationClassEnhancer.java:309)*
* at 
unityconnection.calltree.App$ApplicationConfig$$EnhancerBySpringCGLIB$$b57f47ea.typeRepresentationStrategyFactory(<generated>)*
* 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.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:162)*
* ... 84 common frames omitted*

-- 
You received this message because you are subscribed to the Google Groups 
"Neo4j" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to