[Spring Data MongoDB]學習筆記--MongoTemplate查詢操作

來源:互聯網
上載者:User

標籤:style   blog   http   color   使用   os   io   ar   

查詢操作主要用到兩個類:Query, Criteria

所有的find方法都需要一個query的object。

1. 直接通過json來尋找,不過這種方式在代碼中是不推薦的。

BasicQuery query = new BasicQuery("{ age : { $lt : 50 }, accounts.balance : { $gt : 1000.00 }}");List<Person> result = mongoTemplate.find(query, Person.class); 

2. 推薦使用where + query的方式來進行尋找。

where方法產生一個Criteria對象,然後可以通過調用不同的方法增加操作符(比如lt,gt,and)。

更詳細的巨集指令清單請參考http://docs.spring.io/spring-data/data-mongo/docs/1.5.2.RELEASE/reference/html/mongo.core.html

import static org.springframework.data.mongodb.core.query.Criteria.where;import static org.springframework.data.mongodb.core.query.Query.query;…List<Person> result = mongoTemplate.find(query(where("age").lt(50)                                                .and("accounts.balance").gt(1000.00d)), Person.class); 

3. MongoDB也支援空間查詢,比如附近的點,下面只給出例子,詳細請看官方文檔。

@Document(collection="newyork")public class Venue {      @Id  private String id;  private String name;  private double[] location;    @PersistenceConstructor  Venue(String name, double[] location) {    super();    this.name = name;    this.location = location;      }    public Venue(String name, double x, double y) {    super();    this.name = name;    this.location = new double[] { x, y };      }  public String getName() {    return name;  }  public double[] getLocation() {    return location;  }  @Override  public String toString() {    return "Venue [id=" + id + ", name=" + name + ", location="        + Arrays.toString(location) + "]";  } }

尋找圓內的地址

Circle circle = new Circle(-73.99171, 40.738868, 0.01);List<Venue> venues =     template.find(new Query(Criteria.where("location").withinCenter(circle)), Venue.class);

尋找球面座標內的地址

Circle circle = new Circle(-73.99171, 40.738868, 0.003712240453784);List<Venue> venues =     template.find(new Query(Criteria.where("location").withinCenterSphere(circle)), Venue.class);

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.