I have the following abstract class structure:
public abstract class A {
...
private List<B> b;
public List<B> getB() {
return b;
}
public void setB(List<B> b) {
this.b = b;
}
public static abstract class B {
}
}
and implement it like this:
public class AA extends A {
public static class BB extends B {
...
}
When I now use the jackson to map Json on AA, I get an error, that it could not create an instance of A$B. I think this is, because the getter/setter in A still references on B and not on BB, which causes the error. Is there any way I can do it like that, without also putting the getter/setter in the subclass?
You could add type capture to make sure b is always correctly typed like this:
and then