Spring cloud config
target My main target here is to show how spring cloud config work with a real example what is spring cloud config As you know, spring cloud has many projects (modules) and spring cloud config is one of these. His target is to help the programmer to build a server that work as configuration server and also to let the clients to get the configuration from the server. No one force you to use spring cloud config to build this kind of stuff, but if you use it, you will save a lot of time, because, as we are going to see, with spring cloud is very simple build what i said. why should i use a config server the problem is related expecially with microservices that you build with spring boot. As you know, when you build a microservice with spring boot, it has its configuration file and often you need to modifity it. But a distribuited application can have a lot of microservices, so it can require a lot of time when you have to configure each microservice. The solution of this pro...