使用Spring Integration将文件上传到sftp需要980字节大小的文件,耗时5秒。我看到调用了jsch.ChannelSftp.put,但是sendCLOSE有时要等待5秒或更长时间。
我使用@MessagingGateway
@MessagingGateway
public interface TestUploadGateway {
@Gateway(requestChannel = "uploadChannel")
void upload(@Payload byte[] file, @Header("filename") String filename);
}