Skip to content
Advertisement

Java 8 generic Retry if specific exception

I’m finding myself writing alot of retry loops that look like

JavaScript

I want to write a generic function that accepts a Lambda and only retries on a specific error (in the above case thats SocketTimeoutException). I’ve seen some functions that accept a Runnable which is fine, but they don’t seem to allow limiting to specific exceptions.

Any advice?

Advertisement

Answer

Have a look to org.springframework.retry

There is an annotation @Retryable which corresponding to your need. You can specify the type of exception to retry and configure the number of attempt, etc…

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement