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

微服务框架入门(二)

程序员文章站 2022-03-14 09:48:17
...

搭建简单Cloud架构(Two)

上节我们介绍了Eureka的搭建及服务之间的注册、Ribbon的使用及规则的定义,这节我们了解一下Feign的使用和Hystrix

一、Feign的简单使用

首先引入Feign的坐标

<dependency>
   <groupId>org.springframework.cloud</groupId>
   <artifactId>spring-cloud-starter-openfeign</artifactId>
   <version>2.0.1.RELEASE</version>
</dependency>

启动类增加@EnableFeignClients注解(调用者)
 

@SpringBootApplication
@EnableEurekaClient
@EnableFeignClients(value = "com.yst.ysttestfeign.feign")
public class YstTestFeignApplication {
	public static void main(String[] args) {
		SpringApplication.run(YstTestFeignApplication.class, args);
	}
}

创建interface (调用者)

这里是需要调用的微服务名及接口

package com.yst.ysttestfeign.feign;


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

@FeignClient("yst-ribbon-one") // 这里是要调用的application.name
public interface FeignClient {
    // 这里是yst-ribbon-one里的接口
    @RequestMapping(value = "/ribbon/demo",method = RequestMethod.GET)
    public String getName();
}

附上yst-ribbon-one里的Controller(被调用者)

package com.yst.ystribbonone.rest;

import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @program: yst-parent
 * @description: mmh
 * @author: Mr.Miao
 * @create: 2018-08-28 17:21
 **/
@RestController
@RequestMapping("/ribbon")
public class OneController {
    @GetMapping("/demo")
    public String getName(){
        System.out.println("XXX");
        return "XXX";
    }
}

OK我们可以调用interface实现远程调用啦。

那么如何覆写Feign的默认配置呢?

方案一:

同Ribbon一样,我们可以写一个Config类,通过@FeignClient注解引入的方式进行覆写

首先创建config类,注意跟Ribbon一样,放到启动类扫描不到的地方,因为被启动类的ComponentScan扫描到,则会应用于整个Feign。

package com.yst.config;

import feign.Contract;
import feign.auth.BasicAuthRequestInterceptor;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

/**
 * @program: yst-parent
 * @description: mmh
 * @author: Mr.Miao
 * @create: 2018-08-31 15:06
 **/
@Configuration
public class FooConfiguration {
    @Bean
    public Contract feignContract() {
        return new feign.Contract.Default();
    }

//    @Bean
//    public BasicAuthRequestInterceptor basicAuthRequestInterceptor() {
//        return new BasicAuthRequestInterceptor("user", "password");
//    }
}

interface要注意了使用@RequestLine注解

package com.yst.ysttestfeign.feign;

import com.yst.config.FooConfiguration;
import feign.RequestLine;
// 这里解释一下fallback 它是调用失败的处理类
@FeignClient(name = "yst-ribbon-one",configuration = FooConfiguration.class , fallback = ExampleRemoteHystrix.class)
public interface FeignClient {
//    @RequestMapping(value = "/ribbon/demo",method = RequestMethod.GET)
    @RequestLine("GET /ribbon/demo")
    public String getName();
}

附 ExampleRemoteHystrix的代码:

import org.springframework.stereotype.Component;
import org.springframework.web.bind.annotation.RequestParam;
 
@Component
public class ExampleRemoteHystrix implements FeignClient {
    @Override
    public String echo(String str) {
        return " 调用失败,请重试";
    }
}

注意默认Feign和Hystrix是在一起用的,如果想禁用可以在config类加上

@Configuration
public class FooConfiguration {
    @Bean
	@Scope("prototype")
	public Feign.Builder feignBuilder() {
		return Feign.builder();
	}
}

表示只是用FeignBuild。 

还有一种禁用方式

feign.hystrix.enabled=false 

这里是全局的,所有的feign都禁用hystrix

Feign的日志:

很简单,再config类里加上下面一段bean

    // 开启Feign日志
    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.FULL;
    }

还没完打开application.yml 添加

logging:
  level:
    com.yst.ysttestfeign.feign.FeignClient: DEBUG # 这个路径是interface的地址

启动即可

微服务框架入门(二)

如果遇到第一次访问超时的问题:

方案一:可以通过设置Hystrix  在application.yml里配置

hystrix: 
  command: 
    default: 
      execution: 
        isolation: 
          threa: 
            timeoutInMilliseconds: 5000 # 默认为1秒

方案二:直接禁用Feign的Hystrix

hystrix: 
  command: 
    default: 
      execution: 
        timeout: 
          enable: false # 禁用timeout
feign: 
  hystrix: 
    enable: false  # 禁用Feign的Hystrix

两种 方式 任选 没有遇到超时的话请忽略。

二、Hystrix熔断:

Hystrix 和 Feign是结合使用的,出现雪崩效应如何解决

进入今天的Demo:

使用hystrix,首先引入坐标依赖:

<dependency>
	<groupId>org.springframework.cloud</groupId>
	<artifactId>spring-cloud-starter-hystrix</artifactId>
	<version>1.2.4.RELEASE</version>
</dependency>

然后启动类加上注解:

@EnableCircuitBreaker

然后是接口代码:

@RestController
@RequestMapping("/hystrix")
public class HystrixController {
    @Autowired
    private RestTemplate restTemplate;
    @RequestMapping("/test")
    @HystrixCommand(fallbackMethod = "getNameFallBack")
    public String getName (){
        return restTemplate.getForObject("http://YST-RIBBON-ONE/ribbon/demo",String.class);
    }
    public String getNameFallBack() {
        return "回调";
    }
}

方法上增加了@HystrixCommand注解表示开启断路器,fallbackMethod 的值为回调的方法名。如果调不通,则会调用该方法直接返回

@HystrixCommand的 commandProperties属性:

@HystrixCommand(fallbackMethod="getNameFallBack",aaa@qq.com(name="execution.isolation.strategy", value="SEMAPHORE"))

这里直接大白话说,加与不加的区别就是加上commandProperties 则注解@HystrixCommand与下边的方法共用一个线程,不加则各自有各自的线程。

后续会进行补充。

 

相关标签: SpringCloud