I am attempting to deserialize a JSON object stored in CouchDb using Jackson. This object needs to deserialize into a pojo that contains overloaded methods. When I attempt
In Jackson > 2.4 use directly :
mapper.addMixIn(Foo.class, IgnoreFooSetValueIntMixIn.class);