第 10 章 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>{CamelSBVersion}</version> <!-- use the same version as your Camel core version --> </dependency>
10.1. URI 格式
azure-storage-blob://accountName[/containerName][?options]
如果是使用者,则需要 accountName
。如果是生成者,它取决于请求的操作,例如,如果操作位于容器级别上,例如:
createContainer
、accountName
和 containerName
只需要,但如果 blob 级别请求操作,例如 getBlob
、accountName
、containerName
和 blobName
。
如果 blob 尚不存在,则会创建它。您可以以以下格式将查询选项附加到 URI 中,
?options=value&option2=value&…