公眾號: java樂園
成都創(chuàng)新互聯公司專注于企業(yè)全網營銷推廣、網站重做改版、富順網站定制設計、自適應品牌網站建設、HTML5、成都商城網站開發(fā)、集團公司官網建設、成都外貿網站制作、高端網站制作、響應式網頁設計等建站業(yè)務,價格優(yōu)惠性價比高,為富順等各大城市提供網站開發(fā)制作服務。
上編說了《RestTemplate+Ribbon整合斷路器Hystrix》,這篇來看看如何Feign整合斷路器Hystrix,Feign整合斷路器Hystrix也是相對比較簡單的。Feign默認已經自帶斷路器Hystrix,所以不需要像RestTemplate+Ribbon整合斷路器Hystrix那樣需要在SpringBoot的啟動類添加注解。但是Feign自帶斷路器并沒有打開,需要做些額外的配置。
feign:
hystrix:
enabled: true
1、 新建項目sc-eureka-client-consumer-feign-hystrix,對應的pom.xml文件如下
4.0.0
spring-cloud
sc-eureka-client-consumer-feign
0.0.1-SNAPSHOT
jar
sc-eureka-client-consumer-feign
http://maven.apache.org
org.springframework.boot
spring-boot-starter-parent
2.0.4.RELEASE
org.springframework.cloud
spring-cloud-dependencies
Finchley.RELEASE
pom
import
UTF-8
1.8
1.8
org.springframework.cloud
spring-cloud-starter-netflix-eureka-client
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-openfeign
備注:從繼續(xù)關系可以看出spring-cloud-starter-openfeign已經集成斷路器Hystrix
2、 新建springboot啟動類
package sc.consumer;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
import org.springframework.cloud.openfeign.EnableFeignClients;
@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients
public class ConsumerFeignApplication {
public static void main(String[] args) {
SpringApplication.run(ConsumerFeignApplication.class, args);
}
}
3、 新建配置文件bootstrap.yml和application.yml
bootstrap.yml
server:
port: 5800
application.yml
spring:
application:
name: sc-eureka-client-consumer-feign-hystrix
eureka:
client:
registerWithEureka: true #是否將自己注冊到Eureka服務中,默認為true
fetchRegistry: true #是否從Eureka中獲取注冊信息,默認為true
serviceUrl:
defaultZone: http://localhost:5001/eureka/
feign:
hystrix:
enabled: true
說明:在application.yml配置文件添加了開啟斷路器Hystrix的配置項
4、 新建服務消費者類UserService.java
package sc.consumer.service;
import java.util.Map;
import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.DeleteMapping;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PostMapping;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestMapping;
import sc.consumer.model.User;
import sc.consumer.service.hystrix.UserServiceHystrix;
@FeignClient(value="sc-eureka-client-provider", fallback=UserServiceHystrix.class)
public interface UserService {
@GetMapping("/user/getUser/{id}")
Map getUser(@PathVariable(value ="id") Long id);
@RequestMapping("/user/listUser")
Map listUser();
@PostMapping("/user/addUser")
Map addUser(@RequestBody User user);
@PutMapping("/user/updateUser")
Map updateUser(@RequestBody User user);
@DeleteMapping("/user/deleteUser/{id}")
Map deleteUser(@PathVariable(value ="id") Long id);
}
可以看到在該類的FeignClient注解上添加了一個屬性fallback
5、 新建斷路器處理類UserServiceHystrix.java
package sc.consumer.service.hystrix;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.springframework.stereotype.Component;
import sc.consumer.model.User;
import sc.consumer.service.UserService;
@Component
public class UserServiceHystrix implements UserService{
@Override
public Map getUser(Long id) {
Map result = new HashMap();
result.put("code", "000000");
result.put("msg", "success");
User u = new User();
u.setId(-1L);
u.setUserName("failBackName");
result.put("body", u);
return result;
}
@Override
public Map listUser() {
Map result = new HashMap();
result.put("code", "000000");
result.put("msg", "success");
List list = new ArrayList();
User u = new User();
u.setId(-1L);
u.setUserName("failBackName");
list.add(u);
result.put("body", list);
return result;
}
@Override
public Map addUser(User user) {
Map result = new HashMap();
result.put("code", "000000");
result.put("msg", "success");
result.put("body", 0);
return result;
}
@Override
public Map updateUser(User user) {
Map result = new HashMap();
result.put("code", "000000");
result.put("msg", "success");
result.put("body", 0);
return result;
}
@Override
public Map deleteUser(Long id) {
Map result = new HashMap();
result.put("code", "000000");
result.put("msg", "success");
result.put("body", 0);
return result;
}
}
該類實現了UserService接口,并實現了該接口的所有方法。
6、 分別啟動注冊中心sc-eureka-server和服務提供者sc-eureka-client-provider
7、 啟動sc-eureka-client-consumer-feign-hystrix,并驗證是否啟動成功
方式一:查看日志看看對應的端口是啟動
方式二:查看注冊中心是否注冊成功
8、 使用postman驗證斷路器是否啟用
上篇從服務提供者是否正常啟動驗證斷路器是否啟動,今天看看從數據庫是否啟動來驗證斷路器是否啟動
(1)MySQL服務正常啟動時訪問:
http://127.0.0.1:5800/feign/user/listUser
(2)MySQL服務關閉時訪問
http://127.0.0.1:5800/feign/user/listUser
再看下后臺日志:
其他接口可以自行按照以上方式進行驗證,看看斷路器是否啟動
源碼 https://gitee.com/hjj520/spring-cloud-2.x