**1. 两个字段名不一致的实体类**
```java
@Data
public class Car {
private Integer carId;
private String carName;
}
@Data
public class CarDto {
private Integer carDtoId;
private String carDtoName;
}
```
**2. 映射接口**
```java
@Mapper
public interface CarMapper {
CarMapper INSTANCE = Mappers.getMapper(CarMapper.class);
/**
* 使用@Mapping的source和target让两个实体类的属性进行对应
*/
@Mapping(source = "carId", target = "carDtoId")
@Mapping(source = "carName", target = "carDtoName")
CarDto toDto(Car source);
}
```
**3. 测试**
```java
@Test
public void testCarMapper() {
Car car = new Car();
car.setCarId(1001);
car.setCarName("红旗");
CarDto carDto = CarMapper.INSTANCE.toDto(car);
//Car:Car(carId=1001, carName=红旗)
System.out.println("Car:" + car);
//Car-->CarDto:CarDto(carDtoId=1001, carDtoName=红旗)
System.out.println("Car-->CarDto:" + carDto);
}
```
**4. 查看映射接口被Mapstruct编译后的代码**
```java
public class CarMapperImpl implements CarMapper {
public CarMapperImpl() {
}
public CarDto toDto(Car source) {
if (source == null) {
return null;
} else {
CarDto carDto = new CarDto();
carDto.setCarDtoId(source.getCarId());
carDto.setCarDtoName(source.getCarName());
return carDto;
}
}
}
```
- MapStruct属性映射
- MapStruct是什么
- maven依赖
- 基本映射
- 字段名不一致的映射
- 字段类型不一致的映射
- 基本数据类型转换
- 日期格式转换
- 使用表达式转换
- 枚举映射
- 多个源类的映射
- 集合的映射
- 添加自定义映射方法
- 映射前后
- 添加默认值
- 映射异常处理
- SpringDataJPA
- SpringDataJPA是什么
- 与JPA、Hibernate的关系
- 环境搭建
- 简单CURD操作
- 内部原理
- 主键生成策略
- 联合主键
- 查询方式
- 方法命名规则查询
- 限制查询结果查询
- 注解@Query查询
- 命名参数查询
- SpEL表达式查询
- 原生查询
- 更新与删除
- Specification动态查询
- 核心接口
- 查询例子
- 分页查询与排序
- 多表查询
- 一对一查询
- 一对多查询
- 多对多查询
- 注意事项
- Specification多表查询
- @Query多表查询
- 只查询指定字段
- 级联操作
- 加载规则