本文介紹了Spring data MongoDB:在多個字段上搜索Like的處理方法,對大家解決問題具有一定的參考價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)吧!
問題描述
我有一個MongoDB集合,其中包含帶有兩個字段的User對象:FirstName和LastName。我需要一個只接受一個字符串(表示用戶全名)的查詢來進(jìn)行findLike搜索。
問題與此相同question但我不知道如何使用MongoTemplate或@Query批注在Spring數(shù)據(jù)中轉(zhuǎn)換MongoDB存儲庫查詢
編輯:
使用項目操作員,我必須指定我想要包括在階段的所有領(lǐng)域。更好的解決方案可能是使用AddFields
運(yùn)算符:
我發(fā)現(xiàn)的一個類似的問題是:
https://stackoverflow.com/a/40812293/6545142
如何將$AddFields
運(yùn)算符與MongoTemplate一起使用?
推薦答案
您可以使用$expr(3.6mongo版本運(yùn)算符)在常規(guī)查詢中僅使用精確匹配的聚合函數(shù)。
Spring@Query
代碼
@Query("{$expr:{$eq:[{$concat:["$Firstname","$Lastname"]}, ?0]}}")
ReturnType MethodName(ArgType arg);
對于Find Like搜索或精確搜索,您必須在較低版本中使用通過Mongo模板聚合。
AggregationOperation project = Aggregation.project().and(StringOperators.Concat.valueOf("Firstname").concatValueOf("Lastname")).as("newField");
For Like Matches
AggregationOperation match = Aggregation.match(Criteria.where("newField").regex(val));
完全匹配
AggregationOperation match = Aggregation.match(Criteria.where("newField").is(val));
代碼的其余部分
Aggregation aggregation = Aggregation.newAggregation(project, match);
List<BasicDBObject> basicDBObject = mongoTemplate.aggregate(aggregation, colname, BasicDBObject.class).getMappedResults();
這篇關(guān)于Spring data MongoDB:在多個字段上搜索Like的文章就介紹到這了,希望我們推薦的答案對大家有所幫助,