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

Upsert MongoTemplate:un modo semplice per eseguire l'aggiornamento da pojo (che l'utente ha modificato)?

Ho trovato una buona soluzione per questa domanda

//make a new description here
Description d = new Description();
d.setCode("no");
d.setName("norwegian");
d.setNorwegian("norwegian");
d.setEnglish("english");

//build query
Query query = new Query(Criteria.where("code").is(description.getCode()));

//build update
DBObject dbDoc = new BasicDBObject();
mongoTemplate.getConverter().write(d, dbDoc); //it is the one spring use for convertions.
Update update = Update.fromDBObject(dbDoc);

//run it!
mongoTemplate.upsert(query, update, "descriptions");

Si noti che Update.fromDBObject restituisce un oggetto di aggiornamento con tutti i campi in dbDoc. Se desideri solo aggiornare i campi non nulli, dovresti codificare un nuovo metodo per escludere i campi nulli.

Ad esempio, il front-end pubblica un documento come di seguito:

//make a new description here
Description d = new Description();
d.setCode("no");
d.setEnglish("norwegian");

Abbiamo solo bisogno di aggiornare il campo 'lingua':

//return Update object
public static Update fromDBObjectExcludeNullFields(DBObject object) {
    Update update = new Update();       
    for (String key : object.keySet()) {
        Object value = object.get(key);
        if(value!=null){
            update.set(key, value);
        }
    }
    return update;
}

//build udpate
Update update = fromDBObjectExcludeNullFields(dbDoc);