Spring Cloud Config Server-响应描述

时间:2018-10-16 14:44:48

标签: spring spring-boot spring-cloud spring-cloud-config

是否有任何文档提供对Spring Cloud Config Server响应中所有元素的描述

{
   "name":"myapp",
   "profiles":[
      "default"
   ],
   "label":null,
   "version":null,
   "state":null,
   "propertySources":[
      {
         "name":"vault:myapp",
         "source":{
            "foo":"myappsbar"
         }
      },
      {
         "name":"vault:application",
         "source":{
            "baz":"bam",
            "foo":"bar"
         }
      }
   ]
}

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

请参阅https://cloud.spring.io/spring-cloud-config/multi/multi__spring_cloud_config_server.html#vault-backend。它具有一个与您的问题相同的响应对象,文档可以帮助您理解该对象中的每个参数。