jcabi-aspects を使用して、接続が戻るまで URL http://xxxxxx:8080/helloへの接続を再試行しています。
jcabi @RetryOnFailure でattempts(12)=expiryTime(1 min=60000 millis)/delay(5 sec=5000 millis)のような操作を実行したいのですが、どうすればいいですか? コード スニペットは以下のとおりです。
@RetryOnFailure(attempts = 12, delay = 5)
public String load(URL url) {
return url.openConnection().getContent();
}