diff --git a/src/docbkx/transformer.xml b/src/docbkx/transformer.xml index 1d29b54b3a..58587deef3 100644 --- a/src/docbkx/transformer.xml +++ b/src/docbkx/transformer.xml @@ -99,9 +99,9 @@ As added convenience, Spring Integration also provides Object-to-Map and Map-to-Object transformers which - utilize Spring Expression Language (SpEL) to serialize and de-serialize the object graphs to the most primitive - types (e.g., String, byte, int etc...). Object-to-Map transformer transforms Object graph to a Map where key is SpEL expression - and value is primitive or String: + utilize Spring Expression Language (SpEL) to serialize and de-serialize the object graphs. Object hierarchy is introspected + to the most primitive types (e.g., String, int etc.). The path to this type is described via SpEL, which becomes the keykey in the + transformed Map with primitive type being the value. For example: @@ -121,7 +121,7 @@ public class Child{ SpEL-based Map allows you to describe the object structure without sharing the actual types allowing - you to restore/rebuild the object graph into a different types if you maintain the convention. + you to restore/rebuild the object graph into a differently typed Object graph as long as you maintain the structure. For example: