February 2019
Intermediate to advanced
442 pages
11h 46m
English
The last step is to make the necessary changes to the microservice (configuration client) so that the configuration will be propagated by the configuration server once it is updated in the Git repository. The important point at this moment is to create a new property file called bootstrap.properties and copy all the properties from the application.properties file, or you can directly rename application.properties to bootstrap.properties.
The reason is that Spring will process the bootstrap.properties file first, even before the bootstrap application and configuration server linked with it for configuration updates. You need to add a ...