我试图使用重试第一次.它应该只尝试联系3更多的时间与状态代码500.不幸的是,这不工作.错误在哪里?
学历:
implementation group: 'org.springframework.boot', name: 'spring-boot-starter', version: '3.1.6'
implementation group: 'org.springframework.cloud', name: 'spring-cloud-starter-circuitbreaker-resilience4j', version: '3.0.3'
implementation group: 'org.springframework.boot', name: 'spring-boot-starter-aop', version: '3.1.6'
字符串
定义:
@Component
public class MyService{
@Retry(name ="throwingFeignException")
public String sendUser(Request request) {
Response response = feignClient.send(eaziRequest);
return response.getId();
}
}
型
以及应用中的定义。yaml:
resilience4j:
retry:
instances:
throwingFeignException:
maxAttempts: 3
waitDuration: 60s
retryExceptions:
- feign.FeignException
ignoreExceptions:
- java.lang.Exception
enableExponentialBackoff: true
exponentialBackoffMultiplier: 5
resultPredicate: de.ruv.stammdaten.domain.eazi.backend.exception.ServerInternalErrorVerifier
型
我的 predicate 是这样的:
@Slf4j
public class ServerInternalErrorVerifier implements Predicate<FeignException> {
@Override
public boolean test(FeignException exception) {
if(isServerError(exception)){
log.error("Server '{}' could not be achieved due of '{}'", exception.request().url(), exception.getMessage());
return true;
}
return false;
}
private static boolean isServerError(FeignException exception) {
return exception.status() >= HttpStatus.INTERNAL_SERVER_ERROR.value();
}
}
型
sendUser方法不会再次执行,我的 predicate 也不工作,这里有什么问题?
1条答案
按热度按时间hgqdbh6s1#
这是我的错误,我预期的React重试早,所以我想,这是行不通的