28 lines
1.1 KiB
Plaintext
28 lines
1.1 KiB
Plaintext
= SFTP Consumer
|
|
|
|
A consumer that allows you to SFTP files.
|
|
|
|
== Beans for injection
|
|
|
|
The `SftpConsumerConfiguration` auto-configuration provides the following bean:
|
|
|
|
`Consumer<Message<?>> sftpConsumer`
|
|
|
|
You can use `sftpConsumer` as a qualifier when injecting.
|
|
|
|
== Configuration Options
|
|
|
|
All configuration properties are prefixed with `sftp.consumer`.
|
|
|
|
For more information on the various options available, please see link:src/main/java/org/springframework/cloud/fn/consumer/sftp/SftpConsumerProperties.java[SftpConsumerProperties].
|
|
|
|
A `ComponentCustomizer<SftpMessageHandlerSpec>` bean can be added in the target project to provide any custom options for the `SftpMessageHandlerSpec` configuration used by the `sftpConsumer`.
|
|
|
|
== Tests
|
|
|
|
See this link:src/test/java/org/springframework/cloud/fn/consumer/sftp[test suite] for the various ways, this consumer is used.
|
|
|
|
== Other usage
|
|
|
|
See this https://github.com/spring-cloud/stream-applications/blob/master/applications/sink/sftp-sink/README.adoc[README] where this consumer is used to create a Spring Cloud Stream application where it makes a SFTP sink.
|