Created
March 8, 2012 03:16
-
-
Save krams915/1998356 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="UTF-8"?> | |
<beans xmlns="http://www.springframework.org/schema/beans" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:p="http://www.springframework.org/schema/p" | |
xmlns:tx="http://www.springframework.org/schema/tx" | |
xmlns:context="http://www.springframework.org/schema/context" | |
xmlns:jdbc="http://www.springframework.org/schema/jdbc" | |
xmlns:neo4j="http://www.springframework.org/schema/data/neo4j" | |
xmlns:util="http://www.springframework.org/schema/util" | |
xsi:schemaLocation=" | |
http://www.springframework.org/schema/beans | |
http://www.springframework.org/schema/beans/spring-beans-3.1.xsd | |
http://www.springframework.org/schema/tx | |
http://www.springframework.org/schema/tx/spring-tx-3.1.xsd | |
http://www.springframework.org/schema/context | |
http://www.springframework.org/schema/context/spring-context-3.1.xsd | |
http://www.springframework.org/schema/jdbc | |
http://www.springframework.org/schema/jdbc/spring-jdbc-3.1.xsd | |
http://www.springframework.org/schema/data/neo4j | |
http://www.springframework.org/schema/data/neo4j/spring-neo4j-2.0.xsd | |
http://www.springframework.org/schema/util | |
http://www.springframework.org/schema/util/spring-util-3.1.xsd"> | |
<context:property-placeholder properties-ref="deployProperties" /> | |
<!-- Activate Spring Data Neo4j repository support --> | |
<neo4j:repositories base-package="org.krams"/> | |
<neo4j:config storeDirectory="target/temp.db"/> | |
<!-- Service for initializing Neo4j with sample data. Currently disabled | |
due to an unconfirmed bug | |
<bean id="initNeo4jService" class="org.krams.service.InitNeo4jService" init-method="init"/> --> | |
</beans> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment