Answer the question
In order to leave comments, you need to log in
How to bring from Document to the object I need?
Hello, how can I lead from Document to the object I need?
There is a Movies model
From the database, I get the Mongo Collection of the Document type
MongoCollection<Document> mongoCollection = database.getCollection("movies");
MongoCursor<Document> cur = mongoCollection.find().iterator();
while (cur.hasNext()){
System.out.println(cur.next().toString());
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question