Dozer deep mapping Set<ComplexObject> to Set<String>
问题 Disclaimer: the same question has already been asked here Mapping deep properties with intermediate collections in dozer, but it has no accepted answer (and no proper answer for my case). So the question. I have a realm composed by a ComplexObject like the following public class ComplexObject { private Set<AnotherComplexObject> inner; ... //other fields, setters and getters } public Class AnotherComplexObject { private String property; ... //other fields, setters and getters } Now, I am