Spring Retry:未调用带有@Recover注释的方法

Tad*_*naw 4 java aop spring-retry spring-boot

我正在测试春季重试,但似乎没有被称为恢复。试图使其工作,但似乎无遗。我没有给@Recover传递任何参数Throwable Exception。更改了重试依赖项版本,似乎它已包含在aop中以用于春季启动并已将其删除。不会通过以下异常消息来调用保持恢复状态。

请求处理失败;嵌套的异常是org.springframework.retry.ExhaustedRetryException:无法找到恢复方法。嵌套异常是java.lang.ArithmeticException:/按零],其根本原因是

任何帮助将非常感激

我的代码如下所示。

配置类

package hello;

import java.util.Arrays;

import org.springframework.boot.CommandLineRunner;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.context.ApplicationContext;
import org.springframework.context.annotation.Bean;
import org.springframework.retry.annotation.EnableRetry;
import org.springframework.retry.annotation.Retryable;

@SpringBootApplication
@EnableRetry
public class Application {
public static void main(String[] args) {
    SpringApplication.run(Application.class, args);
}

@Bean
public CommandLineRunner commandLineRunner(ApplicationContext ctx) {
    return args -> {

        System.out.println("Let's inspect the beans provided by `Spring Boot:");`

        String[] beanNames = ctx.getBeanDefinitionNames();
        Arrays.sort(beanNames);
        for (String beanName : beanNames) {
            System.out.println(beanName);
        }

    };
}

}
Run Code Online (Sandbox Code Playgroud)

休息控制器类;

package hello;

import org.springframework.web.bind.annotation.RestController;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.retry.annotation.Backoff;
import org.springframework.web.bind.annotation.RequestMapping;

@RestController
public class HelloController {

@Autowired
private SomeService service;

@RequestMapping("/")
public String hello() {
    String result = service.getInfo();
    return result;
}

}
Run Code Online (Sandbox Code Playgroud)

服务等级为;

ackage hello;

import org.springframework.retry.annotation.Backoff;
import org.springframework.retry.annotation.Recover;
import org.springframework.retry.annotation.Retryable;
import org.springframework.stereotype.Service;

@Service
public class SomeService {

@Retryable(value = ArithmeticException.class, maxAttempts = 3, `backoff = @Backoff(delay = 3000))`
public String getInfo() {
    System.out.println("How many time will this be printed?");
    return "Hello" + 4/0;
}

@Recover
public void helpHere(ArithmeticException cause) {
        System.out.println(cause);
        System.out.println("Recovery place!");
}
Run Code Online (Sandbox Code Playgroud)

这是我的依赖清单

 <dependencies>
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-web</artifactId>
    </dependency>
    <!-- tag::actuator[] -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-actuator</artifactId>
    </dependency>
    <!-- end::actuator[] -->
    <!-- tag::tests[] -->
    <dependency>
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-test</artifactId>
        <scope>test</scope>
    </dependency>
    <!-- end::tests[] -->
    <dependency>
        <groupId>org.springframework.retry</groupId>
        <artifactId>spring-retry</artifactId>
        </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-aop</artifactId>
    </dependency>
</dependencies>
Run Code Online (Sandbox Code Playgroud)

具有try-catch和各种参数

 @Service
public class SomeService {

    @Retryable(value = {ArithmeticException.class}, maxAttempts = 3, `backoff = @Backoff(delay = 3000))`
public String getInfo() {
        try {
        System.out.println("How many time will this be printed?");
        return "Hello" + 4/0;
    } catch(ArithmeticException ex) {
            System.out.println("In the arthemetic Exception");
            throw new ArithmeticException();
    }   
}

@Recover
public void helpHere(ArithmeticException cause) {
        System.out.println(cause);
        System.out.println("Recovery place! ArithmeticException");
}
@Recover
public void helpHere(Exception cause ) {
        System.out.println(cause);
        System.out.println("Recovery place! Exception");
}

@Recover
public void helpHere(Throwable cause) {
        System.out.println(cause);
        System.out.println("Recovery place! Exception");
}

@Recover
public void helpHere() {
        System.out.println("Recovery place! Exception");
}
}
Run Code Online (Sandbox Code Playgroud)

控制台的屏幕截图

在此处输入图片说明

Tad*_*naw 9

我终于得到了答案。

对于要使用@Recover注释的方法,必须具有相同的方法参数(加上异常)和相同的返回类型。

我用不同类型的异常参数进行了测试,如果它们具有更特定的异常类型,则将调用这些方法。如果我有这样的方法,那么将比带有Exception参数的方法调用。但是,如果我有多种恢复方法,则只会调用具有更具体异常参数的方法。

@Recover
public String helpHere(ArithmeticException cause) {
Run Code Online (Sandbox Code Playgroud)

最终代码示例

package hello;

import org.springframework.retry.annotation.Backoff;
import org.springframework.retry.annotation.Recover;
import org.springframework.retry.annotation.Retryable;
import org.springframework.stereotype.Service;

@Service
public class SomeService {

@Retryable(maxAttempts = 3, backoff = @Backoff(delay = 3000))
public String getInfo() {
        try {
        System.out.println("How many time will this be printed?");
        return "Hello" + 4/0;
    } catch(Exception ex) {
            System.out.println("In the arthemetic Exception");
            throw new ArithmeticException();
    }   
}

@Recover
public String helpHere(ArithmeticException cause) {

        System.out.println("Recovery place! ArithmeticException");
        return "Hello";
}
@Recover
public String helpHere(Exception cause ) {

        System.out.println("Recovery place! Exception");
        return "Hello";
}

@Recover
public String helpHere() {
        System.out.println("Recovery place! Exception");
        return "Hello";
}

@Recover
public String helpHere(Throwable cause) {

        System.out.println("Recovery place! Throwable");
        return "Hello";
}
Run Code Online (Sandbox Code Playgroud)

在此处输入图片说明


Joh*_*Joe 5

你应该try-catch用来处理它。这里的例子

@Retryable(value = ArithmeticException.class, maxAttempts = 5, backoff = @Backoff(delay = 3000))
    public String getInfo() {
        try {
            System.out.println("How many time will this be printed?");
            return "Hello" + 4 / 0;
        } catch (ArithmeticException ex) {
            // will be retried
            throw ex;
        }
    }
Run Code Online (Sandbox Code Playgroud)

throw ex;是必须的,因为它告诉 Spring 应用重试处理。随着@Recover我们定义为一个单独的恢复方法ArithmeticException。这允许我们在可重试方法失败时运行特殊的恢复代码ArithmeticException

您可以参考更多关于如何使用 Spring-Retry 处理重试?

编辑

基于最新的异常,尝试提供 spring-retry 版本

 <dependency>
       <groupId>org.springframework.retry</groupId>
       <artifactId>spring-retry</artifactId>
       <version>1.2.1.RELEASE</version>
 </dependency>
Run Code Online (Sandbox Code Playgroud)

  • 那么为什么这个答案被标记为正确的?@TadeleAzanaw (3认同)