Suppose I have a java.util.Map named rootMap. rootMap["level1"] is another Map (let's call it map1) map1["level2] is another Map etc...In short words, I have a Map hierarchy.
My need : simply and directly get a deep field with a short API like : get(rootMap, "level1.level2.field") I thought leveraging Dozer but does something simpler exist ? Thanks !