Java编码辅助工具Mapstruct用法详解

时间:2021-05-20

前言

项目开发中,业务分层会涉及不同类型的Bean之间需要相互转换,如PO与DTO之间,PO与VO之间等。手动编码setter/getter各个对应属性,会显得臃肿繁琐。通过Mapstruct框架可简单方便地完成这一工作。

如何引入:

IntelliJ IDEA中安装MapStruct Support插件:File -> Settings -> Plugins 搜索 MapStruct support 安装,同时File -> Settings -> Compiler -> Annotation Processors 勾选“Enable annotation processing”

pom.xml中加入依赖

<dependency><groupId>org.mapstruct</groupId><artifactId>mapstruct-jdk8</artifactId><version>1.2.0.Final</version><scope>provided</scope></dependency>

build配置

<build><finalName>${project.artifactId}</finalName><plugins><plugin><groupId>org.apache.maven.plugins</groupId><artifactId>maven-compiler-plugin</artifactId><version>3.7.0</version><configuration><annotationProcessorPaths><path><groupId>org.projectlombok</groupId><artifactId>lombok</artifactId><version>1.16.18</version></path><path><groupId>org.mapstruct</groupId><artifactId>mapstruct-processor</artifactId><version>1.2.0.Final</version></path></annotationProcessorPaths></configuration></plugin><plugin><groupId>org.springframework.boot</groupId><artifactId>spring-boot-maven-plugin</artifactId><version>${spring-boot.version}</version><executions><execution><goals><goal>repackage</goal></goals></execution></executions></plugin></plugins></build>

常用注解使用

@Mapper

修饰接口或抽象类, 如果使用spring来管理,则:@Mapper(componentModel = "spring")

定义对应的Bean转换方法:

public abstract XXXVO map(XXXPO xxxPo);public abstract List<XXXVO> map(List<XXXPO> xxxPos);

如果对应属性名称不一致,则可通过

@Mappings(value={@Mapping(target="abc", source="cba"),@Mapping(target="acc", source="cca", qualifiedByName="mapMethodName2"), //定义转换的方法@Mapping(target="aaa", constant="123") //定义常量})

@AfterMapping

在map属性完之后执行某些操作

public void afterListMap(@MappingTarget List<XXXVO> xxxVOs) //map完的结果对象 

@BeforeMapping

在map属性之前执行某些操作

public void beforeListMap(Object anySource, @MappingTarget List<XXXPO> xxxVOs)

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。

声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。

相关文章