私はspring-projects/spring-integration-samplesの集約サンプルを調べています。
https://github.com/spring-projects/spring-integration-samples/blob/master/applications/cafe/cafe-si/src/main/resources/META-INF/spring/integration/cafeDemo-xml.xmlSpring Integration Sample :: Aggregator
<int:aggregator input-channel="preparedDrinks" method="prepareDelivery" output-channel="deliveries">
<beans:bean class="org.springframework.integration.samples.cafe.xml.Waiter"/>
</int:aggregator>
public class Waiter {
public Delivery prepareDelivery(List<Drink> drinks) {
return new Delivery(drinks);
}
}
ウェイタークラスは、任意の相関/リリース戦略を指定していません。アイテムはどのように集約/グループリリースされていますか?あなたはcorrelation-strategy
とrelease-strategy
を指定しない場合は