I am building a spring boot micrcoservice where I will be frequently calling a webservice.
The SLA, service level agreement between my service provider and my client is 15 seconds..but I can call the webservice as much as I want during these 15 seconds..
Is there a way I can make sure that my requests and response are not taking longer than 15 seconds?
Is there a way to do this with Java/ spring boot?