I am new to spring integration. As part of one of my tasks, I am supposed to have a default error handling mechanism for any failure in the pipeline.
I have a file inbound channel adapter as a starting point which I has been written as follows:
<int-file:inbound-channel-adapter id="inbound.jms.adapter"
directory="C:\Test
channel="testChannel"
auto-startup="false">
<int:poller fixed-rate="1000" error-channel="default-error-channel" />
</int-file:inbound-channel-adapter>
The channel will be used further by different components.
My question is, in case of any failure further, will the exception fallback to default error channel?