1、简述
> 接口类型序列化 接口形式的嵌套类 可以进行 序列化 ,但是 反序列化 会出错, 由于接口不可被实例化,故在反序列化时 会出错。 对于多态的形式 -- 会在后面的 TypeAdapterFactory / TypeAdapter中去解决 可参考 关于多态的绑定
RuntimeTypeAdapterFactory
2、基本类
public interface GsonInterface {
}
@Data @AllArgsConstructor @NoArgsConstructor public class GsonImplement implements GsonInterface { private Integer id; private String msg; }
@Data @AllArgsCo