使用xstream序列化没有扩展类的类

时间:2014-03-29 23:18:38

标签: java serialization xstream extends

我有两个班级:

class ObjectCollection {
    Object[] collection;
}

class Object extends AnotherObject {

}

现在,在使用XStream对它们进行序列化时,它可以正常运行,但它也会将AnotherObject中的数据添加到每个Object中。有没有办法告诉XStream忽略扩展类中不想要的元素?

1 个答案:

答案 0 :(得分:0)

this post。但是,如果对象应该相同,为什么有2个类?