3

我是反应式编程的新手。我必须开发一个简单的 Spring Boot 应用程序来返回一个 json 响应,其中包含公司详细信息及其所有子公司和员工

创建了一个 Spring Boot 应用程序(Spring Webflux + Spring data r2dbc)

使用以下数据库表来表示公司与子公司和员工的关系(它是与公司和子公司的层级关系,其中一个公司可以有 N 个子公司,每个子公司可以有另外 N 个子公司等等等等)

公司

  • ID
  • 姓名
  • 地址

公司_子公司

  • ID
  • sub_company_id(上面公司表的外键引用id)

员工

  • ID
  • 姓名
  • 指定
  • company_id(上述公司表的外键引用id)

以下是表示上述表格的 java 模型类

公司.java

@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class Company  implements Serializable { 
    private int id;
    private String name;
    private String address;  
    
    @With
    @Transient
    private List<Company> subCompanies;
    
    @With
    @Transient
    private List<Employee> employees;
}

雇员.java

@Data
@ToString
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
public class Employee  implements Serializable {    
    @Id
    private int id;
    private String name;
    private String designation;  
    
}

创建了以下存储库

@Repository
public interface CompanyRepository extends ReactiveCrudRepository<Company, Integer> {

    @Query("select sub.sub_company_id from Company_SubCompany sub inner join  Company c on sub.sub_company_id = c.id   where sub.id = :id")
    Flux<Integer> findSubCompnayIds(int id);
    
    @Query("select * from   Company c  where id = :id")
    Mono<Company> findCompanyById(Integer id);

}

@Repository
public interface EmployeeRepository extends ReactiveCrudRepository<Employee, Integer> {

    @Query("select * from   Employee where company_id = :id")
    Flux<Employee> findEmployeeByCompanyId(Integer id);

}

在 Company_SubCompany 表中,超级公司用 id -1 表示。所以使用这个 id 我们现在可以得到 super parent company 。

使用以下服务代码,我现在能够获得第一级公司及其员工。但我不确定如何获取所有嵌套的子公司并添加到其中

@Service
public class ComanyService {
    
    @Autowired
    CompanyRepository companyRepository;
    
    @Autowired
    EmployeeRepository employeeRepository;

    public Flux<Company> findComapnyWithAllChilds() {

        Flux<Integer> childCompanyIds = companyRepository.findSubCompnayIds(-1);
        Flux<Company> companies = childCompanyIds.flatMap(p -> {
            return Flux.zip(companyRepository.findCompanyById(p),
                    employeeRepository.findEmployeeByCompanyId(p).collectList(),
                    (t1, t2) -> t1.withEmployees(t2));
        });

        return companies;
    }
}

我对反应式、函数式编程和 r2dbc 非常陌生,所以请帮助我解决我的问题。如果有任何其他更好的方法可用,也将使用该方法。要求是获得公司、其所有员工和子公司(最多 N 个休假)。

4

1 回答 1

3

此代码可以帮助您,这种方法从数据库调用中填充 List 对象

public Flux<Company> findComapnyWithAllChilds(){
    return companyRepository.findAll()
            .flatMap(companies ->
                    Mono.just(companies)
                    .zipWith(employeeRepository.findEmployeeByCompanyId(companies.getId()).collectList())
                    .map(tupla -> tupla.getT1().withEmployees(tupla.getT2()))
                        .zipWith(anotherRepository.findAnotherByCompanyId(companies.getId()).collectList())
                        .map(tupla -> tupla.getT1().withAnother(tupla.getT2()))
            );

}

于 2020-07-13T02:36:28.707 回答