第 8 章 Azure Storage Blob Service
支持生成者和消费者
Azure Storage Blob 组件用于使用 Azure API v12 从 Azure Storage Blob Service 存储和检索 Blob。但是,如果版本高于 v12,我们将看到此组件是否可以根据变化量而采用这些更改。
先决条件
您必须具有有效的 Windows Azure Storage 帐户。如需更多信息,请参阅 Azure 文档门户。
Maven 用户需要将以下依赖项添加到此组件的 pom.xml
中:
<dependency> <groupId>org.apache.camel</groupId> <artifactId>camel-azure-storage-blob</artifactId> <version>3.14.5.redhat-00018</version> <!-- use the same version as your Camel core version --> </dependency>
8.1. URI 格式
azure-storage-blob://accountName[/containerName][?options]
如果是 consumer,则需要 accountName
,则需要containerName
。如果是制作者,它依赖于所请求的操作,例如,如果操作位于容器级别,如 createContainer
、accountName
和 containerName
才是必需的,但在 blob 级别中请求操作时,如 getBlob
、accountName
、containerName
和 blobName
。
如果这些 Blob 不存在,则会创建 blob。您可以以以下格式将查询选项附加到 URI 中,
?options=value&option2=value&…