为什么 ModelMapper 通过方法引用进行映射?
@Bean
public ModelMapper modelMapper() {
ModelMapper m = new ModelMapper();
TypeMap<BatchDTO, Batch> typeMap = m.typeMap(BatchDTO.class, Batch.class);
typeMap.addMappings(mapper -> mapper.skip(Batch::setProgram));
return m;
}
为什么它需要通过方法引用进行配置,例如mapper.skip(Batch::setProgram)
?
@Bean
public ModelMapper modelMapper() {
ModelMapper m = new ModelMapper();
TypeMap<BatchDTO, Batch> typeMap = m.typeMap(BatchDTO.class, Batch.class);
typeMap.addMappings(mapper -> mapper.skip(Batch::setProgram));
return m;
}
Why does it take a configuration via method reference, e.g. mapper.skip(Batch::setProgram)
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
因为 skip 接受类型参数 DestinationSetter。 DestinationSetter 有一个抽象方法,这使得它相当于一个功能接口,即使它没有用 功能接口。
函数式接口可以通过 lambda 表达式和方法引用来实现。您可以检查文档或本指南了解更多信息。
Because skip accepts parameter of type DestinationSetter. DestinationSetter has a single abstract method, which makes it equivalent to a functional interface, even though it is not annotated with FunctionalInterface.
Functional interfaces can be implementated via lambda expressions and method references. You could check docs or this guide for more info.