在MapStruct版本1.1.0.Final中,这是可能的......
@Mappings({
@Mapping(target = "transaction.process.details", expression = "java(MappingHelper.mapDetails(request))"),
//more mappings
})
Response requestToResponse(Request request);
有可能,因为mapDetails
方法(巧合?)生成requestToResponse
方法。这就是request
不为空的原因。
现在,由于1.1.0.Final不能与Lombok一起工作,我不得不升级到1.2.0.CR2。对于此版本,mapDetails
将生成一个单独的方法,其中request
未通过,因此request
现在在此方法中为空,我得到一个带有表达式的NPE。 (现在是requestToResponse
的子子方法。)
我是否滥用了这个表达式,所以它只是巧合,还是新版本有错误?如果没有错误,我该如何正确地将request
实例传递给表达式?
答案 0 :(得分:2)
你是/正在滥用这个表达。您需要做的是将目标映射到源参数。
@Mapper(uses = { MappingHelper.class })
public interface MyMapper {
@Mappings({
@Mapping(target = "transaction.process.details", source = "request"),
//more mappings
})
Response requestToResponse(Request request);
}
然后, MapStruct应该创建中间方法并使用MappingHelper
并调用mapDetails
方法。如果您有多个方法从Request
映射到任何类型details
,那么您将需要使用合格的映射(请参阅文档中的更多here)。
它看起来像:
public class MappingHelper {
@Named("mapDetails") // or the better type safe one with the meta annotation @Qualifier
public static String mapDetails(Request request);
}
您的映射将如下所示:
@Mapper(uses = { MappingHelper.class })
public interface MyMapper {
@Mappings({
@Mapping(target = "transaction.process.details", source = "request", qualifiedByName = "mapDetails"), //or better with the meta annotation @Qualifier qualifiedBy
//more mappings
})
Response requestToResponse(Request request);
}