Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Jackson JSON library to convert some JSON objects to POJO classes on an android application. The problem is, the JSON objects might change and have new fields added while the application is published, but currently it will break even when a simple String field is added, which can safely be ignored.

Is there any way to tell Jackson to ignore newly added fields? (e.g. non-existing on the POJO objects)? A global ignore would be great.

share|improve this question

4 Answers

up vote 28 down vote accepted

it seems there is an annotation that can be used on class level.

Add the following to the top of your class:

import org.codehaus.jackson.annotate.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
share|improve this answer
Over time, I'd rather go with this option more often, as it is less intrusive. – Hadi Eskandari Mar 21 at 2:21
Awesome!! :) Helped me a lot! – nithinreddy Apr 6 at 16:28

In addition two 2 mechanisms already mentioned, there is also global feature that can be used to suppress all failures caused by unknown (unmapped) properties:

// jackson 1.9 and before
objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false);
// or jackson 2.0
objectMapper.configure(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES, false);

This is the default used in absence of annotations, and can be convenient fallback.

share|improve this answer
I'll accept this as an answer, as this show another approach to disable exception throwing mechanism. – Hadi Eskandari Mar 29 '11 at 9:13
I'm not sure if this is from an earlier version, but as of version 1.9.x it is: objectMapper.configure(DeserializationConfig.Feature.FAIL_ON_UNKNOWN_PROPERTIES, false); – cheeze Jul 25 '12 at 1:34
Ah correct. I will edit the answer. – StaxMan Jul 25 '12 at 16:30

You can annotate the specific property in your POJO with @JsonIgnore.

share|improve this answer
2  
The situation is the other way around, e.g. converting JSON to POJO, so it is not possible to annotate the property (which does not exists on the POJO) – Hadi Eskandari Mar 29 '11 at 9:12
This does not answer the question, as Hadi said, there is no field to annotate in POJO – thermz Apr 10 at 9:05

Make sure that you place the @JsonIgnoreProperties(ignoreUnknown = true") annotation to the parent POJO class which you want to populate as a result of parsing the JSON response and not the class where the conversion from JSON to Java Object is taking place.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.