- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
我想为 restTemplate
使用 @Retryable
注释。我添加了:
<dependency>
<groupId>org.springframework.retry</groupId>
<artifactId>spring-retry</artifactId>
<version>1.2.1.RELEASE</version>
</dependency>
以及 @EnableRetry
到配置类。我已经标记方法:
restTemplate.exchange(url, HttpMethod.POST, request, String.class);
与(在新线程中)
@Retryable(maxAttempts=4,value=Exception.class,backoff=@Backoff(delay = 2000))
但我从 catalina 收到错误消息:
27-Oct-2017 18:11:41.023 SEVERE [http-nio-8080-exec-1] org.apache.catalina.core.StandardContext.listenerStart Exception sending context initialized event to listener instance of class [org.springframework.web.context.ContextLoaderListener]
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'org.springframework.aop.config.internalAutoProxyCreator': Instantiation of bean failed; nested exception is org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/aspectj/lang/annotation/Around
at
<ommitted>
Caused by: org.springframework.beans.BeanInstantiationException: Failed to instantiate [org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator]: Constructor threw exception; nested exception is java.lang.NoClassDefFoundError: org/aspectj/lang/annotation/Around
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:154)
at org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:89)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:1103)
... 61 more
Caused by: java.lang.NoClassDefFoundError: org/aspectj/lang/annotation/Around
at org.springframework.aop.aspectj.annotation.ReflectiveAspectJAdvisorFactory.<clinit>(ReflectiveAspectJAdvisorFactory.java:76)
at org.springframework.aop.aspectj.annotation.AnnotationAwareAspectJAutoProxyCreator.<init>(AnnotationAwareAspectJAutoProxyCreator.java:53)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:62)
at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:45)
at java.lang.reflect.Constructor.newInstance(Constructor.java:423)
at org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:142)
... 63 more
Caused by: java.lang.ClassNotFoundException: org.aspectj.lang.annotation.Around
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1285)
at org.apache.catalina.loader.WebappClassLoaderBase.loadClass(WebappClassLoaderBase.java:1119)
... 70 more
27-Oct-2017 18:11:41.038 INFO [http-nio-8080-exec-1] org.apache.catalina.core.ApplicationContext.log Closing Spring root WebApplicationContext
我做错了什么?
已编辑:我向前移动了一点。发现Spring Retry makes use of AOP所以我补充说:
<dependency>
<groupid>org.springframework</groupid>
<artifactid>spring-aop</artifactid>
<version>4.2.5.RELEASE</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.8</version>
</dependency>
现在我得到了不同的错误:
27-Oct-2017 21:11:12.071 SEVERE [http-nio-8088-exec-5] org.springframework.web.servlet.DispatcherServlet.initServletBean Context initialization failed
org.springframework.beans.factory.BeanCreationException: Error creating bean with name 'homeController' defined in file [(...)\HomeController.class]: Initialization of bean failed; nested exception is java.lang.NoClassDefFoundError: Could not initialize class org.springframework.aop.framework.ObjenesisCglibAopProxy
<ommitted>
Caused by: java.lang.NoClassDefFoundError: Could not initialize class org.springframework.aop.framework.ObjenesisCglibAopProxy
at org.springframework.aop.framework.DefaultAopProxyFactory.createAopProxy(DefaultAopProxyFactory.java:60)
at org.springframework.aop.framework.ProxyCreatorSupport.createAopProxy(ProxyCreatorSupport.java:105)
at org.springframework.aop.framework.ProxyFactory.getProxy(ProxyFactory.java:109)
at org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator.createProxy(AbstractAutoProxyCreator.java:468)
at org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator.wrapIfNecessary(AbstractAutoProxyCreator.java:349)
at org.springframework.aop.framework.autoproxy.AbstractAutoProxyCreator.postProcessAfterInitialization(AbstractAutoProxyCreator.java:298)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.applyBeanPostProcessorsAfterInitialization(AbstractAutowireCapableBeanFactory.java:421)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.initializeBean(AbstractAutowireCapableBeanFactory.java:1558)
at org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.doCreateBean(AbstractAutowireCapableBeanFactory.java:539)
... 35 more
为了隔离问题,我创建了小型 springMVC
项目,它是一样的。为了保持一切简单,只使用了很少的依赖项。这是 mvn dependency:tree
的输出:
[INFO] com.example:store:war:0.0.1-SNAPSHOT
[INFO] +- org.springframework:spring-webmvc:jar:4.0.3.RELEASE:compile
[INFO] | +- org.springframework:spring-beans:jar:4.0.3.RELEASE:compile
[INFO] | +- org.springframework:spring-context:jar:4.0.3.RELEASE:compile
[INFO] | +- org.springframework:spring-core:jar:4.0.3.RELEASE:compile
[INFO] | | \- commons-logging:commons-logging:jar:1.1.3:compile
[INFO] | +- org.springframework:spring-expression:jar:4.0.3.RELEASE:compile
[INFO] | \- org.springframework:spring-web:jar:4.0.3.RELEASE:compile
[INFO] +- javax.servlet:jstl:jar:1.2:compile
[INFO] +- javax.servlet:javax.servlet-api:jar:3.1.0:provided
[INFO] +- org.springframework.retry:spring-retry:jar:1.2.1.RELEASE:compile
[INFO] +- com.mashape.unirest:unirest-java:jar:1.4.9:compile
[INFO] | +- org.apache.httpcomponents:httpasyncclient:jar:4.1.1:compile
[INFO] | | +- org.apache.httpcomponents:httpcore:jar:4.4.4:compile
[INFO] | | \- org.apache.httpcomponents:httpcore-nio:jar:4.4.4:compile
[INFO] | +- org.apache.httpcomponents:httpmime:jar:4.5.2:compile
[INFO] | \- org.json:json:jar:20160212:compile
[INFO] +- org.springframework:spring-aop:jar:4.2.5.RELEASE:compile
[INFO] | \- aopalliance:aopalliance:jar:1.0:compile
[INFO] \- org.aspectj:aspectjweaver:jar:1.8.8:compile
最佳答案
它在添加 spring-boot-starter-aop 依赖项 后对我有用,如下所示:
compile ("org.springframework.boot:spring-boot-starter-aop:1.5.10.RELEASE")
关于java - Spring Retryable注解ClassNotFoundException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46979585/
我使用了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 个回
我是一名优秀的程序员,十分优秀!