107.12. サンプル
以下の例では、毎時(60 分)を BINARY コンテンツとして 1 回に FTP サーバーからすべてのレポートをダウンロードし、ローカルファイルシステムにファイルとして保存するように Camel を設定します。
Spring DSL を使用したルートの場合:
<route> <from uri="ftp://scott@localhost/public/reports?password=tiger&binary=true&delay=60000"/> <to uri="file://target/test-reports"/> </route>
107.12.1. リモート FTPS サーバー(暗黙的な SSL)およびクライアント認証の使用
from("ftps://admin@localhost:2222/public/camel?password=admin&securityProtocol=SSL&isImplicit=true &ftpClient.keyStore.file=./src/test/resources/server.jks &ftpClient.keyStore.password=password&ftpClient.keyStore.keyPassword=password") .to("bean:foo");