In the last tutorial, we have seen Spring Cloud: Exploring Spring Cloud Config Server (Native Method). In this tutorial, we will look into the GIT base method.
Spring cloud config allows you to have applications/micro-services configuration at a centralized place. Since we are working on spring micro-services. We may have hundreds of micro-services running together. Now we want to manage configuration for hundreds of those micro-services. It would be a big pain if we do it manually. Instead, we will use the config server provided by Spring Cloud to manage that configuration from a central place.
We are going to achieve the same goal here which we discussed in the earlier tutorial. But here we will move our configuration to a GIT repository.
TL;DR You can download whole project by clicking following link.
Continue reading Spring Cloud: Exploring Spring Cloud Config Server (GIT Mode)