On Sat, Dec 1, 2012 at 11:40 PM, GraphGuru <unittesting
...@gmail.com> wrote:
> What is the name of the file and it's location where this configuration
> information should go?
> On Sunday, November 25, 2012 2:56:46 PM UTC, Abdul Azeez Shaik wrote:
>> Hi,
>> You can find the documentations for configuration in 21st chapter of
>> 'Good Relationships' doc, here is the link for the same, http://static.**
>> springsource.org/spring-data/**data-neo4j/docs/2.1.0.RELEASE/**
>> reference/html/<http://static.springsource.org/spring-data/data-neo4j/docs/2.1.0.RELE...>
>> Also, please find below the sample configuration,
>> <context:annotation-config />
>> <context:spring-configured />
>> <!-- Neo4j configuration (creates Neo4jTemplate) -->
>> <neo4j:config graphDatabaseService="**graphDatabaseService"/>
>> <!-- REST Connection to Neo4j server -->
>> <bean class="org.springframework.**data.neo4j.rest.**
>> SpringRestGraphDatabase" id="graphDatabaseService">
>> <constructor-arg index="0" value="#{systemEnvironment['**
>> NEO4J_REST_URL']}"/>
>> <constructor-arg index="1" value="#{systemEnvironment['**NEO4J_LOGIN']}"
>> />
>> <constructor-arg index="2" value="#{systemEnvironment['**
>> NEO4J_PASSWORD']}"/>
>> <!--<constructor-arg index="0" value="http://localhost:7474/**db/data<http://localhost:7474/db/data>"
>> />-->
>> </bean>
>> <!-- Package w/ automatic repositories -->
>> <neo4j:repositories base-package="org.netvogue.**
>> server.neo4japi.repository" />
>> <context:component-scan base-package="org.netvogue.**server.neo4japi"/>
>> <context:property-placeholder location="classpath*:*.**properties"/>
>> Thanks,
>> Abdul
>> On Sun, Nov 25, 2012 at 6:35 PM, GraphGuru <unittes...@gmail.com> wrote:
>>> I
>> --