標籤: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);