Невозможно загрузить файл на сервер sftp, используя интеграцию Spring - PullRequest
1 голос
/ 03 февраля 2020

Привет я получаю следующее исключение при попытке загрузить CSV-файл на SFTP-сервер с помощью Spring интеграции, не могу выяснить, что происходит неправильно, но на сервере я вижу файл, как 10132_1234.csv.writing , но операция записи никогда не завершается, в то время как с помощью winscp я могу копировать без проблем, помогите решить эту проблему,

 Caused by: org.springframework.messaging.MessagingException: Failed
   to write to 'file-location/10132_1234.csv.writing' while uploading
   the file; nested exception is
   org.springframework.core.NestedIOException: failed to write file;
   nested exception is 3: Forbidden     at
   org.springframework.integration.file.remote.RemoteFileTemplate.sendFileToRemoteDirectory(RemoteFileTemplate.java:560)
    at
   org.springframework.integration.file.remote.RemoteFileTemplate.doSend(RemoteFileTemplate.java:337)
    ... 88 common frames omitted`enter code here`

   Caused by: org.springframework.core.NestedIOException: failed to
   write file; nested exception is 3: Forbidden     at
   org.springframework.integration.sftp.session.SftpSession.write(SftpSession.java:177)
    at
   org.springframework.integration.file.remote.session.CachingSessionFactory$CachedSession.write(CachingSessionFactory.java:235)
    at
   org.springframework.integration.file.remote.RemoteFileTemplate.doSend(RemoteFileTemplate.java:568)
    at
   org.springframework.integration.file.remote.RemoteFileTemplate.sendFileToRemoteDirectory(RemoteFileTemplate.java:557)
    ... 89 common frames omitted

   Caused by: com.jcraft.jsch.SftpException: Forbidden  at
   com.jcraft.jsch.ChannelSftp.throwStatusError(ChannelSftp.java:2873)
    at com.jcraft.jsch.ChannelSftp._put(ChannelSftp.java:594)   at
   com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:540)    at
   com.jcraft.jsch.ChannelSftp.put(ChannelSftp.java:492)    at
   org.springframework.integration.sftp.session.SftpSession.write(SftpSession.java:174)
    ... 92 common frames omitted

Вот мой код загрузки:

@Bean
public SessionFactory<LsEntry> sftpSessionFactory() {
    DefaultSftpSessionFactory factory = new DefaultSftpSessionFactory(true);
    factory.setHost(sftpHost);
    factory.setPort(sftpPort);
    factory.setUser(sftpUser);
    if (sftpPrivateKey != null) {
        factory.setPrivateKey(sftpPrivateKey);
        factory.setPrivateKeyPassphrase(sftpPrivateKeyPassphrase);
    } else {
        factory.setPassword(sftpPasword);
    }
    factory.setAllowUnknownKeys(true);
    return new CachingSessionFactory<>(factory);
}

@Bean
@ServiceActivator(inputChannel = "toSftpChannel")
public MessageHandler handler() {
    logger.info("Entering into MessageHandler for uploading the file to SFTP server");
    SftpMessageHandler handler = new SftpMessageHandler(sftpSessionFactory());
    handler.setRemoteDirectoryExpression(new LiteralExpression(sftpRemoteDirectory));
    handler.setFileNameGenerator(message -> {
        if (message.getPayload() instanceof File) {
            return ((File) message.getPayload()).getName();
        } else {
            throw new IllegalArgumentException("File expected as payload.");
        }
    });
    return handler;
}

@MessagingGateway
public interface UploadGateway {
    @Gateway(requestChannel = "toSftpChannel")
    void upload(File file);

}
...