Spring Cloud Config provides server and client-side support for externalized configuration in a distributed system. With the Config Server, you have a central place to manage external properties for applications across all environments. The default implementation of the server storage backend uses Git.
The Spring Cloud Config Server helps in change management and allows developers to maintain the application configuration in a centralized location:
The workflow involved in storing and fetching the application configuration from the source control ...