Deserialise Json to typed Map with Jackson in Kotlin
There are multiple resources how to deserialise JSON to a typed object. This is fairly straightforward. But what if have a blob of JSON like this: And the keys of this map would be defined in an enum. Surely you could deserialise this into a Map<String, String> first, or simply a Map. And *after* that […]