简体   繁体   English

如何使用反应器和 R2dbc 进行 zip 嵌套列表

[英]How to zip nested lists with reactor and R2dbc

I have 3 tables in a postgres data base and am using R2dbc to query and connect them in a relational manner.我在 postgres 数据库中有 3 个表,并且正在使用 R2dbc 以关系方式查询和连接它们。

I have 3 entity classes (possibly shouldn't be data classes, but shouldn't effect the example)我有 3 个实体类(可能不应该是数据类,但不应该影响示例)

@Entity
@Table(name = "parent", schema = "public", catalog = "Test")
data class MyParentObject(
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Id
    @org.springframework.data.annotation.Id
    @Column(name = "id")
    var id: Int = 0,

    @Transient
    var childData: List<MyChildObject>? = null
)
@Entity
@Table(name = "child", schema = "public", catalog = "Test")
data class MyChildObject(
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Id
    @org.springframework.data.annotation.Id
    @Column(name = "id")
    var id: Int = 0,

    @Column(name = "parent_id")
    var parentId: Int? = null

    @Transient
    var grandchildData: List<MyGrandchildObject>? = null
)
@Entity
@Table(name = "grandchild", schema = "public", catalog = "Test")
data class MyGrandchildObject(
    @GeneratedValue(strategy = GenerationType.IDENTITY)
    @Id
    @org.springframework.data.annotation.Id
    @Column(name = "id")
    var id: Int = 0
    
    @Column(name = "child_id")
    var childId: Int? = null
)

parent is one-to-many to child which is one-to-many of grandchild.父母是一对多的孩子,这是一对多的孙子。 parent_id and child_id act like fkeys. parent_id 和 child_id 就像 fkeys。

I have a RestController which can return all Parent data populated with all child Data through these methods我有一个 RestController 可以通过这些方法返回填充了所有子数据的所有父数据

fun viewAllParents(): Mono<MutableList<MyParentObject>> =
    parentRepository.findAll()
        .flatMap { Mono.just(it).addChildData(it.id) }
        .collectList()

fun Mono<MyParentObject>.addChildData(id: Int): Mono<MyParentObject> =
    this.zipWith(childRepository.getAllByParentIdEquals(id).collectList())
        .map {
            it.t1.childData = it.t2
            it.t1
        }

And I have another RestController that can return all ChildData with all Grandchild data (much the same as above) through these methods而且我还有另一个 RestController 可以通过这些方法返回所有 ChildData 和所有 Grandchild 数据(与上面几乎相同)

fun viewAllChildren(): Mono<MutableList<MyChildObject>> =
    childRepository.findAll()
        .flatMap { Mono.just(it).addGrandchildData(it.id) }
        .collectList()

fun Mono<MyChildObject>.addGrandchildData(id: Int): Mono<MyChildObject> =
        this.zipWith(childOfChildRepository.getAllByChildIdEquals(id).collectList())
            .map {
                it.t1.childOfChildData = it.t2
                it.t1
            }

What I can't do and is my question, is how do I get viewAllParents() to also populate with Grandchild data.我不能做的是我的问题,我如何让viewAllParents()也填充孙数据。 Do I need to convert var grandchildData: List<MyGrandchildObject> to a Flux and zip it with a new flux from the grandchildRepository?我是否需要将var grandchildData: List<MyGrandchildObject>转换为 Flux 和 zip 使用来自 grandchildRepository 的新通量? Or Am I looking at this the wrong way?还是我看错了?

Any pointers would be much appreciated.任何指针将不胜感激。

I really liked the challenge of hierarchial data fetch using reactor.我真的很喜欢使用 reactor 获取分层数据的挑战。 I don't know Kotlin but i have tried to reproduce the problem using java.我不知道 Kotlin 但我尝试使用 java 重现该问题。 I couldn't create a PostgreSQL table with the parent -> child -> grandChild hierarchy but i tried to simulate something similar via webclient( basically the logic would remain same).我无法使用父级 -> 子级 -> grandChild 层次结构创建 PostgreSQL 表,但我尝试通过 webclient 模拟类似的东西(基本上逻辑将保持不变)。 This is my code and this is what i tried to do and was able to get the result what you intended: https://github.com/harryalto/reactive-springwebflux这是我的代码,这是我试图做的,并且能够得到你想要的结果: https://github.com/harryalto/reactive-springwebflux

The crux of the solution is in the Handler code where i am using to build a sub flow based on list of childs and using that to tie together all解决方案的关键在于处理程序代码中,我使用它来构建基于子列表的子流,并使用它来将所有

public Flux<Parent> getFamiliesHierarchy() { return getAllParents().flatMap(parent -> getAllChildsList(parent.getId()).flatMap(childList -> getChildsWithKids(childList)).map(childList -> parent.toBuilder().children(childList).build() ) ); }

Below is the complete code下面是完整的代码

@Component
@Slf4j
public class FamilyHandler {

    @Autowired
    private WebClient webClient;

    public Flux<Parent> getAllParents() {
        return webClient
            .get()
            .uri("parents")
            .retrieve()
            .bodyToFlux(Parent.class);
    }

    public Mono<List<Child>> getAllChildsList(final Integer parentId) {
         ParameterizedTypeReference<List<Child>> childList = 
             new ParameterizedTypeReference<List<Child>>() {};
        return webClient
            .get()
            .uri("childs?parentId=" + parentId)
            .retrieve()
            .bodyToMono(childList);
    }

    public Flux<GrandChild> getGrandKids(final Integer childId) {
         return webClient
            .get()
            .uri("grandKids?childId=" + childId)
            .retrieve()
            .bodyToFlux(GrandChild.class);
    }

    public Mono<List<GrandChild>> getGrandKidsList(final Integer childId) {
         ParameterizedTypeReference<List<GrandChild>> grandKidsList = 
         new ParameterizedTypeReference<List<GrandChild>>() {};
         return webClient
            .get()
            .uri("grandKids?childId=" + childId)
            .retrieve()
            .bodyToMono(grandKidsList);
    }

    private Mono<List<Child>> getChildsWithKids(final List<Child> childList) {
        return Flux.fromIterable(childList).flatMap(child ->
                Mono.zip(Mono.just(child), getGrandKidsList(child.getId()))
                        .map(tuple2 ->        tuple2.getT1().toBuilder().grandChildren(tuple2.getT2()).build())
        ).collectList();
    }

    public Flux<Parent> getFamiliesHierarchy() {

        return getAllParents()
            .flatMap(parent ->
                    getAllChildsList(parent.getId())
                            .flatMap(childList -> getChildsWithKids(childList))
                            .map(childList -> parent.toBuilder().children(childList).build()
                            )

            );
    }

}`

I used json-server for mocking the server我将json-server用于 mocking 服务器

and below is my db.json file以下是我的 db.json 文件

  {
       "parents":[
      {
         "id": 1,
         "name" : "Parent1",
         "path":"1"
      },
      {
         "id": 2,
         "name" : "Parent2",
         "path":"2"
      }
     ],
     "childs":[
     {
         "id": 1,
         "parentId": 1,
         "name": "child1Parent1",
         "path":"1.1"
     },
     {
         "id":2,
         "parentId": 1,
         "projectName": "child2Parent1",
         "path":"1.2"

     },
     {
         "id":3,
         "parentId": 2,
         "projectName": "child1Parent2",
         "path":"2.1"

     },
     {
         "id":4,
         "parentId": 2,
         "projectName": "child2Parent2",
         "path":"2.2"

      }
   ],
   "grandKids":[
   {
     "id":1,
     "childId": 2,
     "projectName": "grandKid1child2Parent1",
     "path":"1.2.1"

   },
   {
     "id":3,
     "childId": 2,
     "projectName": "grandKid1child2Parent1",
     "path":"1.2.2"

  },
  {
     "id":2,
     "childId": 4,
     "projectName": "grandKid1child1Parent2",
     "path":"2.2.1"

  },
  {
     "id":4,
     "childId": 4,
     "projectName": "grandKid1child1Parent2",
     "path":"2.2.2"

  },
  {
     "id":5,
     "childId": 3,
     "projectName": "grandKid1child1Parent2",
     "path":"2.1.1"

  }
  
  ]
}

This is my controller code这是我的 controller 代码

@RestController
@Slf4j
public class FamilyController {

    @Autowired
    private FamilyHandler familyHandler;

    @GetMapping(FAMILIES_ENDPOINT_V1)
    public Flux<Parent> viewAllParents() {
         return familyHandler.getFamiliesHierarchy();
    }

}

We can easily retrofit the code for r2DBC repository.我们可以轻松地 retrofit r2DBC 存储库的代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM