Using jackson 2.1, how do I disable the fail_on_empty beans that the error message seems to want me to disable?
fail_on_empty beans
I\'m assuming this is just the simplest
You can also probably annotate the class with @JsonIgnoreProperties(ignoreUnknown=true) to ignore the fields undefined in the class
@JsonIgnoreProperties(ignoreUnknown=true)