FeignClient
FeignClient介绍和使用
·
FeignClient的调用
注意: 依赖可能会出现冲突,请根据spring-cloud版本选择并修改
1. 引入依赖:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-openfeign</artifactId>
<version>2.1.3.RELEASE</version>
</dependency>
2. 创建包存放fenign调用的接口
如:com.ls.feignSerice
package com.ls.feignSerice;
public interface feignService {
}
3. 添加@FeignClient(“service”) 注解 值为远程调用服务的名称,并写入需要调用的方法
以下为服务端的接口路径
@RestController
@RequestMapping("api")
public class controller {
@RequestMapping("/test")
public String test() {
return "访问成功";
}
以下为消费端
@FeignClient("service")
public interface feignService {
/**
* 请求路径为提供服务的接口路径
* 请求路径必须为全路径!
* 方法名可以不同,但尽量相同
*/
@RequestMapping("/api/test")
String test();
}
4. 在启动类添加 @EnableFeignClients(basePackages = “包路径”)
@EnableDiscoveryClient
@SpringBootApplication
@EnableFeignClients(basePackages = "com.ls.feignSerice")
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
5. 最后就可以使用消费端的地址去调用服务端的接口了
- 自定义Feign的配置
配置Feign日志有两种方式 - 基于配置文件
feign:
client:
config:
default: #这里使用 default 就是全局配置,如果是写服务名称,则是针对某个微服务的配置
logger-level: FULL #日志级别
- 基于注解方式
6.Feign的性能优化
6.1 Feign底层的客户端实现:
- URLConnection:默认实现,补支持连接池
- Apache HttpClient:支持连接池
- OKHttp:支持连接池
6.2 因此优化Feign的性能主要包括:
- 使用连接池代替默认的URLConnection
- 日志级别,最好用basic或none
6.3 优化
- 引入HttpClient依赖-
<dependency>
<groupId>io.github.openfeign</groupId>
<artifactId>feign-httpclient</artifactId>
</dependency>
- 配置(此处的参数值,需要看实际情况调整到合适的参数,并不是越大越好)
feign:
httpclient:
enabled: true # 支持HttpClient的开关
max-connections: 200 # 最大连接数
max-connections-per-route: 50 # 单个路径的最大连接数
7.Feign的最佳实践
7.1 继承
- 给消费者的FeignClient和提供者的Controller定义统一的父接口作为标准
- 一般不推荐此方法,会造成方法的紧耦合。且对SpringMVC不生效
- 定义接口
@FeignClient(value = "userservice")
public interface UserClient {
@GetMapping("/user/{id}")
User findById(@PathVariable("id") Long id);
}
- 实现接口,此方法可直接被调用
@Service
public interface UserService extends UserClient {
}
7.2 抽取
- 将FeignClient抽取为独立模块,并把接口有关的POJO、默认的Feign配置都放到这个模块中,提供给所有的消费者使用
- 创建一个module,命名为feign-api,然后映入feign的starter依赖
- 将所需的服务端写入到此module中
- 在消费端引入feign-api的依赖
- 使用 @Autowired 注入即可使用
注意: @Autowired 注入失败,原因为服务端不再扫描包范围。
解决方法: 指定FeignClient的字节码:@EnableFeignClients(clients=xxxxx.class)
更多推荐
已为社区贡献1条内容
所有评论(0)