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>