I need to deserialize JSON objects and access the fields in a case-insensitive manner. Example:
String s = \"{\\\"FOO\\\": 123}\"; ObjectMapper mapper = new
There is no automated way, but you could do it by creating custom JsonNodeFactory which creates custom ObjectNodes -- and then you can override method(s) used for adding and accessing entries.