MongoDb Java driver reactive with POJO mapping find List of documents in a type safe way

1.3k Views Asked by At

I have a bunch of Document in a Collection and would like to retrieve all of them. This is my situation:

  1. I am using the Java Reactive Streams driver
  2. I am using the CodecRegistry to get my Document deserialized to my Pojo

The problem is that all flavours of the find() method returns a FindPublisher<Pojo> and needlessly to say that any kind of value emission will result in the returning of Pojo object. I want a List<Pojo> or a Set<Pojo> returned. How do I return a List<Pojo or a Set<Pojo>?

In the quickstart, they are using the find().first() which returns a single Document and hence a single Pojo object makes sense. There is no example for returning multiple Document.

1

There are 1 best solutions below

7
On

Using MongoDB Reactive Streams Driver and RxJava, for example:

Publisher<Document> publisher = collection.find();
List<Document> docs = Flowable.fromPublisher(publisher)
                              .blockingStream()
                              .collect(Collectors.toList());

[EDIT ADD] You can use a non-blocking call, for example:

List<Document> docs = new ArrayList<>();
Observable.fromPublisher(publisher).subscribe(doc -> docs.add(doc));