I was going through spring-retry framework tutorial : https://dzone.com/articles/how-to-use-spring-retry
But I wanted to know how it works internally. I want to use it for one of my API calls but before doing that wanted to know few things about the internal implementation which I had no luck finding out.
- Does spring-retry saves the message in some messaging queue before retrying it after sometime?
- Does it save it in some object in memory.
- Does it use the same thread pool or a different one is used?