感谢关注,
我在ftp服务器上使用int-ftp:outbound-gateway
命令,我想处理输出通道并调度到其他通道,我的代码是:
<int:channel id="inbound1"/>
<int-ftp:outbound-gateway id="gatewayLS"
session-factory="ftpSessionFactory"
request-channel="inbound1"
command="ls"
command-options="-R"
expression="payload"
reply-channel="output"/>
<int:channel id="output">
<int:interceptors>
<int:wire-tap channel="logger"/>
</int:interceptors>
</int:channel>
proccess如何输出通道并调度到其他通道,例如input1和input2?