An open API service indexing awesome lists of open source software.

https://github.com/yauhenbichel/retry-with-resilience4j

Verify page status using resilience4j
https://github.com/yauhenbichel/retry-with-resilience4j

countdownlatch executorservice java resilience4j retry-requests

Last synced: 7 months ago
JSON representation

Verify page status using resilience4j

Awesome Lists containing this project

README

          

## Verify page status using resilience4j

Let’s say we have a list of 10 URLs in a text file.

We need to write a simple application that hits these pages over HTTP and
verifies that we receive 200 OK status codes.

If we don’t receive 200OK on the first attempt, the application should do 4 additional retries.
Every retry should be on a 5-second interval.

### References
- https://resilience4j.readme.io/
- https://httpstat.us