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
If you use org.codehaus.jackson.map.ObjectMapper, then pls. use the following lines
mapper.configure(SerializationConfig.Feature.FAIL_ON_EMPTY_BEANS, false);