I would like to know if anyone has any experience or suggestions for configuring Spring Boot using remote properties (e.g., properties located in a database on a remote machine instead of an application.properties
file). I am aware of Spring Boot's external config options, but these all assume configuration is done through a .properties
file.
Ideally I would only have to hard-code the configuration for a single datasource, and then all subsequent configurations for the various @Beans
could be done with remotely-fetched values.
Is this possible?