第 294 章 SCP 组件
从 Camel 版本 2.10 开始提供
camel-jsch 组件支持使用 Jsch 项目的 Client API 的 SCP 协议。jsch 已在 camel 中由 sftp: 协议的 FTP 组件使用。
Maven 用户需要将以下依赖项添加到这个组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-jsch</artifactId> <version>x.x.x</version> <!-- use the same version as your Camel core version --> </dependency>
294.1. URI 格式
scp://host[:port]/destination[?options]
您可以在 URI 中附加查询选项,格式为 ?option=value&option=value&…
文件名可以在 URI 的 <path> 部分中指定,也可以作为消息上的 "CamelFileName" 标头指定(如果用 code,则为Exchange.FILE_NAME
)。