Azure KeyVault服务问题

Azure KeyVault服务问题,azure,spring-boot,sap-cloud-sdk,Azure,Spring Boot,Sap Cloud Sdk,目前,我正在SpringBoot 2.3.0.0版本上运行的一个应用程序中使用Azure keyvault服务 SAP Cloud SDK版本3.35.0不适用于bootstrap.yml中的以下配置。这是获取配置服务器凭据所必需的 azure: keyvault: enabled: true uri: client-id: client-key: tenant-id: spring: cloud: config: ur

目前,我正在SpringBoot 2.3.0.0版本上运行的一个应用程序中使用Azure keyvault服务 SAP Cloud SDK版本3.35.0不适用于bootstrap.yml中的以下配置。这是获取配置服务器凭据所必需的

azure:
  keyvault:
    enabled: true
    uri: 
    client-id: 
    client-key: 
    tenant-id: 
spring:
  cloud:
    config:
      uri: https://test:${config-server-creds}@xxx.com
使用pom.xml

<dependency>
    <groupId>com.microsoft.azure</groupId>
    <artifactId>azure-keyvault-secrets-spring-boot-starter</artifactId>
    <version>2.3.3</version>
    <scope>runtime</scope>
</dependency>

  

com.microsoft.azure
azure keyvault秘密春季启动程序
2.3.3
运行时

应用程序启动时,控制台中不会打印日志。对这个问题有什么想法吗?Sprinboot版本是否有问题。

请添加一个POM文件以轻松评估问题

我检查了
com.microsoft.azure:azure keyvault secrets spring boot starter:2.3.3
,发现它引用的是
org.springframework.boot:spring boot starter:2.3.2.RELEASE
,而
org.springframework.boot:spring boot starter:2.3.5.RELEASE
是预期的

为了建立版本兼容性,我建议使用
com.azure.spring:azure-spring-boot-starter-keyvault-secrets:3.1.0