Springcloud的服务调用-OpenFeign与服务降级-Hystrix


前言

  服务调用,指的是注册到服务端上的客户端之间数据的相互调用问题。
  spring-cloud调用服务有两种方式,一种是Ribbon+RestTemplate, 另外一种是Feign。
  服务降级,指的是当服务器压力剧增时,根据当前业务情况及流量对一些服务和页面有策略的降级,以此释放服务器资源以保证核心任务的正常运行。

提示:以下是本篇文章正文内容,下面案例可供参考

一、OpenFeign

1.创建feign模块

  feign自带负载均衡配置,所以不用手动配置
(1)引入依赖
代码如下(示例):

<!-- Open Feign -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-openfeign</artifactId>
    </dependency>

(2)编写配置文件

server:
  port: 80 #端口号
spring:
  application:
    name: cloud-consumer-feign-service #名称
eureka:
  client:
    register-with-eureka: true
    fetch-registry: true
    service-url:
      defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/
      #在服务中心注册

(3)编写启动类
在启动类中加入@EnableFeignClients 注解用于开启使用feign客户端的功能

@SpringBootApplication
@EnableFeignClients //开启使用feign客户端的功能
public class CustomerFeignMain80 {
    public static void main(String[] args) {
        SpringApplication.run(CustomerFeignMain80.class,args);
    }
}

(4)编写grign客户端

@FeignClient(value = "cloud-payment-service") //标识当前接口就是一个feign客户端,并且指定调用哪一个微服务
public interface PaymentFeignService {
    @GetMapping("payment/{id}")
    public CommonResult<Payment> findPaymentById(@PathVariable("id") Long id);
}

(5)编写controller层

@RestController
public class CustomerFeignController {
    @Autowired
    PaymentFeignService paymentFeignService;
    @GetMapping("consumer/feign/payment/{id}")
    public CommonResult<Payment> getPaymentById(@PathVariable("id") Long id){
        return paymentFeignService.getPaymentById(id);
    }
}

(6)测试结果
分别启动Eureka注册中心集群,启动Feign客户端,调用成功。

2.超时控制

(1)在提供方添加模拟服务超时的方法用于测试
设置调用需要响应的时间。

//故意模拟服务超时
@GetMapping("/payment/feign/timeout")
public String paymentFeignTimeOut(){
    try {
        TimeUnit.SECONDS.sleep(3);
    } catch (InterruptedException e) {
        e.printStackTrace();
    }
    return "time out.....";
}

(2)在feign客户端中定义超时方法

@GetMapping("/payment/feign/timeout")
public String paymentFeignTimeOut();

(3)在controller中调用方法
(4)进行测试,通过Feign客户端进行访问
(5)如何设置避免超时调用
在消费方的配置文件中设置调用超时时间,继续测试

feign:
  client:
    config:
      default:
        readTimeout: 5000
        connectTimeout: 5000
ribbon: #设置Feign客户端调用超时时间
  ReadTimeOut: 5000 #指的是建立连接所需要的的时间
  ConnectTimeOut: 5000 #指的是建立连接之后,服务器读取资源需要的时间

3.日志打印

  Feign提供了日志打印功能,我们可以通过配置来调整日志级别,从而了解Feign中Http的请求细节,就是对Feign接口的调用情况进行监控和输出。
(1)自定义配置类

@Configuration
public class FeignConfig {
    @Bean
    Logger.Level feignLoggerLevel(){
        return Logger.Level.FULL;
    }
}

(2) 定义配置文件的日志配置内容

logging:
  level:
    com.kriss.service.PaymentFeignService: debug

(3)测试查看打印信息

二、Hystrix

Hystrix断路器,是Netflix开源的一个延迟和容错库,用于隔离访问远程服务、第三方库,防止出现级联失败。

1.Hystrix的要点

(1)服务降级:
服务器忙碌或者网络拥堵时,不让客户端等待并立刻返回一个友好提示,fallback(备选方案)。
场景:调用服务超时,服务本身 内部错误,服务的线程资源耗尽
(2)服务熔断
(3)服务限流

2.Hystrix案例演练

(1)创建模块
(2)引入依赖

 <!-- hystrix -->
    <dependency>
        <groupId>org.springframework.cloud</groupId>
        <artifactId>spring-cloud-starter-netflix-hystrix</artifactId>
    </dependency>

(3)编写配置文件

server:
  port: 8001
spring:
  application:
    name: cloud-payment-service  #服务名称
eureka:
  client:
    # 注册进 Eureka 的服务中心
    register-with-eureka: true
    # 检索 服务中心 的其它服务
    fetch-registry: true
    service-url:
      # 设置与 Eureka Server 交互的地址
      defaultZone: http://eureka7001.com:7001/eureka/,http://eureka7002.com:7002/eureka/

(4)创建启动类

@SpringBootApplication
@DiscoveryClient
public class HystrixPaymentApplication {
    public static void main(String[] args) {
        SpringApplication.run(HystrixPaymentApplication.class,args);
    }
}

(5) 在service中定义超时访问的方法

 /**
     超时访问的方法
     */
    public String paymentInfo_Timeout(Integer id){
        int interTime = 3;
        try{
            TimeUnit.SECONDS.sleep(interTime);
        }catch (Exception e){
            e.printStackTrace();
        }
        return "线程池:" + Thread.currentThread().getName() + "  ,paymentInfo_Timeout,id:" + id + "耗时" + interTime + "秒钟";
    }

(6) 在controller中调用方法
(7)进行测试,查看结果

3.模拟高并发

使用JMeter压力测试器
(1)在压力测试器中添加线程
(2)设置并发访问数
(3)设置请求路径
(4)运行查看结果


总结

以上就是今天要讲的内容,关于服务降级的详细内容在下一篇文章中展示。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值