3

如何将 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 的返回响应吗

请提供这样做的任何方式

谢谢

4

1 回答 1

10

改用入站通道适配器

<int:inbound-channel-adapter ref="loadfruits" method="loadFruits"
        channel="outboundComplexChannel">
    <int:poller cron="0/5 * * * * *"/>
</int:inbound-channel-adapter>
于 2013-07-12T18:54:11.987 回答