I have a couple of services (microservices) that have Web applications bound to them. In my services, there is an endpoint to serve UI configuration. That means when someone hits the site, the config endpoint is called and UI gets the required configuration.
By the way, the country code, as well as locale, is passed to this config endpoint which customizes the configuration for that user. (means we have to do some validation as well as filling some place holders in the original configuration).
Having this in mind how I could leverage the usage of Spring Cloud configuration for UI configuration in my case? If there is a better approach for this purpose let me know.
Thanks in advance