我必须将文件A和B按顺序复制到远程文件夹。重要的是,B仅在A发送之后发送,至少在同一时间发送,而不是之前发送。 我已经阅读过该文档,但目前尚不清楚。我的想法是将2条消息放入同一个频道。但我不知道链接到这两条消息的文件是否会按顺序发送。
@Component
public class JobExportExecutionsRouter {
...
@Autowired
private MessageChannel sftpIncrExportChannel;
...
@Router
public List<String> routeJobExecution(JobExecution jobExecution) {
final List<String> routeToChannels = new ArrayList<String>();
...
sftpIncrExportChannel.send(MessageBuilder.withPayload(fileA).build());
sftpIncrExportChannel.send(MessageBuilder.withPayload(fileB).build());
routeToChannels.add("sftpIncrExportChannel");
return routeToChannels;
}
}
我的XML配置包含:
<int:channel id="sftpIncrExportChannel">
<int:queue/>
</int:channel>
...
<int-sftp:outbound-channel-adapter session-factory="sftpSessionFactory" channel="sftpIncrExportChannel" charset="UTF8" remote-directory="${export.incr.sftp.dir}" />
...
<bean id="sftpSessionFactory"
class="org.springframework.integration.sftp.session.DefaultSftpSessionFactory">
<property name="host" value="${export.incr.sftp.dir}"/>
<property name="user" value="${export.incr.sftp.user}"/>
<property name="password" value="${export.incr.sftp.password}"/>
</bean>
你有什么建议吗?