第 40 章 Azure Storage Blob Service 组件
从 Camel 版本 2.19 开始提供
Azure Blob 组件支持存储和检索 Blob 到 Azure Storage Blob 服务。
先决条件
您必须有一个有效的 Windows Azure Storage 帐户。如需更多信息,请参阅 Azure 文档门户。
40.1. URI 格式
azure-blob://accountName/containerName[/blobName][?options]
在大多数情况下,需要一个 blobName,如果不存在 blob,则会创建 blob。
您可以在 URI 中附加查询选项,格式为 ?options=value&option2=value&…
例如,若要从 camelazure
存储帐户中的 container1
上的 public 块 blob 块Blob
下载 blob 内容,请使用以下片断:
from("azure-blob:/camelazure/container1/blockBlob"). to("file://blobdirectory");