I have Java app that takes data from external app. Incoming JSONs are in Strings. I would like to parse that Strings and create BSON objects.
Unfortunate I can\'t fi
Use Document.parse(String json) from org.bson.Document. It returns Document object which is type of Bson.
Document.parse(String json)
org.bson.Document
Document
Bson