2021
01-08
01-08
spring cloud hystrix 超时时间使用方式详解
我们在使用后台微服务的时候,各个服务之前会有很多请求和交叉业务。这里会引起雪崩、超时等异常处理。SpringCloudHystrix服务降级、容错机治理使hystrix有很好的支持,引入后实现断路器功能。1:pom 引入jar包<dependency><groupId>org.springframework.cloud</groupId><artifactId>spring-cloud-starter-netflix-hystrix</artifactId></dependency>2:添加注解Application中增加@EnableCircuitBr...
继续阅读 >