How to know what all properties are ignored by @JsonIgnoreProperties(ignoreUnknown=true)
问题 I need to serialize - deserialized an existing Java POJO in my code. The POJO is big + it has few parent classes in the hierarchy. The code is using spring and so Jackson internally. I started fixing one by one issue I found by fixing getter-setter name, including @JsonIgnore etc and after considerable time I fixed it completely. But I have to fix several such classes, so for the next class, I just added: @JsonIgnoreProperties(ignoreUnknown=true) which worked but during the testing I found it