gpt4 book ai didi

Spring 数据 MongoDB : How to describe aggregation $merge with Spring Aggregation?

转载 作者:行者123 更新时间:2023-12-05 02:45:03 31 4
gpt4 key购买 nike

我想通过 MongoTemplate 执行的代码:

{
$merge: {
into: 'someCollection',
on: "_id",
whenMatched: 'merge',
whenNotMatched: 'discard'
}
}

我没有找到任何合适的方法来描述 $merge 阶段,怀疑 Spring Data MongoDB 是否支持这个阶段?

最佳答案

是的,Spring Data MongoDB 支持 $merge 阶段。您的代码可以通过 MongoTemplate 按照以下方式执行。

MergeOperation mergeOperation = Aggregation.merge()
.intoCollection("someCollection")
.on("_id")
.whenMatched(MergeOperation.WhenDocumentsMatch.mergeDocuments())
.whenNotMatched(MergeOperation.WhenDocumentsDontMatch.discardDocument())
.build();

将此 mergeOperationmongoTemplate 一起使用。

关于 Spring 数据 MongoDB : How to describe aggregation $merge with Spring Aggregation?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/66164747/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com