如何在 mongo-spring 聚合中使用文本搜索

How to use text-search in mongo-spring aggregate

我如何将一个简单的 mongo shell $匹配短语翻译成它的等价物 在 mongo-spring 在 Java - 使用聚合?

$match: { $text: { $search: "read" } } 

Spring-data 内置了对文本搜索的支持。

我使用了以下依赖项:

<dependency>
    <groupId>org.springframework.data</groupId>
    <artifactId>spring-data-mongodb</artifactId>
    <version>1.8.2.RELEASE</version>
</dependency>

尝试以下语法:

TextCriteria criteria = TextCriteria.forDefaultLanguage().matchingAny("read");

Query query = TextQuery.queryText(criteria);    

List<klass> list = mongoTemplate.find(query, klass, "collection_name");

有关详细信息,请参阅 this

要在聚合中执行相同操作,请使用以下语法:

BasicDBObject match = new BasicDBObject("$match", 
                new BasicDBObject("$text", new BasicDBObject("$search", "COST")));

List<DBObject> aggregationList = new ArrayList<DBObject>();
aggregationList.add(match);

AggregationOutput aggregationOutput = mongoTemplate.getCollection("categoryMaster")
        .aggregate(aggregationList);

List<DBObject> dbObjects = (List<DBObject>) aggregationOutput.results();

在您的 klass 中转换此 dbobjects 如下:

for(DBObject dbObject : dbObjects) {
    mongoTemplate.getConverter().read(klass, dbObject);
}