Springboot集成MapStruct(强力推荐使用)

推荐一个 Java 实体映射工具 MapStruct

MapStruct是干什么的?

java分布式系统经常需要做entity(数据库访问对象)对象跟dto(业务传输对象)。一般entity对象只涉及系统内部跟数据库的交互,如果跟其他系统通过rpc交互,需要定义dto对象。
但是entity对象跟dto对象有很多字段的名称和类型都是相同的,但是需要程序来做转换。
如果在业务代码中大量set,get方法属实是有些影响代码美观!!!
这时MapStruct就诞生了,而且用着还不错,如前所发布的版本都处于稳定。
接下来给大家演示一个项目中用到的案例:

如何用?

1.引入依赖

        <!-- mapStruct 对象转换 -->
      <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-jdk8</artifactId>
            <version>1.2.0.Final</version>
        </dependency>
        <dependency>
            <groupId>org.mapstruct</groupId>
            <artifactId>mapstruct-processor</artifactId>
            <version>1.2.0.Final</version>
        </dependency>

2.对象转换类(指定映射字段)

/**
 * 对象转换
 * @author xuFan
 */
@Mapper(componentModel = "spring")
public interface UtilStruct {

    /**
     * @param
     * @return
     * @description 用户转换 RegisterDTO转CustomEntity
     * @author xuFan
     * @date 2020/3/28
     * DTO实体是前端传来的对象,Entity是数据库对应的字段实体对象
     */
    @Mappings({
            @Mapping(target = "customId", source = "customId"),
            @Mapping(target = "type", source = "type"),
            @Mapping(target = "loginName", source = "loginName"),
            @Mapping(target = "loginPwd", source = "loginPwd"),
            @Mapping(target = "customMobile", source = "customMobile"),
            @Mapping(target = "headPicture", source = "headPicture"),
            @Mapping(target = "nickname", source = "nickname"),
    })
    Custom convert(RegisterDTO registerDTO);

}

编译后自动生成了UtilStruct 的实现类 UtilStructImpl.class
Springboot集成MapStruct(强力推荐使用)_第1张图片
编译后方法的实现
Springboot集成MapStruct(强力推荐使用)_第2张图片
3.业务层调用
Springboot集成MapStruct(强力推荐使用)_第3张图片

执行成功

总结:

这样就省去了我们在业务代码中大量的set,get方法。让代码看起来可读性行更高,更加优雅!

你可能感兴趣的:(分享)