groupExchanges() 方法是否仍然作为 AggregationDefinition 的一部分存在于 apache Camel 中?

Does groupExchanges() method still exist in apache Camel as part of the AggregationDefinition?

是否有 groupExchanges() 方法的替代方法; 根据 latest documentation,这应该是可能的,但是我无法编译代码,因为该方法似乎已经消失了。

此方法自 Apache Camel 2.15.x 后已弃用,并自 2.18.x 后删除。您应该改用 GroupedExchangeAggregationStrategy

.aggregate(new GroupedExchangeAggregationStrategy()) // Or AggregationStrategies.groupedExchange()

我有fixed文档,很快就会部署在网站上。