gpt4 book ai didi

java - Spring SFTP 连接 - 从 SFTP 服务器获取文件

转载 作者:行者123 更新时间:2023-11-30 08:43:42 32 4
gpt4 key购买 nike

我是 Spring 的新手。我正在使用 spring 从远程服务器获取文件。

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:int="http://www.springframework.org/schema/integration"
xmlns:sftp="http://www.springframework.org/schema/integration/sftp"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/integration
http://www.springframework.org/schema/integration/spring-integration.xsd
http://www.springframework.org/schema/integration/sftp
http://www.springframework.org/schema/integration/sftp/spring-integration-sftp-2.2.xsd">

<bean id="sftpSessionFactory"
class="org.springframework.integration.sftp.session.DefaultSftpSessionFactory">
<property name="host" value="xxxxxxxx" />
<property name="user" value="wildfly" />
<property name="password" value="w!ldfly" />
<property name="port" value="22" />
</bean>

<int:channel id="sftpChannel" />

<sftp:inbound-channel-adapter id="triggerFtpInBound" auto-create-local-directory="true"
local-directory="/tmp/test" filename-pattern="*" channel="sftpChannel"
session-factory="sftpSessionFactory" remote-directory="/home/wildfly" delete-remote-files="true">
<int:poller cron="1/10 * * * * *" max-messages-per-poll="1" />
</sftp:inbound-channel-adapter>

我正在使用以下代码。

ApplicationContext context = new ClassPathXmlApplicationContext("spring/config/spring-sftp.xml");

我在运行它时没有收到任何错误,但我也没有收到任何文件的复制。请让我知道我的代码中的错误。提前致谢。

最佳答案

仅查看静态配置很难调试。

第一步是打开 org.springframework.integration 的 DEBUG 日志记录,看看发生了什么。

如果您无法从日志中找出答案,请发布它们;如果这里太大,请使用 github gist、pastebin 或类似工具。

Spring Integration 在幕后使用 jsch;您可以按照描述启用其日志记录 in the reference manual .

关于java - Spring SFTP 连接 - 从 SFTP 服务器获取文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34100666/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com