I\'m looking for a way to directly convert some POJO to a Jackson TreeModel. I know that a translation from POJO-to-JSON-String exists, and TreeModel-to-JSON-String is suppo
to answer my own question:
JsonNode node = objectMapper.valueToTree(map);