我想知道是否有一个示例如何为Spring Cloud Config创建自定义EnvironmentRepository,因为这里有git,svn,Vault库,但是我不想使用它们,我需要我的自定义库。例如,如果我只想在地图中存储所有属性。
最佳答案
在您的应用程序上下文中,作为Bean提供EnvironmentRepository的实现。然后,Spring Cloud配置服务器将自动将其拾取。
这是一个简单的示例:
public class CustomEnvironmentRepository implements
EnvironmentRepository
{
@Override
public Environment findOne(String application, String profile, String label)
{
Environment environment = new Environment(application, profile);
final Map<String, String> properties = loadYouProperties();
environment.add(new PropertySource("mapPropertySource", properties));
return environment;
}
}
请注意,如果您有多个EnvironmentRepository(Git,Vault,Native ...),则还需要实现Ordered接口来指定订单。
一个好的方法是从Spring云配置服务器包中查找现有的EnvironmentRepository实现,例如VaultEnvironmentRepository。