**1. 两个字段类型不一致的实体类**
```java
@Data
public class Kite {
private Date createTime;
private String updateTime;
}
@Data
public class KiteDto {
private String createTime;
private LocalDate updateTime;
}
```
**2. 映射接口**
```java
@Mapper
public interface KiteMapper {
KiteMapper INSTANCE = Mappers.getMapper(KiteMapper.class);
/**
* 使用dateFormat指定日期格式
*/
@Mapping(source = "createTime", target = "createTime", dateFormat = "yyyy-MM-dd")
@Mapping(source = "updateTime", target = "updateTime", dateFormat = "yyyy-MM-dd")
KiteDto toDto(Kite source);
}
```
**3. 测试**
```java
@Test
public void testKiteMapper() {
Kite kite = new Kite();
kite.setCreateTime(new Date());
kite.setUpdateTime("2021-10-21");
KiteDto kiteDto = KiteMapper.INSTANCE.toDto(kite);
//Kite:Kite(createTime=Fri Oct 15 09:15:35 CST 2021, updateTime=2021-10-21)
System.out.println("Kite:" + kite);
//KiteDto:KiteDto(createTime=2021-10-15, updateTime=2021-10-21)
System.out.println("KiteDto:" + kiteDto);
}
```
**4. 查看映射接口被Mapstruct编译后的代码**
```java
public class KiteMapperImpl implements KiteMapper {
public KiteMapperImpl() {
}
public KiteDto toDto(Kite source) {
if (source == null) {
return null;
} else {
KiteDto kiteDto = new KiteDto();
if (source.getCreateTime() != null) {
kiteDto.setCreateTime((new SimpleDateFormat("yyyy-MM-dd")).format(source.getCreateTime()));
}
if (source.getUpdateTime() != null) {
kiteDto.setUpdateTime(LocalDate.parse(source.getUpdateTime(), DateTimeFormatter.ofPattern("yyyy-MM-dd")));
}
return kiteDto;
}
}
}
```
- MapStruct属性映射
- MapStruct是什么
- maven依赖
- 基本映射
- 字段名不一致的映射
- 字段类型不一致的映射
- 基本数据类型转换
- 日期格式转换
- 使用表达式转换
- 枚举映射
- 多个源类的映射
- 集合的映射
- 添加自定义映射方法
- 映射前后
- 添加默认值
- 映射异常处理
- SpringDataJPA
- SpringDataJPA是什么
- 与JPA、Hibernate的关系
- 环境搭建
- 简单CURD操作
- 内部原理
- 主键生成策略
- 联合主键
- 查询方式
- 方法命名规则查询
- 限制查询结果查询
- 注解@Query查询
- 命名参数查询
- SpEL表达式查询
- 原生查询
- 更新与删除
- Specification动态查询
- 核心接口
- 查询例子
- 分页查询与排序
- 多表查询
- 一对一查询
- 一对多查询
- 多对多查询
- 注意事项
- Specification多表查询
- @Query多表查询
- 只查询指定字段
- 级联操作
- 加载规则