- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我已经阅读了很多有关该主题的内容,但不知何故无法使我的代码正常工作。我有一个非常简单的项目,我正在尝试实现 spring-retry 流程。这是我的主要应用程序类:
@EnableRetry
@SpringBootApplication
@ComponentScan(basePackages = "com.support")
public class RetryApplication {
public static void main(String[] args) {
SpringApplication.run(RetryApplication.class, args);
}
}
还有我的支持类(class):
@Component
public class Support {
@Retryable
@PostConstruct
public void mySupport() throws Exception {
System.out.println("Attempt...");
throw new IndexOutOfBoundsException();
}
@Recover
public void myRecovery(){
System.out.println("Recovering...");
}
}
以及我的 build.gradle 文件的一部分:
dependencies {
compile('org.springframework.boot:spring-boot-starter-aop')
compile('org.springframework.retry:spring-retry')
testCompile('org.springframework.boot:spring-boot-starter-test')
}
当我执行我的项目时,@Retryable
将不会管理异常,如以下输出所示:
2017-01-11 11:04:43.361 INFO 3029 --- [ main] s.c.a.AnnotationConfigApplicationContext : Refreshing org.springframework.context.annotation.AnnotationConfigApplicationContext@aecb35a: startup date [Wed Jan 11 11:04:43 CET 2017]; root of context hierarchy
Attempt...
2017-01-11 11:04:44.028 WARN 3029 --- [ main] s.c.a.AnnotationConfigApplicationContext : Exception encountered during context initialization - cancelling refresh attempt: org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'support': Invocation of init method failed; nested exception is java.lang.IndexOutOfBoundsException
2017-01-11 11:04:44.033 INFO 3029 --- [ main] utoConfigurationReportLoggingInitializer :
Error starting ApplicationContext. To display the auto-configuration report re-run your application with 'debug' enabled.
2017-01-11 11:04:44.039 ERROR 3029 --- [ main] o.s.boot.SpringApplication : Application startup failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'support': Invocation of init method failed; nested exception is java.lang.IndexOutOfBoundsException
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:137) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsBeforeInitialization(AbstractAutowireCapableBeanFactory.java:409) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1581) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:554) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:483) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory$1.getObject(AbstractBeanFactory.java:306) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.DefaultSingletonBeanRegistry.getSingleton(DefaultSingletonBeanRegistry.java:230) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.doGetBean(AbstractBeanFactory.java:302) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:197) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:759) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.finishBeanFactoryInitialization(AbstractApplicationContext.java:866) ~[spring-context-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:542) ~[spring-context-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.boot.SpringApplication.refresh(SpringApplication.java:761) [spring-boot-1.4.3.RELEASE.jar:1.4.3.RELEASE]
at org.springframework.boot.SpringApplication.refreshContext(SpringApplication.java:371) [spring-boot-1.4.3.RELEASE.jar:1.4.3.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:315) [spring-boot-1.4.3.RELEASE.jar:1.4.3.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1186) [spring-boot-1.4.3.RELEASE.jar:1.4.3.RELEASE]
at org.springframework.boot.SpringApplication.run(SpringApplication.java:1175) [spring-boot-1.4.3.RELEASE.jar:1.4.3.RELEASE]
at com.retry.RetryApplication.main(RetryApplication.java:15) [main/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_45]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_45]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_45]
at java.lang.reflect.Method.invoke(Method.java:497) ~[na:1.8.0_45]
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:147) [idea_rt.jar:na]
Caused by: java.lang.IndexOutOfBoundsException: null
at com.support.Support.mySupport(Support.java:21) ~[main/:na]
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) ~[na:1.8.0_45]
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) ~[na:1.8.0_45]
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) ~[na:1.8.0_45]
at java.lang.reflect.Method.invoke(Method.java:497) ~[na:1.8.0_45]
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java:366) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleMetadata.invokeInitMethods(InitDestroyAnnotationBeanPostProcessor.java:311) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor.postProcessBeforeInitialization(InitDestroyAnnotationBeanPostProcessor.java:134) ~[spring-beans-4.3.5.RELEASE.jar:4.3.5.RELEASE]
... 22 common frames omitted
Process finished with exit code 1
有人可以帮忙吗?我不明白我做错了什么...谢谢!
[编辑]我添加了一个配置类并更改了一些代码,但结果是相同的。这是我的配置类:
@EnableRetry
@Configuration
public class MyConfiguration {
@Bean
public MyRetry myBean() throws Exception {
new MyRetry().myMethod();
return new MyRetry();
}
}
和 MyRetry 类:
public class MyRetry {
@Retryable
public void myMethod() throws Exception {
System.out.println("Attempt...");
throw new Exception();
}
@Recover
public void myRecover(){
System.out.println("Recovering...");
}
}
和主应用程序类:
@SpringBootApplication
@ComponentScan("com.retry")
public class RetryApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(RetryApplication.class, args);
}
}
最佳答案
我使用了不同的方法 - spring RetryTemplate
- 并找到了一个可行的解决方案。这是我的主要应用程序类:
@SpringBootApplication
public class RetryApplication {
public static void main(String[] args) throws Exception {
SpringApplication.run(RetryApplication.class, args);
}
}
包含重试方法的类:
public class MyRetry {
@Autowired
private RetryTemplate retryTemplate;
public void myMethod() throws Exception {
retryTemplate.execute(
new RetryCallback<Void, Exception>() {
@Override
public Void doWithRetry(RetryContext context) throws Exception {
System.out.println("Attempt...");
throw new Exception();
}
},
new RecoveryCallback<Void>() {
@Override
public Void recover(RetryContext context){
System.out.println("Recovering...");
return null;
}
}
);
}
}
配置类:
@EnableRetry
@Configuration
public class MyConfiguration {
@Bean
public MyRetry myBean() throws Exception {
return new MyRetry();
}
@Bean
public RetryTemplate retryTemplate() {
SimpleRetryPolicy retryPolicy = new SimpleRetryPolicy();
retryPolicy.setMaxAttempts(5);
FixedBackOffPolicy backOffPolicy = new FixedBackOffPolicy();
backOffPolicy.setBackOffPeriod(1500); // 1.5 seconds
RetryTemplate template = new RetryTemplate();
template.setRetryPolicy(retryPolicy);
template.setBackOffPolicy(backOffPolicy);
return template;
}
}
还有一个 utils 类:
@Component
public class MyUtility implements ApplicationContextAware {
@Override
public void setApplicationContext(ApplicationContext applicationContext) throws BeansException {
MyRetry myRetry = applicationContext.getBean(MyRetry.class);
try {
myRetry.withTemplate();
} catch (Exception e) {
e.printStackTrace();
}
}
}
此代码尝试调用 myMethod()
5 次,然后恢复。这确实很琐碎,但有时琐碎的事情却是最棘手的。一些来源:spring documentation on retry和 a useful tutorial .
关于java - Spring @Retryable 不工作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41587909/
我使用了spring @Retryable来实现在使用RestTemplate调用其他服务出现问题时重试函数调用。 该函数如下所示,问题是我已将 maxAttempts 设置为 4,以防发生任何异常,
我使用 compile 'org.springframework.retry:spring-retry:1.2.2.RELEASE' 和 Spring Boot 1.5.9.RELEASE。 配置为重
这个问题已经有答案了: Using @Retryable in methods define in spring bean's base class are not retried (1 个回答) 已
spring-retry模块支持方法和类、接口、枚举级别的重试 方式很简单,引入pom包 ?
在我的 SpringBoot 应用程序中,我有一个客户端,它可以发送一个 POST 请求。在 POST 期间,它可能有几个异常(exception)。 如果出现 2 个不同的异常,我想有一个重试逻辑。
我已经阅读了很多有关该主题的内容,但不知何故无法使我的代码正常工作。我有一个非常简单的项目,我正在尝试实现 spring-retry 流程。这是我的主要应用程序类: @EnableRetry @Spr
我已将 @Retryable 放在接口(interface)方法上,现在我需要包含多个异常才能重试。 代码: @Retryable(interceptor = "someRetryIntercept
是否可以根据特定条件重试?如果我用 Retryable 注释,它将根据一些异常重试,但如果捕获到该异常并且满足相应条件,我想重试。示例: @Retryable(value={MyException.c
我在 @Service 类中的方法上使用了 @Retryable 注释 @Service @EnableRetry public class PushService { @Retryable(
以下代码不会重试。我错过了什么? @EnableRetry @SpringBootApplication public class App implements CommandLineRunner {
我正在使用基于注释的方法 - @Retryable 在 Spring Boot 应用程序中进行重试。 @Retryable(value = {DataAccessException.class, Jp
当我运行单元测试时,我希望 thisFails() 方法重试 3 次,然后我希望看到打印恢复记录器行,但它只尝试一次,然后抛出异常。底部的输出是我运行测试后的输出。 我错过了什么? 请随意忽略此部分,
我刚刚使用@Retryable 注释设置了最简单的Spring 应用程序。 @Service public class MyRestService { @Autowired priva
我有这段代码 @Retryable(maxAttempts = 3, stateful = true, include = ServiceUnavailableException.class,
我正在尝试实现重试逻辑。我的代码按预期工作,直到重试方法的返回类型无效。当我将其更改为 String 时,@Recover 停止工作。 @Component public class Adapt
我正在尝试使用 Springs @Retryable 使我的服务方法在失败时重试。 @Retryable(backoff = @Backoff(delay = 1000), maxAttempts =
我在 SpringBatch 的库依赖项中使用带有 @Retryable 注释的 Spring Retry 1.2.4。 在 exceptionExpression 属性中,我指定了一个自定义异常的表
下面的@Retryable 代码适用于直接调用方法的地方,但是通过@Async 注释方法调用可重试方法然后抛出异常。 有什么建议 ? 这是我的服务类 @Service public class Ret
我使用 AnnotationConfigApplicationContext 创建了一个基于 spring 框架的应用程序。 一个 bean 有一个 init 方法,它创建到外部服务的连接。这可以用
这个问题在这里已经有了答案: Using @Retryable in methods define in spring bean's base class are not retried (1 个回
我是一名优秀的程序员,十分优秀!