同事出现了这么个场景:
子类和父类有同样的属性,经过 dubbo 调用后值丢失了
怀疑是 hessian 序列化的问题,写了个 demo 如下:
https://gist.github.com/junbaor/61a3a7905a390d1ca0a4dee6ed5f73fd
经过 hessian 序列化后问题复现。
本屌学艺不精,想不明白为什么 32 行会打印 null, 还请老司机指点
1
junbaor OP |
2
redtea 2017-08-02 22:24:23 +08:00
丢失原因: http://jameswxx.iteye.com/blog/1071476
解决方式:序列化的方法里加上这一句 ho.setSerializerFactory(new BeanSerializerFactory()); |