I'm trying to understand the readTimeout available on restTemplate, what is it exactly ?
Is it the the total amount of time the request can take before we get the timeout exception ?
As far as i knew, In restTemplate we have 3 type of timeouts
ConnectionRequestTimeout. This is timeout in millis for getting connection from connectionManager
ConnectionTimeout. This is timeout in millis for establishing connection between source and destination
ReadTimeout. This is timeout in millis which expects the response/result should be returned from the destination endpoint.