You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: sdk/spring/azure-spring-boot-starter-storage/README.md
+18-11Lines changed: 18 additions & 11 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -20,11 +20,11 @@ The project provides a Spring Boot Starter `azure-spring-boot-starter-storage` t
20
20
```
21
21
22
22
## Key concepts
23
-
The Azure Storage platform is Microsoft's cloud storage solution for modern data storage scenarios. Core storage services offer a massively scalable object store for data objects, disk storage for Azure virtual machines (VMs), a file system service for the cloud, a messaging store for reliable messaging, and a NoSQL store.
23
+
The [Azure Storage platform] is Microsoft's cloud storage solution for modern data storage scenarios. Core storage services offer a massively scalable object store for data objects, disk storage for Azure virtual machines (VMs), a file system service for the cloud, a messaging store for reliable messaging, and a NoSQL store.
24
24
25
25
## Examples
26
26
27
-
Please use this `sample` as a reference for how to use **Azure Spring Boot Storage Starter** in your projects.
27
+
Please use this [sample] as a reference for how to use **Azure Spring Boot Storage Starter** in your projects.
28
28
29
29
#### Auto-configuration for Azure Blob storage
30
30
@@ -34,27 +34,34 @@ Name | Description | Required
34
34
---|---|---
35
35
azure.storage.accountName | The name of the Azure Storage account. | Yes |
36
36
azure.storage.accountKey | The access key of the Azure Storage account. | Yes |
37
-
azure.storage.blob-endpoint | The blob endpoint URL of the Azure Storage account. | Optionalwhen storage blob resource is used. |
38
-
azure.storage.file-endpoint | The file endpoint URL of the Azure Storage account. | Optionalwhen storage file resource is used |
37
+
azure.storage.blob-endpoint | The blob endpoint URL of the Azure Storage account. | [Optional] Required when storage blob service is used. |
38
+
azure.storage.file-endpoint | The file endpoint URL of the Azure Storage account. | [Optional] Required when storage file service is used |
39
39
40
40
#### Autowire a resource
41
-
You can use the annotation of `@Value("blob://{containerName}/{blobName}")` to autowire a `Resource` with that in [Azure Blob storage][azure_storage].
41
+
You can use the annotation of `@Value("azure-blob://[your-container-name]/[your-blob-name]")` to autowire a **blob**`Resource`.
0 commit comments