Hi,
I'd like to map nested form beans to Json in a flattened manner. For example:
mapping to:Code:A (bean) --prop x = v1 --B (bean) ----prop y = v2
This would be similar to the way spring form tags handling 'path' attribute. Has anyone tried such thing using Jackson mapper?Code:{ "data" : { "A.x" : "v1", "A.B.y" : "v2" } }
Thanks,
leiz


Reply With Quote