很多 VO 对象都关联了其他 VO 对象。
class UserVO {
OrgVO org;
}
项目中很多这样的 VO,比如在 userVOList 列表中,都得循环去关联 OrgVO, controller 中到处都是 for 循环 设置关联对象,很多重复的代码
有什么好的办法通用的处理
1
dogfeet 2020-09-01 19:24:09 +08:00
说的是 POJO 麻烦,还是 Dto 与 Vo 转换的麻烦?
POJO 嵌套可以用 lombok 嘛。 至于 Dto Vo 转换这种,MapStruct 了解一下。 https://github.com/mapstruct/mapstruct-examples 这里面的:mapstruct-mapping-with-cycles 、mapstruct-nested-bean-mappings 2 个例子应该是你感兴趣的。 |
2
mocxe2vwww OP @dogfeet 谢谢 这个可以
|