我的上下文xml如下所示:
<bean id="defaultSftpSessionFactory"
class="org.springframework.integration.sftp.session.DefaultSftpSessionFactory">
<property name="host" value="${host}"/>
<property name="password" value="${password}"/>
<property name="port" value="${port}"/>
<property name="user" value="${username}"/>
</bean>
<int-sftp:inbound-channel-adapter id="sftpInbondAdapter"
session-factory="sftpSessionFactory"
channel="receiveChannel"
filename-pattern="*.txt"
remote-directory="/loblawln"
local-directory="/local-dir"
auto-create-local-directory="true"
temporary-file-suffix=".writing"
delete-remote-files="false">
<int:poller fixed-rate="1000" max-messages-per-poll="1"/>
</int-sftp:inbound-channel-adapter>
<int:channel id="receiveChannel">
<int:queue/>
</int:channel>
java文件如下所示:
PollableChannel localFileChannel = context.getBean("receiveChannel", PollableChannel.class);
SourcePollingChannelAdapter adapter = context.getBean(SourcePollingChannelAdapter.class);
adapter.start();
System.out.println("Adapter started...");
Message<?> received = localFileChannel.receive();
System.out.println("Received first file message: " + received);
我已经提到过Github上的Gary Russell提供的实现,并且还关注了sftp集成的spring docs。我想我错过了一些重要的事情。 此外,日志也没有显示任何内容。
答案 0 :(得分:2)
通过更改读取用户名的密钥解决了问题。 当我在defaultSessionFactory实例中调试代码并读取值时,这对我来说似乎有点奇怪,我发现它不是从属性文件中读取用户名,而是读取对应于System.getProperty(“user.name”)的值。当我将密钥从{username}更改为其他类似{sftp.username}的内容时,它会正确读取。