Skip to content

Instantly share code, notes, and snippets.

@krams915
Created March 8, 2012 03:16
Show Gist options
  • Save krams915/1998356 to your computer and use it in GitHub Desktop.
Save krams915/1998356 to your computer and use it in GitHub Desktop.
<?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