标签: java protostuff
我有一个类
class A { public A(B b) { this.a = b.c; } @Tag(1) final int a; }
如果可能的话,如何使用Protostuff将字段添加到具有向后二进制反序列化兼容性的类中而不编写自定义反序列化器?