Mongodb與spring整合(3)——MongoRepository實現增刪改查和複雜查詢

來源:互聯網
上載者:User

 

與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);

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.