简体   繁体   中英

MapStruct ignore all unmapped properties for specific method

There are several ways to ignore unmapped target properties in mapstruct.

  1. We could list all properties to ignore for specific method:
@Mapping(target = "propName", ignore = true)
  1. Or specify to ignore all properties on mapper level:
@Mapper(
        unmappedTargetPolicy = ReportingPolicy.IGNORE
)

Is there a way to mix these approaches and ignore all properties at the method level without explisently list all of them?

Using the BeanMapping annotation you can specify this at method level.

@BeanMapping(unmappedTargetPolicy = ReportingPolicy.IGNORE)

The javadoc can be found here.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM