欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

spring cloud 的feign熔断不起作用的看过来,一小坑

程序员文章站 2022-03-15 13:50:24
...

先核对版本号哈

org.springframework.boot
spring-boot-starter-parent
1.5.13.RELEASE


。。。



org.springframework.cloud
spring-cloud-dependencies
Edgware.SR4
pom
import



feign接口照抄官网写好了,但就是不起作用
@FeignClient(name = “hello”, fallback = HystrixClientFallback.class)
public interface FirstCeshiFeign {

@RequestMapping(method = RequestMethod.GET, value = "/hello")
String iFailSometimes();

}

@Component
class HystrixClientFallback implements FirstCeshiFeign {
@Override
public String iFailSometimes() {
return new String(“fallback123123123”);
}
}

百度上都说加个配置就好了
feign:
hystrix:
enable: true
可惜还是不行,不过这个坑爹的配置还要继续留着。

最后发现小坑在入口注解上,我。。。

@SpringCloudApplication
@EnableFeignClients(defaultConfiguration = FeignClientsConfiguration.class)
public class UserApplication {
public static void main(String[] args) {
SpringApplication.run(UserApplication.class, args);
}
}

相关标签: 微服务