如何将 task:scheduled in spring-intgeration 的响应传递给通道?
<task:scheduled-tasks>
<task:scheduled ref="loadFruits" method="loadFruits" cron="0/5 * * * * *"/>
</task:scheduled-tasks>
<bean id="loadFruits" class="com.data.taskschedulers.LoadFruits"/>
<int:channel id="outboundComplexChannel"/>
现在我可以了解如何读取 loadFruits 方法对通道 outboundComplexChannel 的返回响应吗
请提供这样做的任何方式
谢谢