diff --git a/src/docbkx/reference/neo4j-server.xml b/src/docbkx/reference/neo4j-server.xml
index 59b3bb167..73b3da923 100644
--- a/src/docbkx/reference/neo4j-server.xml
+++ b/src/docbkx/reference/neo4j-server.xml
@@ -43,7 +43,9 @@ org.neo4j.server.thirdparty_jaxrs_classes=com.example.mypackage=/my-context
@@ -63,12 +65,13 @@ public class HelloWorldInitializer extends SpringPluginInitializer {
- The Java REST Driver is still under development, so performance and functionality might not be en
- par with Spring Data Graph.
+ The Neo4j REST API does not allow keeping transactions open, which means that SDG is not transactional
+ when running against REST.
+ To set up your project to use the REST bindings, add this dependency to your pom.xml:
REST-Client configuration - pom.xml
]]>
-
+ Now, you set up the normal SDG configuration, but point the database to an URL instead of a local file, like this:
+
REST-Client configuration - application context
@@ -89,8 +93,7 @@ public class HelloWorldInitializer extends SpringPluginInitializer {
]]>
-
-
+ Your project is now set up to work against a remote Neo4j Server.