我正在使用以下春季配置将文件从本地文件夹传输到远程SFTP服务器。

<?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="xxxxxxx" />
    <property name="knownHosts" value = "C:\knownhosts"/>
    <property name="user" value="wildfly" />
    <property name="password" value="w!ldfly" />
    <property name="port" value="22" />
</bean>

<int:channel id="sftpChannel" />

<sftp:outbound-channel-adapter id="triggerFtpOutBound" channel="sftpChannel"
    session-factory="sftpSessionFactory" remote-directory="/home/wildfly">
</sftp:outbound-channel-adapter>




我正在使用以下代码发送文件。

@Autowired
private MessageChannel sftpChannel;

Function()
{
   File f = new File("c:/test.txt");
   Message<File> message = MessageBuilder.withPayload(f).build();
   sftpChannel.send(message);
}


我在sftpChannel.send(message)收到空指针异常。如何在代码中自动连线sftpChannel?

以下代码有效。但是,我想自动连接sftpChannel。

ApplicationContext context = new ClassPathXmlApplicationContext("spring/config/spring-sftp.xml");
MessageChannel sftpChannel = context.getBean("sftpChannel", MessageChannel.class);

File f = new File("c:/test.txt");
Message<File> message = MessageBuilder.withPayload(f).build();
sftpChannel.send(message);

最佳答案

为了使用自动接线,您需要包括

<context:annotation-config />


到您的配置文件

<beans
    //...
    xmlns:context="http://www.springframework.org/schema/context"
    //...
    http://www.springframework.org/schema/context
    http://www.springframework.org/schema/context/spring-context-2.5.xsd">
    //...

    <context:annotation-config />
    //...
</beans>


这里有一个完整的例子

http://www.mkyong.com/spring/spring-auto-wiring-beans-with-autowired-annotation/

08-07 15:01