Snippets tagged “jsonignoreproperties”
2 snippets use this tag.
- Ignoring new fields on JSON objects using JacksonJava
If you want to ignore new fields on JSON objects when using Jackson, you can use the @JsonIgnoreProperties annotation on your Java object.
- Jackson with JSON: Unrecognized field, not marked as ignorableJava
If you are using the Jackson library to parse JSON in Java and you get the error "Unrecognized field, not marked as ignorable", it means that you are trying to parse a JSON object that has a field that is not recognized by your Java object.