Hi All,
I am newbie to neo4j graph database concept. I started learning neo4j
from reading neo4j manual and verious documentation over web. My
organization want to adopt neo4j due to business requirement. I installed
neo4j linux version 2.1.3 in one of the machine and trying to access graph
database service from spring based java application.
I am using spring framework version 3.2.8.RELEASE. I learned that
spring-data-neo4j provides embedded graph database.
I also learned that to access graph database we have to use
spring-data-neo4j-rest artifacts.
<dependency>
<groupId>org.springframework.data</groupId>
<artifactId>spring-data-neo4j-rest</artifactId>
<version>3.0.2.RELEASE</version>
</dependency>
Also add following spring configuration file,
<neo4j:config graphDatabaseService="graphDatabaseService"
base-package="com.example.company.projectname.data.domains"/>
<bean id="graphDatabaseService"
class="org.springframework.data.neo4j.rest.SpringRestGraphDatabase"
scope="singleton">
<constructor-arg index="0" value="http://10.17.192.95:7474/db/data"
/>
</bean>
I am not able to pull data from neo4j external servers. Would you
suggest ? what are all libraries are require to implements the solutions.
Thanks
--
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.