diff --git a/README.textile b/README.textile index 394dab1e3..8c84ca24c 100644 --- a/README.textile +++ b/README.textile @@ -1,4 +1,4 @@ -h1. Spring Data Graph - Quick start +h1. Spring Data Neo4j - Quick start
@NodeEntity @@ -47,7 +47,7 @@ h2. About The primary goal of the "Spring Data":http://www.springsource.org/spring-data project is to make it easier to build Spring-powered applications that use new data access technologies such as non-relational databases, map-reduce frameworks, and cloud based data services. As the name implies, the **Graph** project provides integration with graph value stores. The only supported Graph Database now is "Neo4j":http://neo4j.org/. -The Spring Data Graph project provides a simplified POJO based programming model that reduces that amount of boilerplate code needed to create neo4j applications. It also provides a cross-store persistence solution that can extend existing JPA data models with new parts (properties, entities, relationships) that are stored exclusively in the graph while being transparently integrated with the JPA entities. This enables for easy and seamless addition of new features that were not available before to JPA-based applications. +The Spring Data Neo4j project provides a simplified POJO based programming model that reduces that amount of boilerplate code needed to create neo4j applications. It also provides a cross-store persistence solution that can extend existing JPA data models with new parts (properties, entities, relationships) that are stored exclusively in the graph while being transparently integrated with the JPA entities. This enables for easy and seamless addition of new features that were not available before to JPA-based applications. h2. Maven configuration @@ -122,7 +122,7 @@ h2. Maven configuration h2. Spring configuration -* Configure Spring Data Graph for Neo4j in your application using the provided XML namespace: +* Configure Spring Data Neo4j for Neo4j in your application using the provided XML namespace:@@ -179,7 +179,7 @@ public class World { h2. Transactional services -* Create a repository or service to perform typical operations on your entities. The FinderFactory and Finder helper classes make searching easy for common use cases. The complete functionality is covered in the "reference manual":http://static.springsource.org/spring-data/data-graph/docs/current/reference/html/#programming-model. +* Create a repository or service to perform typical operations on your entities. The FinderFactory and Finder helper classes make searching easy for common use cases. The complete functionality is covered in the "reference manual":http://static.springsource.org/spring-data/data-neo4j/docs/current/reference/html/#programming-model.public interface WorldRepository extends GraphRepositoryTraversalDescription actors = Traversal.description() .relationships("ACTS_IN").filter(returnAllButStartNode()); -for (Node actors : actors.traverse(movie)) +for (Node actor : actors.traverse(movie)) ..., NamedIndexRepository {} @@ -238,7 +238,7 @@ Please see the "Hello Worlds sample project":https://github.com/SpringSource/spr h2. Getting Help -This README and the "User Guide":http://static.springsource.org/spring-data/data-graph/docs/current/reference/html/ are the best places to start learning about Spring Data Graph. There are also "three sample appilcations":https://github.com/SpringSource/spring-data-graph-examples briefly described in the reference documentation. +This README and the "User Guide":http://static.springsource.org/spring-data/data-neo4j/docs/current/reference/html/ are the best places to start learning about Spring Data Neo4j. There are also "three sample applications":https://github.com/SpringSource/spring-data-neo4j/tree/master/spring-data-neo4j-examples briefly described in the reference documentation. The main project "website":http://www.springsource.org/spring-data contains links to basic project information such as source code, JavaDocs, Issue tracking, etc. diff --git a/developer_notes.html b/developer_notes.html index a416199d8..5c05a801e 100644 --- a/developer_notes.html +++ b/developer_notes.html @@ -51,7 +51,7 @@ order by movie.title Transactional: TX needed for write operations
@@ -94,11 +94,11 @@ try { </beans>
<neo4j:config graphDatabaseService="gds"/> -<bean id="gds" class=”...ImpermanentGraphDatabase/>+<bean id="gds" class="...ImpermanentGraphDatabase"/>
<neo4j:config graphDatabaseService="rds"/> -<bean id="rds" class=”...SpringRestGraphDatabase/>+<bean id="rds" class="...SpringRestGraphDatabase"/>