如何将task:spring-scheduled中计划的响应传递给通道?

<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的返回响应

请提供任何这样做的方式

谢谢

最佳答案

请改用inbound-channel-adapter

<int:inbound-channel-adapter ref="loadfruits" method="loadFruits"
        channel="outboundComplexChannel">
    <int:poller cron="0/5 * * * * *"/>
</int:inbound-channel-adapter>

10-07 15:52