I have an Aggregator at the dead end of my process flow after which I dont have any processing left and hence I skipped giving any output-channel in the configuration xml and I get an exception for this reason.
<int:aggregator input-channel="inputchannel"
correlation-strategy="CorrelationStrategyBean"
correlation-strategy-method="correlate"
ref="loadAggregatorBean" method="aggregate"
release-strategy="ReleaseStrategyBean"
release-strategy-method="release"
send-partial-result-on-expiry="true"
send-timeout="100">
</int:aggregator>
Is there anyway I can configure an Aggregator without an output-channel.


Reply With Quote