Le pilote Java MongoDB fournit le Document.parse(String json)
pour obtenir une instance Document à partir d'une chaîne JSON. Vous devrez analyser votre objet JSON en une chaîne comme celle-ci :
Document doc = Document.parse( Rat.toString() );
Et voici la docs pour travailler avec JSON dans le pilote Java MongoDB.