Spring Integration:MessageDeliveryException:无法发送消息

时间:2014-07-23 21:29:57

标签: batch-processing spring-integration

我是Spring Integration Framework的新手,但是我试着了解几天后我的配置出了什么问题,我被阻止了...... 也许你可以看出出了什么问题。 它从目录中汇集文件并将File Payload转换为LaunchRequest(以启动Spring Bath作业)。 我的程序检测到在目录中创建文件的时间,但是没有在'文件中发送文件。 channel(MessageDeliveryException:无法将消息发送到频道'文件')

[...]                                                                   

<int:service-activator method="launch" input-channel="files-requests"
output-channel="statuses">
   <bean class="org.springframework.batch.integration.launch.JobLaunchingMessageHandler">
    <constructor-arg ref="jobLauncher"/>
   </bean>
</int:service-activator>

<int:channel id="files"/>
<int:channel id="files-requests"/>
<int:channel id="statuses"/>

[...]

感谢您的帮助

0 个答案:

没有答案