1.对XStream对象设置autodetectAnnotations,自动检测注解问题。
将对象序列化为xml文件形式,使用同一个XStream进行反序列化时候,正常解析,而当换另外一个XStream进行反序列化的时候,解析xml报错(该XStream对象也设置为自动检测注解)。查看官方文档,有这一段话
Set the auto-detection mode of the AnnotationMapper. Note that auto-detection implies that the XStream is configured while it is processing the XML steams. This is a potential concurrency problem.Also is it technically not possible to detect all class aliases at deserialization.You have been warned!
好吧,我已经得到警告了。。。。寻找其他解决方法