From 3478fd5ab37985baddf0b1f4da7e464123bdd86a Mon Sep 17 00:00:00 2001 From: Mark Paluch Date: Tue, 18 Sep 2018 13:24:34 +0200 Subject: [PATCH] DATAMONGO-2090 - Include documentation about Object Mapping Fundamentals. Related ticket: DATACMNS-1374. --- src/main/asciidoc/reference/mapping.adoc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/main/asciidoc/reference/mapping.adoc b/src/main/asciidoc/reference/mapping.adoc index 2f863ebcd..d7be327d3 100644 --- a/src/main/asciidoc/reference/mapping.adoc +++ b/src/main/asciidoc/reference/mapping.adoc @@ -3,7 +3,9 @@ Rich mapping support is provided by the `MappingMongoConverter`. `MappingMongoConverter` has a rich metadata model that provides a full feature set to map domain objects to MongoDB documents. The mapping metadata model is populated by using annotations on your domain objects. However, the infrastructure is not limited to using annotations as the only source of metadata information. The `MappingMongoConverter` also lets you map objects to documents without providing any additional metadata, by following a set of conventions. -This section describes the features of the `MappingMongoConverter`, including how to use conventions for mapping objects to documents and how to override those conventions with annotation-based mapping metadata. +This section describes the features of the `MappingMongoConverter`, including fundamentals, how to use conventions for mapping objects to documents and how to override those conventions with annotation-based mapping metadata. + +include::../{spring-data-commons-docs}/object-mapping.adoc[leveloffset=+1] [[mapping-conventions]] == Convention-based Mapping