在微服務(wù)架構(gòu)中,根據(jù)業(yè)務(wù)需求拆分成一個個的微小服務(wù),然后服務(wù)與服務(wù)之間可以相互RPC遠(yuǎn)程調(diào)用。在Spring Cloud可以使用RestTemplate+Ribbon或者Feign來進(jìn)行RPC遠(yuǎn)程調(diào)用。為了保證服務(wù)高可用性,單個服務(wù)通常會進(jìn)行集群部署。由于網(wǎng)絡(luò)原因或者自身的原因,服務(wù)并不能保證百分之一百可用,如果服務(wù)方出現(xiàn)問題,調(diào)用這個服務(wù)就會出現(xiàn)線程阻塞,此時若有出現(xiàn)大量請求,導(dǎo)致服務(wù)方癱瘓。這時斷路器就派上用場了。
當(dāng)對某個服務(wù)的調(diào)用的不可用達(dá)到一個閥值(Hystric 默認(rèn)是5秒20次) 斷路器將會被自動被打開。斷路打開后, fallback方法可以直接返回一個預(yù)先設(shè)置的固定值。
1、 新建項(xiàng)目sc-eureka-client-consumer-ribbon-hystrix,對應(yīng)的pom.xml文件
4.0.0
spring-cloud
sc-eureka-client-consumer-ribbon
0.0.1-SNAPSHOT
jar
sc-eureka-client-consumer-ribbon
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.cloud
spring-cloud-starter-netflix-ribbon
org.springframework.boot
spring-boot-starter-web
org.springframework.cloud
spring-cloud-starter-netflix-hystrix
2.0.1.RELEASE
備注:spring-cloud-starter-hystrix已經(jīng)在spring cloud 2.x標(biāo)注成過期。推薦使用spring-cloud-starter-netflix-hystrix
2、 新建spring boot 啟動類ConsumerApplication.java
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.netflix.hystrix.EnableHystrix;
@SpringBootApplication
@EnableEurekaClient
@EnableHystrix
public class ConsumerHystrixApplication {
public static void main(String[] args) {
SpringApplication.run(ConsumerHystrixApplication.class, args);
}
}
可以看出這個啟動類只是《服務(wù)發(fā)現(xiàn)&服務(wù)消費(fèi)者Ribbon》的啟動類添加多了一個注解EnableHystrix(啟動斷路器)
3、 編寫服務(wù)類,并添加斷路器注解
package sc.consumer.service.impl;
import java.util.HashMap;
import java.util.Map;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Service;
import org.springframework.web.client.RestTemplate;
import com.github.andrewoma.dexx.collection.ArrayList;
import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;
import sc.consumer.model.User;
import sc.consumer.service.UserService;
@Service
public class UserServiceImpl implements UserService{
@Autowired
private RestTemplate restTemplate;
@HystrixCommand(fallbackMethod = "getUserError")
@Override
public Map getUser(Long id) {
return restTemplate.getForObject("http://sc-eureka-client-provider:8200/user/getUser/{1}", Map.class, id);
}
public Map getUserError(Long id){
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
User u = new User();
u.setId(-1L);
u.setUserName("failName");
map.put("body", u);
return map;
}
@HystrixCommand(fallbackMethod = "listUserError")
@Override
public Map listUser() {
return restTemplate.getForObject("http://sc-eureka-client-provider:8200/user/listUser", Map.class);
}
public Map listUserError(){
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
map.put("body", new ArrayList());
return map;
}
@HystrixCommand(fallbackMethod = "addUserError")
@Override
public Map addUser(User user) {
return restTemplate.postForObject("http://sc-eureka-client-provider:8200/user/addUser", user, Map.class);
}
public Map addUserError(User user){
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
map.put("body", 0);
return map;
}
@HystrixCommand(fallbackMethod = "updateUserError")
@Override
public Map updateUser(User user) {
restTemplate.put("http://sc-eureka-client-provider:8200/user/updateUser",user);
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
return map;
}
public Map updateUserError(User user){
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
map.put("body", 0);
return map;
}
@HystrixCommand(fallbackMethod = "deleteUserError")
@Override
public Map deleteUser(Long id) {
restTemplate.delete("http://sc-eureka-client-provider:8200/user/deleteUser/{id}", id);
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
return map;
}
public Map deleteUserError(Long id){
Map map = new HashMap();
map.put("code", "000000");
map.put("msg", "ok");
map.put("body", 0);
return map;
}
}
添加HystrixCommand注解,對應(yīng)的參數(shù)fallbackMethod值為當(dāng)方式服務(wù)方無法調(diào)用時,返回預(yù)設(shè)值得方法名。
4、 新建配置文件bootstrap.yml和application.yml
bootstrap.yml
server:
port: 5600
application.yml
spring:
application:
name: sc-eureka-client-consumer-ribbon-hystrix
eureka:
instance:
hostname: 127.0.0.1
client:
#由于該應(yīng)用為注冊中心,所以設(shè)置為false,代表不向注冊中心注冊自己
registerWithEureka: true
#由于注冊中心的職責(zé)就是維護(hù)服務(wù)實(shí)例,它并不需要去檢索服務(wù),所以也設(shè)置為false
fetchRegistry: true
serviceUrl:
defaultZone: http://127.0.0.1:5001/eureka/
5、 其他項(xiàng)目文件參加下圖
6、 分別啟動注冊中心sc-eureka-server和服務(wù)提供者sc-eureka-client-provider
7、 啟動sc-eureka-client-consumer-ribbon-hystrix,并驗(yàn)證是否啟動成功
方式一:查看日志
方式二:查看注冊中心是否注冊成功
8、 驗(yàn)證斷路器是否起作用
(1) 服務(wù)提供者正常時訪問:
http://127.0.0.1:5600/cli/user/getUser/4
正常返回數(shù)據(jù)庫里的數(shù)據(jù)
(2) 服務(wù)提供者關(guān)閉時訪問:
http://127.0.0.1:5600/cli/user/getUser/4
對比兩個返回的數(shù)據(jù),可以看出服務(wù)提供者關(guān)閉時,返回的數(shù)據(jù)是在程序?qū)懰赖臄?shù)據(jù),如下圖:
其他方法可以自行按照以上方式進(jìn)行驗(yàn)證。
公眾號:java樂園
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機(jī)、免備案服務(wù)器”等云主機(jī)租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點(diǎn)與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。