mongodb在java中的查询

mongodb 根据_id 查询记录:

public Price queryPriceById(String id) throws Exception {
  return mongoTemplate.findById(new ObjectId(id), Price.class, PRICE_COLLECTION);
}

根据集合中的某个字段查询:

    public Price queryPriceByName(String name) throws Exception {
Price price = null;
price = mongoTemplate.findOne(new Query(Criteria.where("name").is(name)), Price.class, PRICE_COLLECTION);
return price;
}
上一篇:新浪微博.Net SDK第三版源代码和示例【最后一次更新了】


下一篇:C#与时间有关的一些方法