Spring data MongoDB:在多个字段上搜索Like
我有一个MongoDB集合,其中包含带有两个字段的User对象:FirstName和LastName。我需要一个只接受一个字符串(表示用户全名)的查询来进行findLike搜索。
问题与此相同question但我不知道如何使用MongoTemplate或@Query批注在Spring数据中转换MongoDB存储库查询
编辑:
使用项目操作员,我必须指定我想要包括在阶段的所有领域。更好的解决方案可能是使用AddFields
运算符:
我发现的一个类似的问题是:
https://stackoverflow.com/a/40812293/6545142
如何将$AddFields
运算符与MongoTemplate一起使用?
解决方案
您可以使用$expr(3.6mongo版本运算符)在常规查询中仅使用精确匹配的聚合函数。
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();
相关文章