美文网首页
OpenFeign&Feign HttpClient

OpenFeign&Feign HttpClient

作者: Alen_ab56 | 来源:发表于2022-11-05 21:11 被阅读0次

Feign在默认情况下使用的是JDK原生的URLConnection发送HTTP请求,没有连接池,但是对每个地址会保持一个长连接,即利用HTTP的persistence connection 。我们可以用Apache的HTTP Client替换Feign原始的http client, 从而获取连接池、超时时间等与性能息息相关的控制能力。Spring Cloud从Brixtion.SR5版本开始支持这种替换,首先在项目中声明Apache HTTP Client和feign-httpclient依赖

<!-- 使用Apache HttpClient替换Feign原生httpclient -->

        <dependency>

            <groupId>org.apache.httpcomponents</groupId>

            <artifactId>httpclient</artifactId>

        </dependency>

        <dependency>

            <groupId>com.netflix.feign</groupId>

            <artifactId>feign-httpclient</artifactId>

            <version>${feign-httpclient}</version>

        </dependency>

配置开启

feign:

  httpclient:

    enabled: true

相关文章

网友评论

      本文标题:OpenFeign&Feign HttpClient

      本文链接:https://www.haomeiwen.com/subject/rfzytdtx.html