I have a Spring Boot application deployed as a web app and this is configured to fetch externalized properties from my App Configuration resource.
I do not need my configuration properties to be reset often, yet my app is making thousands of calls, which is causing my app to get 429 errors. I can't seem to find a way to configure my Spring app to make these calls less often.
I have seen the article here about limiting requests to App Configuration but the solution is .NET specific and doesn't help me.