我使用 Spring Boot2 启动器 ( https://resilience4j.readme.io/docs/getting-started-3 )在我的项目中实现了弹性 4j 。
我用 @CircuitBreaker 注释了一个方法,该方法使用 http 客户端调用外部服务,并且断路器工作正常 - 包括它的后备。
我想为它添加单元测试,但是当我运行一个试图模拟回退的测试时,什么也没有发生——异常被抛出,但没有被断路器机制处理。
我找到了一些使用其指标的示例,但在我的情况下它没有用。
有什么想法吗?
这是我的客户的片段:
@CircuitBreaker(name = "MY_CICUIT_BREAKER", fallbackMethod = "fallback")
public ResponseEntity<String> search(String value) {
ResponseEntity<String> responseEntity = restTemplate.exchange(
searchURL,
HttpMethod.GET,
new HttpEntity(new HttpHeaders()),
String.class,
value);
}
public ResponseEntity<String> fallback(String value, ResourceAccessException ex) {
return "fallback executed";
}