Hello
@record
public class A {
@key
private String id;
@embed...
public List bList;
}
public class B {
@bin...
public C c;
}
public class C {
public String s1;
public String s2;
@Embed..
public List<D> dList;
}
public class D {
}
classes C and D are external.
C and D do not implement serializable.
we are getting not serializable exception.
If the above is solved, will current case also be solved?
using aero-mapper-version : 2.2.0