MapStruct equivalent of hint(Dozer)?
问题 In Dozer we are able to mention interfaces in hint during field mapping. How can we achieve the same in MapStruct ? I could not put the exact code here. But, it is the similar as below. We have here an Domain class example: Class A<T extends B> extends C<T> { ... }; Where, B is a abstract class. C is a class which contains a List item which we have to map. Similar is the structure of the classes and interfaces on DTO side. So, the mapping is as below in Dozer: <mapping> <class-a>Domain.A<