Spring Boot Resilience4j使用resultPredicate不工作

aydmsdu9  于 2024-01-06  发布在  Spring
关注(0)|答案(1)|浏览(163)

我试图使用重试第一次.它应该只尝试联系3更多的时间与状态代码500.不幸的是,这不工作.错误在哪里?
学历:

  1. implementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: '3.1.6'
  2. implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-circuitbreaker-resilience4j', version: '3.0.3'
  3. implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '3.1.6'

字符串
定义:

  1. @Component
  2. public class MyService{
  3. @Retry(name ="throwingFeignException")
  4. public String sendUser(Request request) {
  5. Response response = feignClient.send(eaziRequest);
  6. return response.getId();
  7. }
  8. }


以及应用中的定义。yaml:

  1. resilience4j:
  2. retry:
  3. instances:
  4. throwingFeignException:
  5. maxAttempts: 3
  6. waitDuration: 60s
  7. retryExceptions:
  8. - feign.FeignException
  9. ignoreExceptions:
  10. - java.lang.Exception
  11. enableExponentialBackoff: true
  12. exponentialBackoffMultiplier: 5
  13. resultPredicate: de.ruv.stammdaten.domain.eazi.backend.exception.ServerInternalErrorVerifier


我的 predicate 是这样的:

  1. @Slf4j
  2. public class ServerInternalErrorVerifier implements Predicate<FeignException> {
  3. @Override
  4. public boolean test(FeignException exception) {
  5. if(isServerError(exception)){
  6. log.error("Server '{}' could not be achieved due of '{}'", exception.request().url(), exception.getMessage());
  7. return true;
  8. }
  9. return false;
  10. }
  11. private static boolean isServerError(FeignException exception) {
  12. return exception.status() >= HttpStatus.INTERNAL_SERVER_ERROR.value();
  13. }
  14. }


sendUser方法不会再次执行,我的 predicate 也不工作,这里有什么问题?

hgqdbh6s

hgqdbh6s1#

这是我的错误,我预期的React重试早,所以我想,这是行不通的

相关问题