从非 spring 应用程序对 Spring 配置服务器进行 REST 访问

REST access to Spring Config Server from non-spring application

有谁知道是否可以通过 REST 接口使用来自 spring 配置服务器的配置值。如果有,接口上有文档吗? TIA.

official API doc 托管在 GitHub。

我已手动使用 REST API 进行测试。我发现 this sample 应用很有用。

API 资源

|  Path                               |  Description                                                        |
| ----------------------------------- | ------------------------------------------------------------------- |
|  /{app}/{profile}                   |  Configuration data for app in Spring profile (comma-separated).    |
|  /{app}/{profile}/{label}           |  Add a git label                                                    |
|  /{app}/{profiels}{label}/{path}    |  An environment-specific plain text config file (at "path")         |