Spring 云配置服务器无法从本地位置获取属性

Spring cloud config server fetching properties from native location is not working

您好,请查看我的配置文件的项目结构

在 yml 文件中包含这些行

   spring.profiles.active=native
spring.cloud.config.server.native.searchlocations =classpath:config/{application}

在这里我可以直接在服务名称下获取属性,但不知道如何从澳大利亚,加拿大等文件夹中获取数据。请帮助

我通过在服务器中提供另一个搜索位置路径解决了这个问题。查看以下更改

spring.cloud.config.server.native.searchlocations =classpath:config/{application},classpath:config/{application}/{label}

在客户端,我必须确保我传递的是正确的标签。

spring.cloud.config.label=australia