網站首頁 編程語言 正文
項目中某個位置要調用其它部門的接口,一直有問題,對方讓加重試。使用@Retryable之后發現并沒有進行重試,之前其它接口都正常重試了。
經過研究發現了這個方法是直接寫在調用的類里面的,這種情況重試竟然不會進行。
在某個方法中調用另一個帶retryable的方法時,如果這個retry方法在同一個類中,不會進行重試
執行methodA 不會重試
public class TaskSubSchedule {
public void methodA() {
System.out.println("開始測試");
methodB();
}
@Retryable(value = RuntimeException.class,maxAttempts = 5)
public void methodB() {
System.out.println("我是方法B");
throw new RuntimeException();
}
}
會重試
public class TaskSubSchedule {
@Autowired
private CiserviceImpl ciService;
public void methodA() {
System.out.println("開始測試");
ciService.methodB();
}
public class CiServiceImpl {
@Retryable(value = RuntimeException.class,maxAttempts = 5)
public void methodB() {
System.out.println("我是方法B");
throw new RuntimeException();
}
}
}
原文鏈接:https://blog.csdn.net/qq_37831759/article/details/140489092
- 上一篇:沒有了
- 下一篇:沒有了
相關推薦
- 2022-03-15 go: unknown environment setting GO111MODULE=no
- 2022-12-27 python空值判斷方式(if?xxx和if?xxx?is?None的區別及說明)_python
- 2022-09-15 c語言實現數組循環左移m位_C 語言
- 2022-07-19 Python數據分析?Pandas?Series對象操作_python
- 2022-04-12 qt5之QFile讀寫文件功能詳解_C 語言
- 2023-02-23 golang?int64轉int的方法_Golang
- 2023-04-20 flex 的 三個參數:flex-grow、flex-shrink、flex-basis
- 2022-07-20 python出現RuntimeError錯誤問題及解決_python
- 欄目分類
-
- 最近更新
-
- window11 系統安裝 yarn
- 超詳細win安裝深度學習環境2025年最新版(
- Linux 中運行的top命令 怎么退出?
- MySQL 中decimal 的用法? 存儲小
- get 、set 、toString 方法的使
- @Resource和 @Autowired注解
- Java基礎操作-- 運算符,流程控制 Flo
- 1. Int 和Integer 的區別,Jav
- spring @retryable不生效的一種
- Spring Security之認證信息的處理
- Spring Security之認證過濾器
- Spring Security概述快速入門
- Spring Security之配置體系
- 【SpringBoot】SpringCache
- Spring Security之基于方法配置權
- redisson分布式鎖中waittime的設
- maven:解決release錯誤:Artif
- restTemplate使用總結
- Spring Security之安全異常處理
- MybatisPlus優雅實現加密?
- Spring ioc容器與Bean的生命周期。
- 【探索SpringCloud】服務發現-Nac
- Spring Security之基于HttpR
- Redis 底層數據結構-簡單動態字符串(SD
- arthas操作spring被代理目標對象命令
- Spring中的單例模式應用詳解
- 聊聊消息隊列,發送消息的4種方式
- bootspring第三方資源配置管理
- GIT同步修改后的遠程分支