MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Java:come inserire una hashmap in MongoDB?

Utilizzare for loop per mappare _id e i valori e raccogliere tutti i valori in un elenco di documenti.

Qualcosa come

Map<String, List<String>> inMap =  new HashMap<>();
  List<Document> documents = new ArrayList<>();
  for(Map.Entry<String, List<String>> kv :inMap.entrySet()) {
     Document doc = new Document();
     doc.put("_id", kv.getKey());
     List<String> values = kv.getValue();
     doc.put("query", values.get(0));
            ... rest of values
     documents.add(doc);
  }
collection.insertMany(documents);