Json – Convert array to a hashmap during Jackson mapping, with each entry key being the entrie's id field
This is the JSON I'm working on: { "default": "ignore-me", "catalog": [ { "id": "object-1", "name": "Object 1" }, { "id": "object-3", "name": "Object 3" }, { "id": "object-2", "name": "Object 2" } ] } I can parse it in…