Spring Integration SFTP - 从XML获取配置

时间:2018-01-23 10:09:54

标签: java spring spring-integration

假设我在xml中有这些配置,

<int-sftp:outbound-channel-adapter  id="sftpOutbound"
            channel="sftpChannel"
            auto-create-directory="true"
            remote-directory="/path/to/remote/directory/"
            session-factory="cachingSessionFactory">
    <int-sftp:request-handler-advice-chain>
        <int:retry-advice />
    </int-sftp:request-handler-advice-chain>
</int-sftp:outbound-channel-adapter>

如何检索属性,即Java类中的remote-directory?

我尝试使用context.getBean('sftpOutbound'),但它返回的EventDrivenConsumer类没有获取配置的方法。

我使用的是spring-integration-sftp v 4.0.0。

1 个答案:

答案 0 :(得分:1)

我实际上更关心你为什么要访问它。我的意思是远程目录和其他属性将随每条消息的标题一起提供,因此您可以在消息级别访问它,但不能在事件驱动消费者级别访问它,这是设计原因,因此我的问题。