diff --git a/src/docbkx/introduction/getting-started.xml b/src/docbkx/introduction/getting-started.xml index 6a9e9e66c..faeadc191 100644 --- a/src/docbkx/introduction/getting-started.xml +++ b/src/docbkx/introduction/getting-started.xml @@ -38,13 +38,16 @@
Following Development - For information on the Spring Data source code repository, nightly - builds and snapshot artifacts please see the Spring Data homepage. + For information on the Spring Data Mongo source code repository, + nightly builds and snapshot artifacts please see the Spring Data Mongo + homepage. You can help make Spring Data best serve the needs of the Spring community by interacting with developers through the Spring Community - forums. + forums. To follow + developer activity look for the mailing list information on the Spring + Data Mongo homepage. If you encounter a bug or want to suggest an improvement, please create a ticket on the Spring Data issue org.mongo.DB to communicate - directly with MongoDB. + directly with MongoDB. The goal with naming conventions on various API + artifacts is to copy those in the base MongoDB Java driver so you can easily + map your existing knowledge onto the Spring APIs.
Getting Started @@ -220,6 +222,15 @@ LoggingEventListener] - <onAfterConvert: { "_id" : "1234" , "name" : "Joe"}, MongoApp] - <Person [id=1234, name=Joe]>
+
+ Examples Repository + + There is an github + repository with several examples that you can download and play + around with to get a feel for how the library works. +
+
Connecting to MongoDB @@ -460,13 +471,14 @@ public class AppConfig { linkend="mongo.exception">exception translation for more information. - While there are many convenience methods on MongoTemplate to help - you easily perform common tasks if you should need to access the Mongo - driver API directly to access functionality not explicitly exposed by the - MongoTemplate you can use one of several Execute callback methods. These - will give you a reference to a Mongo Collection or DB object. Please see - the section Execution - Callbacks for more information. + While there are many convenience methods on + MongoTemplate to help you easily perform common + tasks if you should need to access the Mongo driver API directly to access + functionality not explicitly exposed by the MongoTemplate you can use one + of several Execute callback methods. These will give you a reference to a + Mongo Collection or DB object. Please see the section Execution Callbacks for more + information. Now let's look at a examples of how to work with the MongoTemplate in the context of the Spring