DATAGRAPH-842 - Documentation updates.

This commit is contained in:
Luanne Misquitta
2016-03-31 21:34:11 +05:30
parent c467720ac6
commit fc9fc91701
3 changed files with 6 additions and 2 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 (March 2016)
Spring Data Neo4j Version 4.1 (April 2016)
(C) 2010-2016 Graph Aware Ltd - Neo Technology, Inc. - Pivotal Software, Inc.

View File

@@ -43,7 +43,7 @@ Spring Data Commons provides a very powerful repository infrastructure that is a
Those repositories consist of a composition of interfaces that declare the available functionality in each repository.
The implementation details of commonly-used persistence methods are handled by the library, which makes them very convenient for typical CRUD and query operations.
The repositories are extensible by annotated, named or derived finder methods (like in (G)Rails).
For custom implementations of repository methods you are free to add your own code. (<<reference_programming_model_repositories,CRUD with repositories>>).
For custom implementations of repository methods you are free to add your own code. (<<reference_programming-model_repositories,CRUD with repositories>>).
== Neo4jTemplate
Being a Spring Data library, Spring Data Neo4j offers a <<reference_programming_model_template,Neo4jTemplate>> for interacting with the mapped entities and the Neo4j graph database if you don't want to use repositories.

View File

@@ -141,3 +141,7 @@ Custom converters are also specified by using `@Convert` - this is discussed in
Node property names can be explicitly assigned by setting the `name` attribute.
For example `@Property(name="last_name") String lastName`. The node property name defaults to the field name when not specified.
[NOTE]
====
Property fields to be persisted to the graph must not be declared `final`.
====