DATAGRAPH-765 - Documentation updates.

This commit is contained in:
Luanne Misquitta
2016-01-19 11:46:00 +05:30
parent 3fed8624b8
commit a3b82cfbdf
2 changed files with 6 additions and 4 deletions

View File

@@ -5,7 +5,7 @@ Michael Hunger; Oliver Gierke; Vince Bickers; Adam George; Luanne Misquitta; Mic
:revnumber: {version}
:revdate: {localdate}
Spring Data Neo4j Version 4.1 (October 2015)
Spring Data Neo4j Version 4.1 (January 2016)
(C) 2010-2016 Graph Aware Ltd - Neo Technology, Inc. - Pivotal Software, Inc.

View File

@@ -186,7 +186,7 @@ public Configuration getConfiguration() {
config
.driverConfiguration()
.setDriverClassName
("org.neo4j.ogm.drivers.embedded.driver.EmbeddedDriver")
("org.neo4j.ogm.drivers.embedded.driver.EmbeddedDriver");
return config;
}
----
@@ -269,8 +269,10 @@ _Note: Currently only Basic Authentication is supported by Neo4j, so the only Cr
</dependency>
----
Please note: In SDN 4.1, the `InProcessServer` has been deprecated. This class was used to set up an in-memory Http server so that you could run your tests. This is no longer appropriate given the new Driver mechanism, and we recommend you configure an Embedded Driver for your integration tests.
[NOTE]
====
In SDN 4.1, the `InProcessServer` has been deprecated. This class was used to set up an in-memory Http server so that you could run your tests. This is no longer appropriate given the new Driver mechanism, and we recommend you configure an Embedded Driver for your integration tests.
====
=== SessionFactory Bean
The `SessionFactory` is needed by SDN to create instances of `org.neo4j.ogm.session.Session` as required.