[SpringCloud] Feign远程调用

Feign

Feign是一个声明式的http客户端

快速使用

引入相关依赖

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

启用Feign

在启动类上加上开启Feign的注解@EnableFeignClients

@EnableFeignClients
@SpringBootApplication
public class OrderApplication {

    public static void main(String[] args) {
        SpringApplication.run(OrderApplication.class, args);
    }

}

编写Feign客户端

@FeignClient("userservice")
public interface UserClient {
    @GetMapping("user/{id}")
    User findById(@PathVariable("id") Long id);
}

其中,@FeignClient注解内为所要调用的服务的服务名。

自定义配置

类型作用说明
feign.Logger.Level修改日志级别包含四个级别:NONE、BASIC、HEADERS、FULL
feign.codec.Decoder响应结果的解析器对http远程调用的结果做解析
feign.codec.Encoder请求参数编码将请求参数编码,便于通过http请求发送
feign.Contract支持的注解格式默认是SpringMVC的注解
feign.Retryer失败重试机制请求失败的重试机制,默认是没有,不过会使用Ribbon的重试机制

Feign的性能优化

Feign底层的客户端实现:

  • URLConnection: 默认实现,不支持连接池
  • Apache HttpClient: 支持连接池
  • OKHttp: 支持连接池

Feign的性能优化主要包括:

  • 使用连接池代替默认的URLConnection
  • 日志级别,最好用basic或none

连接池配置

以HTTPClient为例

引入相关依赖

<dependency>
	<groupId>io.github.openfeign</groupId>
    <artifactId>feign-httpclient</artifactId>
</dependency>

配置连接池

feign:
	client:
		default: #default全局的配置
			loggerLevel: BASIC #日志级别
	httpclient:
		enabled: true #开启feign对HTTPClient的支持
		max-connections: 200 #最大的连接数
		max-connections-per-route: 50 # 每个路径的最大连接数
		

Feign的最佳实践

继承

让消费者的FeignClient和提供者的controller定义统一的父接口作为标准

优点:遵守面向契约编程

缺点:紧耦合,父接口参数列表的映射不会被继承

抽取

将FeignClient抽取为独立的模块,并把接口有关的POJO和Feign配置都放到这个模块中

当FeignClient不在扫描包范围时,可通过以下两种方式导入

@EnableFeignClients(basePackages="")
@EnableFeignClients(clients={xxx.class})

补充

feign与nacos版本冲突

在高版本的SpringCloud中由专门的loadbanlancer依赖来实现负载均衡,引入Feign依赖的同时也需要引入负载均衡的依赖,而低版本的nacos中引入的ribbon负载均衡依赖与之是冲突的,可以通过排除ribbon依赖或者统一SpringCloud依赖来解决。

        <dependency>
           <groupId>com.alibaba.cloud</groupId>
           <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
           <exclusions>
               <exclusion>
                   <groupId>org.springframework.cloud</groupId>
                   <artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
               </exclusion>
           </exclusions>
       </dependency>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

辰宝IWZ

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值