From d0b02cc7ddb240f3ac2c580cb34111d057e1fe0b Mon Sep 17 00:00:00 2001 From: Andres Taylor Date: Tue, 5 Apr 2011 08:54:27 +0200 Subject: [PATCH] More documentation changes --- src/docbkx/reference/neo4j-server.xml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) 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.