Open
Description
When the following PR of mapstruct/mapstruct#3539 is merged:
we can also add a support for this kind of ignore list:
@Mapper
public interface BeanMappingIgnoreTargetMapper {
BeanMappingIgnoreTargetMapper INSTANCE =
Mappers.getMapper( BeanMappingIgnoreTargetMapper.class );
@BeanMapping( ignoreTargets = {"nested.flag", "address"} )
Target convert( Source source );
}