Spring-retry基本使用

Spring-retry基本使用

ID:38260325

大小:19.85 KB

页数:5页

时间:2019-06-07

Spring-retry基本使用_第1页
Spring-retry基本使用_第2页
Spring-retry基本使用_第3页
Spring-retry基本使用_第4页
Spring-retry基本使用_第5页
资源描述:

《Spring-retry基本使用》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、背景介绍在实际工作过程中,重试是一个经常使用的手段。比如MQ发送消息失败,会采取重试手段,比如工程中使用RPC请求外部服务,可能因为网络波动出现超时而采取重试手段......可以看见重试操作是非常常见的一种处理问题,系统设计的手段而在之前我们项目中处理重拾操作依赖MQ自身的重试机制,但是这种机制不是很灵活,如果某些功能没有使用MQ的话,那么就不是那么方便了,而本文介绍的Spring-Retry却能够以一种很优雅的方式解决这种问题,当然目前版本的Spring-retry还不是完美的,还是有待改进的.不过已经很不错了.基本使用·例子1·@Configur

2、ation@EnableRetrypublicclassApplication{@BeanpublicServiceservice(){returnnewService();}}@ServiceclassService{@Retryable(RemoteAccessException.class)publicvoidservice(){//...dosomething}@Recoverpublicvoidrecover(RemoteAccessExceptione){//...panic}}··例子2·@org.springframework.ste

3、reotype.ServicepublicclassService1{@Retryable(value={RemoteAccessException.class,RuntimeException.class},maxAttempts=2,backoff=@Backoff(value=2000))publicvoidservice(){System.out.println("dosomethings");//thisexceptionwilljusttriggerrecover1,donottriggerrecover3thrownewRemoteAc

4、cessException("remoteaccessexception");//thisexceptionwilljusttriggerrecover2//thrownewRuntimeException("runtimeexception");//System.out.println("doanotherthings");}//如果使用注解的话,这个recover貌似只能写在本类中,我测试了如果将recover方法写在//recoverService中,好像找不到@Recoverpublicvoidrecover1(RemoteAccessExc

5、eptione){System.out.println(e.getMessage());System.out.println("dorecoveroperation1");}@Recoverpublicvoidrecover2(RuntimeExceptione){System.out.println(e.getMessage());System.out.println("dorecoveroperation2");}@Recoverpublicvoidrecover3(RemoteAccessExceptione){System.out.print

6、ln(e.getMessage());System.out.println("dorecoveroperation3");}}··例子3·@ServicepublicclassService2{publicvoidtest(){finalRetryTemplateretryTemplate=newRetryTemplate();finalSimpleRetryPolicypolicy=newSimpleRetryPolicy(3,Collections.,Boolean>singletonMap(Ex

7、ception.class,true));FixedBackOffPolicyfixedBackOffPolicy=newFixedBackOffPolicy();fixedBackOffPolicy.setBackOffPeriod(100);retryTemplate.setRetryPolicy(policy);retryTemplate.setBackOffPolicy(fixedBackOffPolicy);finalRetryCallbackretryCallback=newRetryCallback<

8、Object,Exception>(){publicObjectdoWithRetry(RetryConte

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。