You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
static public void Update(JsonObject body){
Gson gs = new GsonBuilder().create();
MyModel m = gs.fromJson(body, MyModel.class);
// this call erases "privatefield" from the document: m.save()
m.update(); // this update existing data with new fields only
}
The text was updated successfully, but these errors were encountered:
Add an "update by example API" so that the problem described in http://stackoverflow.com/questions/10663633/in-play-morphia-how-do-i-manage-updates?rq=1 could be solved by:
The text was updated successfully, but these errors were encountered: