diff --git a/src/docbkx/reference/mongodb.xml b/src/docbkx/reference/mongodb.xml
index 516d4ad10..052fdc586 100644
--- a/src/docbkx/reference/mongodb.xml
+++ b/src/docbkx/reference/mongodb.xml
@@ -142,7 +142,7 @@
The repository is also browseable
- here.
+ here.
You may also want to set the logging level to DEBUG to see some
additional information, edit the log4j.properties file and add
@@ -707,6 +707,59 @@ Number of people = : 0
The query stynax used in the example is explained in more detail in
the section Querying Documents.
+
+ How the '_id' field is handled in the mapping layer
+
+ Mongo requires that you have an '_id' field for all documents. If
+ you don't provide one the driver will assign a ObjectId with a generated
+ value. When using the MongoMappingConverter there
+ are certain rules that govern how properties from the Java class is
+ mapped to this '_id' field.
+
+ The following outlines what property will be mapped to the '_id'
+ field:
+
+
+
+ A property or field annotated with
+ @Id
+ (org.springframework.data.annotation.Id)
+ will be mapped to the '_id' field.
+
+
+
+ A property or field named id will be
+ mapped to the '_id' field.
+
+
+
+ A property or field declared as a String in the Java class
+ will be converted to and stored as an ObjectId if possible
+ (conversions and rules would be handled by the Mongo Java driver).
+ If it cannot be converted to an ObjectId, then the value will be
+ stored as a string in the database.
+
+
+
+ A property or field declared as anything but a String in the
+ Java class will be stored as the type it is declared as, which
+ means it must be one of the basic types supported by the Mongo
+ Java driver.
+
+
+
+ If no field or property specified above is present in the Java
+ class then an implicit '_id' file will be generated by the driver but
+ not mapped to a property or field of the Java class.
+
+ When querying and updating the JdbcTemplate
+ will use the converter to handle conversions of the
+ Query and Update objects
+ that correspond to the above rules for saving documents so field names
+ and types used in your queries will be able to match what is in your
+ domain classes.
+
+
Methods for saving and inserting documents