與HibernateRepository類似,通過繼承MongoRepository介面,我們可以非常方便地實現對一個對象的增刪改查,要使用Repository的功能,先繼承MongoRepository<T, TD>介面,其中T為倉庫儲存的bean類,TD為該bean的唯一標識的類型,一般為ObjectId。之後在service中注入該介面就可以使用,無需實現裡面的方法,spring會根據定義的規則自動產生。
例:
public interface PersonRepository extends MongoRepository<Person, ObjectId>{//這裡可以添加額外的查詢方法}
但是MongoRepository實現了的只是最基本的增刪改查的功能,要想增加額外的查詢方法,可以按照以下規則定義介面的方法。自訂查詢方法,格式為“findBy+欄位名+方法尾碼”,方法傳進的參數即欄位的值,此外還支援分頁查詢,通過傳進一個Pageable對象,返回Page集合。
例:
public interface PersonRepository extends MongoRepository<Person, ObjectId>{ //查詢大於age的資料 public Page<Product> findByAgeGreaterThan(int age,Pageable page) ;}
下面是支援的查詢類型,每三條資料分別對應:(方法尾碼,方法例子,mongodb原生查詢語句)
GreaterThan(大於)
findByAgeGreaterThan(int age)
{"age" : {"$gt" : age}}
LessThan(小於)
findByAgeLessThan(int age)
{"age" : {"$lt" : age}}
Between(在...之間)
findByAgeBetween(int from, int to)
{"age" : {"$gt" : from, "$lt" : to}}
IsNotNull, NotNull(是否非空)
findByFirstnameNotNull()
{"age" : {"$ne" : null}}
IsNull, Null(是否為空白)
findByFirstnameNull()
{"age" : null}
Like(模糊查詢)
findByFirstnameLike(String name)
{"age" : age} ( age as regex)
(No keyword) findByFirstname(String name)
{"age" : name}
Not(不包含)
findByFirstnameNot(String name)
{"age" : {"$ne" : name}}
Near(查詢地理位置相近的)
findByLocationNear(Point point)
{"location" : {"$near" : [x,y]}}
Within(在地理位置範圍內的)
findByLocationWithin(Circle circle)
{"location" : {"$within" : {"$center" : [ [x, y], distance]}}}
Within(在地理位置範圍內的)
findByLocationWithin(Box box)
{"location" : {"$within" : {"$box" : [ [x1, y1], x2, y2]}}}
儘管以上查詢功能已經很豐富,但如果還不能滿足使用方式的話可以用一下方法---基於mongodb原本查詢語句的查詢方式。
例:在原介面中加入
@Query("{ 'name':{'$regex':?2,'$options':'i'}, sales': {'$gte':?1,'$lte':?2}}")public Page<Product> findByNameAndAgeRange(String name,double ageFrom,double ageTo,Pageable page);
注釋Query裡面的就是mongodb原來的查詢文法,我們可以定義傳進來的查詢參數,通過座標定義方法的參數。
還可以在後面指定要返回的資料欄位,如上面的例子修改如下,則只通過person表裡面的name和age欄位構建person對象。
@Query(value="{ 'name':{'$regex':?2,'$options':'i'}, sales':{'$gte':?1,'$lte':?2}}",fields="{ 'name' : 1, 'age' : 1}") public Page<Product> findByNameAndAgeRange(String name,double ageFrom,double ageTo,Pageable page);