I have an application that uses Spring Integration for Parallel calls. All configurations are in the config.xml. Is there a way to set the decorator of every task executor I placed but still using the XML configuration? I have to pass the MDC from the main thread to the parallel threads of my logger.
<task:executor id="taskExecutor" pool-size="650-700"
queue-capacity="3000" rejection-policy="CALLER_RUNS"/>
This is the task executor config I have right now.