liukefu2050 commented on issue #10459:
URL: https://github.com/apache/dubbo/issues/10459#issuecomment-1216246132
经过DEBUG,好像是序列化问题
如下正常:
`
PageTableVO vo = new PageTableVO(page, searchPageVo);
String string = JSON.toJSONString(vo, new LazyLoadFilter());
vo = JSON.parseObject(string,PageTableVO.class);
return vo;
`
如下失败:
`
PageTableVO vo = new PageTableVO(page, searchPageVo);
String string = JSON.toJSONString(vo, new LazyLoadFilter());
//vo = JSON.parseObject(string,PageTableVO.class);
return vo;
`
那些延迟加载的属性,改如何处理?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]