Spring Cloud 使用 Feign 调用服务接口
- 2019 年 10 月 7 日
- 笔记

1. Spring Cloud 集成 Feign
在客户端项目中引入
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency>
在 Application 主类上添加 @EnableFeignClients 注解
2. 创建 Client 接口类
例如: 服务调用的实际地址为: http://fsh-house/house/hello
@FeignClient(value="fsh-house", path="/house") public interface HouseRemoteClient { @GetMapping("/hello") String hello(); }
3. Feign 的自定义日志配置
通过查看源码, Feign 的日志级别有4级, NONE, BASIC, HEADERS, FULL
@Configuration public class FeignConfiguration { @Bean Logger.Level feignLoggerLevel(){ return Logger.Level.FULL; } }
然后在 properties 配置文件中添加 Client 的日志级别, 才能在日志中显示.
4. Feign 的契约配置
原生的 Feign 是不支持 SpringMvc 注解的, Spring Cloud 中使用 SpringMvcContract 契约在 Feign 的基础上做了扩展, 才使得 Feign 支持 SpringMvc 注解, 如果在 Spring Cloud 中想使用 Feign 的原生注解来定义 client, 那就要通过更改契约配置来实现
@Configuration public class FeignConfiguration { @Bean public Contract feignContract() { return new Contract.Default(); } }
使用 Feign 默认契约后, 就不支持 SpringMvc 注解了