**1. 级操操作**
级操操作是指:操作对象A的同时,也操作该对象关联的其他对象。
```java
//@OneToOne、@OneToMany、@ManyToOne、@ManyToMany 都有一个属性 cascade 来控制级联操作
public @interface OneToMany {
//配置级联操作
//CascadeType.MERGE 级联更新
//CascadeType.PERSIST 级联保存
//CascadeType.REFRESH 级联刷新
//CascadeType.REMOVE 级联删除
//CascadeType.ALL 所有级联操作
CascadeType[] cascade() default {};
}
```
<br/>
**2. 使用级联操作**
(1)建立实体类之间的关系。
```java
public class Mother {
@OneToMany(mappedBy = "mother", fetch = FetchType.EAGER, cascade = CascadeType.ALL)
private List<Children> childrenList;
}
```
```java
public class Children {
@ManyToOne(targetEntity = Mother.class, cascade = CascadeType.ALL)
@JoinColumn(name = "mother_id", referencedColumnName = "id")
private Mother mother;
}
```
(2)级联操作。
```java
/************************** Mother -> Children **************************/
/**
* 级联保存/更新。
* 保存/更新 Mother 的同时,也保存/更新 Children 表。
*/
@Test
public void cascadeSave() {
Mother mother = Mother.builder().name("张母").build();
List<Children> childrenList = new ArrayList<>(1);
Children children01 = Children.builder().name("张三").mother(mother).build();
Children children02 = Children.builder().name("张四").mother(mother).build();
childrenList.add(children01);
childrenList.add(children02);
mother.setChildrenList(childrenList);
Mother mother1 = motherRepository.save(mother);
System.out.println(mother1.getId());
}
/**
* 级联删除。
* 删除 Mother 的同时,也删除 Children 表。
*/
@Test
public void cascadeDelete() {
Mother mother = Mother.builder().id(2).build();
List<Children> childrenList = new ArrayList<>(1);
Children children01 = Children.builder().id(3).build();
Children children02 = Children.builder().id(4).build();
childrenList.add(children01);
childrenList.add(children02);
mother.setChildrenList(childrenList);
motherRepository.delete(mother);
}
```
```java
/************************** Children -> Mother **************************/
/**
* 级联保存/更新。
* 保存/更新 Children 的同时,也保存/更新 Mother 表。
*/
@Test
public void cascadeSave() {
Mother mother = Mother.builder().name("王母").build();
List<Children> childrenList = new ArrayList<>(1);
Children children = Children.builder().name("王三").mother(mother).build();
childrenList.add(children);
mother.setChildrenList(childrenList);
Children children1 = childrenRepository.save(children);
System.out.println(children1.getId());
}
```
- MapStruct属性映射
- MapStruct是什么
- maven依赖
- 基本映射
- 字段名不一致的映射
- 字段类型不一致的映射
- 基本数据类型转换
- 日期格式转换
- 使用表达式转换
- 枚举映射
- 多个源类的映射
- 集合的映射
- 添加自定义映射方法
- 映射前后
- 添加默认值
- 映射异常处理
- SpringDataJPA
- SpringDataJPA是什么
- 与JPA、Hibernate的关系
- 环境搭建
- 简单CURD操作
- 内部原理
- 主键生成策略
- 联合主键
- 查询方式
- 方法命名规则查询
- 限制查询结果查询
- 注解@Query查询
- 命名参数查询
- SpEL表达式查询
- 原生查询
- 更新与删除
- Specification动态查询
- 核心接口
- 查询例子
- 分页查询与排序
- 多表查询
- 一对一查询
- 一对多查询
- 多对多查询
- 注意事项
- Specification多表查询
- @Query多表查询
- 只查询指定字段
- 级联操作
- 加载规则