ModelMapper 是一个 Object To Object 的工具,类似于 MapStruct又不同于 MapStruct。主要原因是 ModelMapper 是利用反射的原理实现的 Object To Object。
ModelMapper 官方API : http://modelmapper.org/user-manual/property-mapping/
本实例实现了条件映射、嵌套映射(对象中有对象映射)、自定义属性映射、List 集合映射(对象中有集合映射)、Map集合映射(对象中有集合映射)、忽略映射,默认值设置(ModelMapper 的默认值设置时一不小心就会入坑,如果直接设置默认值,当再赋值转换时,默认值会覆盖赋值的值,所以设置默认值需要结合条件映射)等。
验证了对象属性为集合,集合中还有集合能够使用 ModelMapper 进行转换。不足点是这个实例中没有验证有继承关系时的映射(使用 modelMapper.includeBase(父类1, 父类2)
方法),多个属性映射为一个属性或一个属性映射为多个属性(使用 PropertyMap
转换器)。
(1)BaseClass
@Getter
@Setter
public class BaseClass {
private String id;
private String name;
public BaseClass() {
}
public BaseClass(String id, String name) {
this.id = id;
this.name = name;
}
}
(2)SouSubClass
@Getter
@Setter
public class SouSubClass {
private String sonId;
private String sonName;
private List grandSons;
public SouSubClass() {
}
public SouSubClass(String sonId, String sonName) {
this.sonId = sonId;
this.sonName = sonName;
}
}
(3)DestSubClass
@Getter
@Setter
public class DestSubClass {
private String dsonId;
private String sonName;
private String excessParam;
private List grandSons;
public DestSubClass(){
}
public DestSubClass(String dsonId, String sonName) {
this.dsonId = dsonId;
this.sonName = sonName;
}
}
(4)Source
@Getter
@Setter
public class Source {
private String id;
private String name;
private Integer age;
private SouSubClass sourceSon;
private List listSon;
private Map mapSon;
private Date createTime;
public Source() {
}
public Source(String id, String name) {
this.id = id;
this.name = name;
}
public Source(String id, String name, Integer age) {
this.id = id;
this.name = name;
this.age = age;
}
}
(5)Destination
@Getter
@Setter
public class Destination {
private Long id;
private String name;
private Integer age;
private DestSubClass destinationSon;
private List sonList;
private Map sonMap;
private String excessParam;
private Date createTime;
public Destination() {
}
public Destination(Long id, String name) {
this.id = id;
this.name = name;
}
}
/**
* 描述:ModelMapper 配置
*/
@Configuration
public class ModelMapperConfig {
@Bean
@Scope("singleton")
public ModelMapper getModelMapper() {
ModelMapper modelMapper = new ModelMapper();
//默认为standard模式,设置为strict模式
modelMapper.getConfiguration().setMatchingStrategy(MatchingStrategies.STRICT);
// 类型映射代码
sourceSonToDestinationSon(modelMapper);
sourceToDestination(modelMapper);
//验证映射
modelMapper.validate();
// 配置代码
return modelMapper;
}
/**
* 描述:声明 Source 类转 Destination 类的 Mapper
* @param modelMapper
* @Date 2019/05/09
*/
private void sourceSonToDestinationSon(ModelMapper modelMapper) {
modelMapper.createTypeMap(SouSubClass.class, DestSubClass.class)
.addMapping(SouSubClass::getSonId, DestSubClass::setDsonId)
.addMapping(SouSubClass::getSonName, DestSubClass::setSonName)
.addMappings(mapper -> mapper.skip(DestSubClass::setExcessParam));
}
private void sourceToDestination(ModelMapper modelMapper) {
modelMapper.createTypeMap(Source.class, Destination.class)
.addMappings(mapper -> mapper.using((Converter) context -> {
if (context.getSource() == null) {
return 18;
}
return context.getSource();
}).map(Source::getAge, Destination::setAge))
.addMappings(mapper -> mapper.using((Converter) context -> {
if (context.getSource() == null) {
return new Date();
}
return context.getSource();
}).map(Source::getCreateTime, Destination::setCreateTime))
.addMapping(Source::getSourceSon, Destination::setDestinationSon)
.addMapping(Source::getListSon, Destination::setSonList)
.addMapping(Source::getMapSon, Destination::setSonMap)
.addMappings(mapper -> mapper.skip(Destination::setExcessParam));
}
}
public interface TestService {
Destination testSourceToDestination(Source source);
List testSourceToDestinationList(List
@Service
public class TestServiceImpl implements TestService {
@Autowired
private ModelMapper modelMapper;
@Override
public Destination testSourceToDestination(Source source) {
Destination destination = modelMapper.map(source, Destination.class);
return destination; // a 处
}
@Override
public List testSourceToDestinationList(List
@RunWith(SpringRunner.class)
@SpringBootTest(classes = TestApplication.class)
public class TestServiceImplTest {
@Autowired
private TestService testService;
private static Source source1 = new Source("a", "发生的", 24);
private static Source source2 = new Source("b", "发生的");
private static List