Is there a way to convert, flattened DTO arrays to composite nested objects.
Currently I'm using modelmapper for domain to domain conversion.
class SourceList {
List<Integer> id;
List<String> name;
}
class DestinationList {
List<Person> name;
}
class Person {
Integer id;
String name;
}
The data will be there in denormalized way, I need to convert to the proper nested structure. DTO to composite object conversion i'm able to do that using modelmapper.
I want to convert source list to destination list automatically. Since manual conversion is not a viable option in the long run. I'm also interested in dozer if it is possible.