- ubuntu12.04环境下使用kvm ioctl接口实现最简单的虚拟机
- Ubuntu 通过无线网络安装Ubuntu Server启动系统后连接无线网络的方法
- 在Ubuntu上搭建网桥的方法
- ubuntu 虚拟机上网方式及相关配置详解
CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.
这篇CFSDN的博客文章浅谈spring的重试机制无效@Retryable@EnableRetry由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.
spring-retry模块支持方法和类、接口、枚举级别的重试 。
方式很简单,引入pom包 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<
parent
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-parent</
artifactId
>
<
version
>lastest</
version
>
</
parent
>
<
dependency
>
<
groupId
>org.springframework.boot</
groupId
>
<
artifactId
>spring-boot-starter-web</
artifactId
>
</
dependency
>
<!-- https://mvnrepository.com/artifact/org.springframework.retry/spring-retry -->
<
dependency
>
<
groupId
>org.springframework.retry</
groupId
>
<
artifactId
>spring-retry</
artifactId
>
<
version
>1.1.2.RELEASE</
version
>
</
dependency
>
<
dependency
>
<
groupId
>org.aspectj</
groupId
>
<
artifactId
>aspectjweaver</
artifactId
>
<
version
>1.8.6</
version
>
</
dependency
>
|
然后在@Configuration注解的类中添加@EnableRetry 。
最后在想要重试的方法上添加@Retryable(Exception.class) 。
由于retry用到了aspect增强,所有会有aspect的坑,就是方法内部调用,会使aspect增强失效,那么retry当然也会失效.
例如 。
1
2
3
4
5
6
7
8
9
10
|
public
class
demo {
public
void
A() {
B();
}
@Retryable
(Exception.
class
)
public
void
B() {
throw
new
RuntimeException(
"retry..."
);
}
}
|
。
这种情况B()不会重试.
补充知识:Springboot整合Spring Retry实现重试机制 。
在项目开发过程中,经常会有这样的情况:第一次执行一个操作不成功,考虑到可能是网络原因造成,就多执行几次操作,直到得到想要的结果为止,这就是重试机制.
Springboot可以通过整合Spring Retry框架实现重试.
下面讲一下在之前新建的ibatis项目基础上整合Spring Retry框架的步骤:
1、首先要在pom.xml配置中加入spring-retry的依赖:
1
2
3
4
5
6
7
8
|
<
dependency
>
<
groupId
>org.springframework.retry</
groupId
>
<
artifactId
>spring-retry</
artifactId
>
</
dependency
>
<
dependency
>
<
groupId
>org.aspectj</
groupId
>
<
artifactId
>aspectjweaver</
artifactId
>
</
dependency
>
|
2、在启动类中加入重试注解@EnableRetry.
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import
org.mybatis.spring.annotation.MapperScan;
import
org.springframework.boot.SpringApplication;
import
org.springframework.boot.autoconfigure.SpringBootApplication;
import
org.springframework.retry.annotation.EnableRetry;
@EnableRetry
//重试注解
@MapperScan
(
"com.batis.mapper"
)
@SpringBootApplication
public
class
BatisApplication {
public
static
void
main(String[] args) {
SpringApplication.run(BatisApplication.
class
, args);
}
}
|
3、新建重试接口RetryService和实现类RetryServiceImpl 。
重试接口:
1
2
3
|
public
interface
RetryService {
void
retryTransferAccounts(
int
fromAccountId,
int
toAccountId,
float
money)
throws
Exception;
}
|
接口实现类:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
import
com.batis.mapper.AccountMapper;
import
com.batis.model.Account;
import
com.batis.service.RetryService;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.retry.annotation.Backoff;
import
org.springframework.retry.annotation.Recover;
import
org.springframework.retry.annotation.Retryable;
import
org.springframework.stereotype.Service;
import
org.springframework.transaction.annotation.Transactional;
@Service
public
class
RetryServiceImpl
implements
RetryService {
@Autowired
private
AccountMapper accountMapper;
@Transactional
@Retryable
(value = Exception.
class
, maxAttempts =
3
, backoff =
@Backoff
(delay =
3000
, multiplier =
1
, maxDelay =
10000
))
@Override
public
void
retryTransferAccounts(
int
fromAccountId,
int
toAccountId,
float
money)
throws
Exception {
Account fromAccount = accountMapper.findOne(fromAccountId);
fromAccount.setBalance(fromAccount.getBalance() - money);
accountMapper.update(fromAccount);
int
a =
2
/
0
;
Account toAccount = accountMapper.findOne(toAccountId);
toAccount.setBalance(toAccount.getBalance() + money);
accountMapper.update(toAccount);
throw
new
Exception();
}
@Recover
public
void
recover(Exception e) {
System.out.println(
"回调方法执行!!!"
);
}
}
|
@Retryable:标记当前方法会使用重试机制 。
value:重试的触发机制,当遇到Exception异常的时候,会触发重试 。
maxAttempts:重试次数(包括第一次调用) 。
delay:重试的间隔时间 。
multiplier:delay时间的间隔倍数 。
maxDelay:重试次数之间的最大时间间隔,默认为0,如果小于delay的设置,则默认为30000L 。
@Recover:标记方法为回调方法,传参与@Retryable的value值需一致 。
4、新建重试控制器类RetryController 。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import
com.batis.service.RetryService;
import
org.springframework.beans.factory.annotation.Autowired;
import
org.springframework.web.bind.annotation.RequestMapping;
import
org.springframework.web.bind.annotation.RequestMethod;
import
org.springframework.web.bind.annotation.RestController;
@RestController
@RequestMapping
(
"/retry"
)
public
class
RetryController {
@Autowired
private
RetryService retryService;
@RequestMapping
(value =
"/transfer"
, method = RequestMethod.GET)
public
String transferAccounts() {
try
{
retryService.retryTransferAccounts(
1
,
2
,
200
);
return
"ok"
;
}
catch
(Exception e) {
return
"no"
;
}
}
}
|
5、启动ibatis项目进行测试,在浏览器地址栏输入:http://localhost:8080/retry/transfer 。
可以看到,转账操作一共执行了3次,最后执行了回调方法.
至此Springboot整合Spring Retry的步骤已经完成,测试也非常成功! 。
有可以改进的地方希望诸位同学不要吝惜笔墨,加以指正,万分感谢! 。
以上这篇浅谈spring的重试机制无效@Retryable@EnableRetry就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持我.
原文链接:https://blog.csdn.net/xsgnzb/article/details/78780795 。
最后此篇关于浅谈spring的重试机制无效@Retryable@EnableRetry的文章就讲到这里了,如果你想了解更多关于浅谈spring的重试机制无效@Retryable@EnableRetry的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。
广播的原则 如果两个数组的后缘维度(从末尾开始算起的维度)的轴长度相符或其中一方的长度为1,则认为它们是广播兼容的。广播会在缺失维度和(或)轴长度为1的维度上进行。 在上面的对arr每一列减去列
之前在讲 MySQL 事务隔离性提到过,对于写操作给读操作的影响这种情形下发生的脏读、不可重复读、虚读问题。是通过MVCC 机制来进行解决的,那么MVCC到底是如何实现的,其内部原理是怎样的呢?我们要
我创建了一个 JavaScript 对象来保存用户在 ColorBox 中检查复选框时设置的值。 . 我对 jQuery 和“以正确的方式”编程 JavaScript 比较陌生,希望确保以下用于捕获用
我为了回答aquestion posted here on SO而玩示例,发现很难理解python的import *破坏作用域的机制。 首先是一点上下文:这个问题不涉及实际问题;我很清楚from fo
我想让我的类具有标识此类的参数 ID。例如我想要这样的东西: class Car { public static virtual string ID{get{return "car";}} }
更新:我使用的是 Java 1.6.34,没有机会升级到 Java 7。 我有一个场景,我每分钟只能调用一个方法 80 次。它实际上是由第 3 方编写的服务 API,如果您多次调用它,它会“关闭”(忽
希望这对于那些使用 Javascript 的人来说是一个简单的答案...... 我有一个日志文件,该文件正在被一个脚本监视,该脚本将注销中的新行提供给任何连接的浏览器。一些人评论说,他们希望看到的更多
我们正在开发针对 5.2 开发的 PHP 应用程序,但我们最近迁移到了 PHP 5.3。我们没有时间去解决所有迁移到 PHP 5.3 的问题。具体来说,我们有很多消息: Declaration of
简介 在实现定时调度功能的时候,我们往往会借助于第三方类库来完成,比如: quartz 、 spring schedule 等等。jdk从1.3版本开始,就提供了基于 timer 的定时调度功能。
Java中,一切都是对象,在分布式环境中经常需要将Object从这一端网络或设备传递到另一端。这就需要有一种可以在两端传输数据的协议。Java序列化机制就是为了解决这个问题而
我将编写自己的自定义控件,它与 UIButton 有很大不同。由于差异太大,我决定从头开始编写。所以我所有的子类都是 UIControl。 当我的控件在内部被触摸时,我想以目标操作的方式触发一条消息。
在我的代码中,在创建 TIdIMAP4 连接之前,我设置了一大堆 SASL 机制,希望按照规定的“最好到最差”顺序,如下所示: IMAP.SASLMechanisms.Add.SASL := mIdS
在 Kubernetes 中,假设我们有 3 个 pod,它们物理上托管在节点 X、Y 和 Z 上。当我使用“kubectl expose”将它们公开为服务时,它们都是集群中的节点(除了 X、Y 和
关闭。这个问题需要多问focused 。目前不接受答案。 想要改进此问题吗?更新问题,使其仅关注一个问题 editing this post . 已关闭 9 年前。 Improve this ques
我知道进程间通信 (ipc) 有几种方法,例如: 文件 信号 socket 消息队列 管道 命名管道 信号量 共享内存 消息传递 内存映射文件 但是我无法找到将这些机制相互比较并指出它们在不同环境中的
当我尝试连接到 teradata 时,出现了TD2 机制不支持单点登录 错误。 在 C# 中,我遇到了类似的问题,我通过添加 connectionStringBuilder.Authetication
我有一个带有 JSON API 的简单 Javascript 应用程序。目前它在客户端运行,但我想将它从客户端移动到服务器。我习惯于学习新平台,但在这种情况下,我的时间非常有限 - 所以我需要找到绝对
我想了解事件绑定(bind)/解除绑定(bind)在浏览器中是如何工作的。具体来说,如果我删除一个已经绑定(bind)了事件的元素,例如使用 jQuery:$("#anElement").remove
我不是在寻找具体答案,只是一个想法或提示。我有以下问题: Android 应用程序是 Web 服务的客户端。它有一个线程,通过 http 协议(protocol)发送事件(带有请求 ID 的 XML
我正在研究 FreeBSD TCP/IP 栈。似乎有 2 种 syn flood 机制,syncookies 和 syncache。我的问题是关于 syncookies,它是从头开始还是在 SYN 队
我是一名优秀的程序员,十分优秀!