如何在 Spring 云配置服务器中制作特定于应用程序的纯文本文件?

How to make plain text files application specific in Spring cloud config server?

我正在使用微服务并使用 Spring 云配置服务器将配置集中存储在 GIT 存储库中。我有一些特定于应用程序的 xml 文件,我可以使用以下 URL:
从配置服务器获取 xml 文件 {Spring-cloud-server-uri}/{name}/{profile}/{label}/{path}

我能够根据开发、测试等配置文件分离文件,但是有什么方法可以在保存 xml 文件时提及应用程序名称以使其特定于应用程序。

让我们假设对于 yml 或属性文件,我们将它们保存为如下内容:

{应用程序名称}-{配置文件名称}.properties

但根据 spring 云文档,它只为我们提供了根据配置文件存储它的选项:

https://cloud.spring.io/spring-cloud-config/multi/multi__serving_plain_text.html

但我想要的是这样的:
log-{application-name}-{profile-name}.xml

因为没有这个我不知道 'application' 在
中的意义是什么 {Spring-cloud-server-uri}/{applicationname}/{profile}/{label}/{path}

提前致谢,如果我在思考某个方向 spring 云配置不支持的功能,请告诉我。

我在 spring-cloud-config GitHub 存储库中提出了同样的问题,我认为目前还不可能。

See the issue here.