有没有办法将展平的DTO数组转换为复合嵌套对象。
目前,我正在使用modelmapper进行域名转换。
class SourceList {
List<Integer> id;
List<String> name;
}
class DestinationList {
List<Person> name;
}
class Person {
Integer id;
String name;
}
数据将以非规范化方式存在,我需要转换为正确的嵌套结构。 DTO到复合对象转换,我可以使用modelmapper。
来做到这一点我想自动将源列表转换为目标列表。从长远来看,手动转换不是一个可行的选择。 如果可能的话,我也对推土机感兴趣。