java B2B2C springmvc mybatis電子商務平臺原始碼-Hystrix 基本配置

小兵2147775633發表於2019-02-15

1、 【microcloud-provider-dept-hystrix-8001】修改 pom.xml 配置檔案,追加 Hystrix 配置類:需要JAVA Spring Cloud大型企業分散式微服務雲構建的B2B2C電子商務平臺原始碼一零三八七七四六二六

       <dependency>
           <groupId>org.springframework.cloud</groupId>
           <artifactId>spring-cloud-starter-hystrix</artifactId>
       </dependency>
複製程式碼

2、 【microcloud-provider-dept-hystrix-8001】修改 DeptRest 程式

package cn.study.microcloud.rest;

import javax.annotation.Resource;

import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

import com.netflix.hystrix.contrib.javanica.annotation.HystrixCommand;

import cn.study.microcloud.service.IDeptService;
import cn.study.vo.Dept;

@RestController
public class DeptRest {
    @Resource
    private IDeptService deptService;
    @RequestMapping(value = "/dept/get/{id}", method = RequestMethod.GET)
    @HystrixCommand(fallbackMethod="getFallback")    // 如果當前呼叫的get()方法出現了錯誤,則執行fallback
    public Object get(@PathVariable("id") long id) {
        Dept vo = this.deptService.get(id) ;    // 接收資料庫的查詢結果
        if (vo == null) {    // 資料不存在,假設讓它丟擲個錯誤
            throw new RuntimeException("部門資訊不存在!") ;
        }
        return vo ;
    }
    public Object getFallback(@PathVariable("id") long id) {    // 此時方法的引數 與get()一致
        Dept vo = new Dept() ;
        vo.setDeptno(999999L);
        vo.setDname("【ERROR】Microcloud-Dept-Hystrix");    // 錯誤的提示
        vo.setLoc("DEPT-Provider");
        return vo ;
    }
    
    
}
複製程式碼

一旦 get()方法上丟擲了錯誤的資訊,那麼就認為該服務有問題,會預設使用“@HystrixCommand”註解之中配置好的 fallbackMethod 呼叫類中的指定方法,返回相應資料。

3、 【microcloud-provider-dept-hystrix-8001】在主類之中啟動熔斷處理

package cn.study.microcloud;

import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;
import org.springframework.cloud.client.circuitbreaker.EnableCircuitBreaker;
import org.springframework.cloud.client.discovery.EnableDiscoveryClient;
import org.springframework.cloud.netflix.eureka.EnableEurekaClient;
@SpringBootApplication
@EnableEurekaClient
@EnableCircuitBreaker
@EnableDiscoveryClient
public class Dept_8001_StartSpringCloudApplication {
    public static void main(String[] args) {
        SpringApplication.run(Dept_8001_StartSpringCloudApplication.class, args);
    }
}
複製程式碼

現在的處理情況是:伺服器出現了錯誤(但並不表示提供方關閉),那麼此時會呼叫指定方法的 fallback 處理。java B2B2C springmvc mybatis電子商務平臺原始碼

相關文章