Package com.mongodb

Examples of com.mongodb.DBRef


  }
 
  /**不再监视一个问题*/
  @At("/question/?/unwatch")
  public void unwatch(String questionId, @Attr("me") User me) {
    dao.update(Question.class, new BasicDBObject("_id", new ObjectId(questionId)), new BasicDBObject("$pop", new BasicDBObject("watchers", new DBRef(null, "user", new ObjectId(me.getId())))));
  }
View Full Code Here

TOP

Related Classes of com.mongodb.DBRef

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.