为什么 ModelMapper 通过方法引用进行映射?

发布于 2025-01-10 05:56:36 字数 346 浏览 1 评论 0原文

@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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风月客 2025-01-17 05:56:36

因为 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文