MongoDB DocumentMongoCollection에 query를 실행해서 bson의 Document를 반환하고, bson의 Document는 Map 를 구현하고 내부에 LinkedHashMap을 저장하여 Map 메서드를 overrie한다.Document 예제collection에서 findAll query를 실행하여 결과를 subscribe 후 onNext로 출력한다. 모든 결과를 찾은 후 onComplete 이벤트로 종료한다.public class getDocumentExample { var connection = new ConnectionString("mongodb://localhost:27017/capo"); var settings = MongoClientSettings.builde..