Using jackson 2.1, how do I disable the fail_on_empty beans that the error message seems to want me to disable?
I\'m assuming this is just the simplest
In my case I didnt need to disable it , rather I had to put this code on top of my class : (and this solved my issue)
@JsonNaming(PropertyNamingStrategy.SnakeCaseStrategy.class)//this is what was added
@Value //this was there already
@Builder//this was there already
public class NameOfClass {
//some code in here.
}