This commit is contained in:
Muyao 2024-08-27 09:36:11 +08:00
Родитель 8673ef7b9e
Коммит 5fbb9a3952
3 изменённых файлов: 3 добавлений и 4 удалений

Просмотреть файл

@ -1,8 +1,7 @@
# Spring Cloud Azure
[![Update Properties Table In Microsoft Docs](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-properties-table-in-ms-docs.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-properties-table-in-ms-docs.yaml) [![Broken Link Checker](https://github.com/microsoft/spring-cloud-azure/actions/workflows/broken-link-check.yml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/broken-link-check.yml) [![GH Pages Broken Link Checker](https://github.com/microsoft/spring-cloud-azure/actions/workflows/schedule-current-link-check.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/schedule-current-link-check.yaml) [![Update Docs](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-docs.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-docs.yaml) [![pages-build-deployment](https://github.com/microsoft/spring-cloud-azure/actions/workflows/pages/pages-build-deployment/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/pages/pages-build-deployment)
[![Update Properties Table In Microsoft Docs](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-properties-table-in-ms-docs.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-properties-table-in-ms-docs.yaml) [![Broken Link Checker](https://github.com/microsoft/spring-cloud-azure/actions/workflows/broken-link-check.yml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/broken-link-check.yml) [![GH Pages Broken Link Checker](https://github.com/microsoft/spring-cloud-azure/actions/workflows/schedule-current-link-check.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/schedule-current-link-check.yaml) [![Update Docs](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-docs.yaml/badge.svg)](https://github.com/microsoft/spring-cloud-azure/actions/workflows/update-docs.yaml)
Spring Cloud Azure is an open-source project that provides seamless Spring integration with Azure services.

Просмотреть файл

@ -285,4 +285,4 @@ spring.cloud.azure.appconfiguration.stores[0].endpoint= <URI of your Configurati
## For more information
See [Starter Readme](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/appconfiguration/azure-spring-cloud-starter-appconfiguration-config) for more details and compete documentation of all settings.
See [Starter Readme](https://github.com/Azure/azure-sdk-for-java/tree/main/sdk/spring/spring-cloud-azure-starter-appconfiguration-config) for more details and compete documentation of all settings.

Просмотреть файл

@ -94,7 +94,7 @@ NOTE: If you choose to use a security principal to authenticate and authorize wi
[Note] if both way applied,
* Custom collection Name.
By default, collection name will be class name of user domain class. To customize it, add annotation `@Document(collection="myCustomCollectionName")` to your domain class, that's all.
* Supports link:https://docs.microsoft.com/azure/cosmos-db/partitioning-overview[Azure Cosmos DB partition]. To specify a field of your domain class to be partition key field, just annotate it with `@PartitionKey`. When you do CRUD operation, please specify your partition value. For more sample on partition CRUD, please refer to link:https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/cosmos/azure-spring-data-cosmos-test/src/test/java/com/azure/spring/data/cosmos/repository/integration/AddressRepositoryIT.java[test here]
* Supports link:https://docs.microsoft.com/azure/cosmos-db/partitioning-overview[Azure Cosmos DB partition]. To specify a field of your domain class to be partition key field, just annotate it with `@PartitionKey`. When you do CRUD operation, please specify your partition value. For more sample on partition CRUD, please refer to link:https://github.com/Azure/azure-sdk-for-java/blob/main/sdk/spring/azure-spring-data-cosmos/src/test/java/com/azure/spring/data/cosmos/repository/integration/AddressRepositoryIT.java[test here]
* Supports link:https://docs.spring.io/spring-data/commons/docs/current/reference/html/#repositories.query-methods.details[Spring Data custom query] find operation.
* Supports link:https://spring.io/projects/spring-data-rest[spring-boot-starter-data-rest].
* Supports List and nested type in domain class.