Interview questions
Question 159 of 254
FreeWhat is a Spring Cloud Config Server, and what problem does it solve?
Microservices & Spring Cloud
Config Server is a centralized, externalized configuration service — instead of each microservice bundling its own application.yml, they fetch their configuration at startup (or on refresh) from a central Config Server backed by a Git repository (or another supported backend), letting configuration changes be managed, versioned, and audited in one place, and enabling a single config change to propagate to every instance of a service without redeploying it.
Advanced7 min
