I have a class that looks like this:
public class Person {
public class Address {
private String line1;
private String line2;
private
Because inner classes do not have a default zero argument constructor (they have a hidden reference to the outer/parent class) Jackson cannot instantiate them.
The solution is to use static
inner classes:
public class Outer {
static class Inner {
private String foo;
public String getFoo() { return foo; }
}
}
Original Answer:
There are some issues in implementation and it seems like you can't serialize such classes, see cowtowncoder for details.