Feign的应用

Posted flame540

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Feign的应用相关的知识,希望对你有一定的参考价值。

一、介绍

  1.   Feign可以把Rest的请求进行隐藏,伪装成类似SpringMVC的Controller一样。
  2.   它集成了ribbon与hystrix组件。

二、依赖 

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

 三、配置 

feign:
  hystrix:
    enabled: true # 开启Feign的熔断功能
feign:
  compression:
    request:
      enabled: true # 开启请求压缩
      mime-types: text/html,application/xml,application/json # 设置压缩的数据类型
      min-request-size: 2048 # 设置触发压缩的大小下限

 

以上是关于Feign的应用的主要内容,如果未能解决你的问题,请参考以下文章

ribbon,feign选择和与Hystrix的整合应用

ribbon,feign选择和与Hystrix的整合应用

Feign自定义配置详解

Feign的应用

Spring Cloud 第二天课堂笔记

0503-Hystrix保护应用-feign的hystrix支持