**1. 3个存在同名属性也存在不同名属性的实体类**
```java
@Data
public class Address {
private Integer stuId;
private String address;
}
@Data
public class Score {
private Integer stuId;
private Double score;
}
@Data
public class StudentDto {
private Integer stuId;
private String address;
private Double score;
}
```
**2. 映射接口**
```java
@Mapper
public interface StudentMapper {
StudentMapper INSTANCE = Mappers.getMapper(StudentMapper.class);
/**
* 1)当source1与source2不存在同名的属性时可以进行自动映射。
* 2)当source1与source2存在同名的属性时则需要明确指定是哪个source。
*/
@Mapping(source = "source1.stuId", target = "stuId")
StudentDto toDto(Address source1, Score source2);
}
```
**3. 测试**
```java
@Test
public void testStudentMapper() {
Address address = new Address();
Score score = new Score();
address.setStuId(1001);
address.setAddress("亚洲-中国");
score.setStuId(1002);
score.setScore(65.5d);
StudentDto studentDto = StudentMapper.INSTANCE.toDto(address, score);
//Address:Address(stuId=1001, address=亚洲-中国)
System.out.println("Address:" + address);
//Score:Score(stuId=1002, score=65.5)
System.out.println("Score:" + score);
//StudentDto:StudentDto(stuId=1001, address=亚洲-中国, score=65.5)
System.out.println("StudentDto:" + studentDto);
}
```
**4. 查看映射接口被Mapstruct编译后的代码**
```java
public class StudentMapperImpl implements StudentMapper {
public StudentMapperImpl() {
}
public StudentDto toDto(Address source1, Score source2) {
if (source1 == null && source2 == null) {
return null;
} else {
StudentDto studentDto = new StudentDto();
if (source1 != null) {
studentDto.setStuId(source1.getStuId());
studentDto.setAddress(source1.getAddress());
}
if (source2 != null) {
studentDto.setScore(source2.getScore());
}
return studentDto;
}
}
}
```
- MapStruct属性映射
- MapStruct是什么
- maven依赖
- 基本映射
- 字段名不一致的映射
- 字段类型不一致的映射
- 基本数据类型转换
- 日期格式转换
- 使用表达式转换
- 枚举映射
- 多个源类的映射
- 集合的映射
- 添加自定义映射方法
- 映射前后
- 添加默认值
- 映射异常处理
- SpringDataJPA
- SpringDataJPA是什么
- 与JPA、Hibernate的关系
- 环境搭建
- 简单CURD操作
- 内部原理
- 主键生成策略
- 联合主键
- 查询方式
- 方法命名规则查询
- 限制查询结果查询
- 注解@Query查询
- 命名参数查询
- SpEL表达式查询
- 原生查询
- 更新与删除
- Specification动态查询
- 核心接口
- 查询例子
- 分页查询与排序
- 多表查询
- 一对一查询
- 一对多查询
- 多对多查询
- 注意事项
- Specification多表查询
- @Query多表查询
- 只查询指定字段
- 级联操作
- 加载规则