0
我找不到任何有關我需要的操作可能性的信息。我正在使用@Retry處理方法使用@Retryable註釋。 Smth像這樣:Spring Retry @Recover傳遞參數
@Retryable(value = {Exception.class}, maxAttempts = 5, backoff = @Backoff(delay = 10000))
public void update(Integer id)
{
execute(id);
}
@Recover
public void recover(Exception ex)
{
logger.error("Error when updating object with id {}", id);
}
問題是我不知道如何將我的參數「id」傳遞給recover()方法。有任何想法嗎?提前致謝。