我们如何将 Flux< Employe> 转换为 Mono< Customers> 对象?
通量<雇员> empFlux = getService(); // 它将返回 Employe 列表 Employe { private String id; 私人字符串信息;}
// 需要将 empFlux 数据转换为 Mono<Customers>
公共类 CusData {
private String id;
private String dept;
private String info;
public String getId() {
return id;
}
}
公共类客户{
private List<CusData> cusDataList;
public List<CusData> getCusDataList() {
return cusDataList;
}
public void setCusDataList(List<CusData> cusDataList) {
this.cusDataList = cusDataList;
}
} 公共类雇员 {
private String id;
private String info;
}