DATAMONGO-2090 - Include documentation about Object Mapping Fundamentals.

Related ticket: DATACMNS-1374.
This commit is contained in:
Mark Paluch
2018-09-18 13:24:34 +02:00
parent fa5f523c92
commit 3478fd5ab3

View File

@@ -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