Hi,

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


Thanks,
leiz