SpringCloudAlibaba整合Feign实现远程HTTP调用的简单示
目录
- 前言
- 环境
- 简单示例
- Feign 的组成和支持的配置项
- Feign 的组成
- Feign 支持的配置项
- Feign 的日志
- Feign 的日志级别
- 自定义配置 Feign 的日志级别
- 全局配置 Feign 的日志级别
- Feign 日志级别配置方式总结
- 项目源码
前言
Feign
是Netflix
开源的声明式HTTP
客户端,致力于让编写http client
更加简单,Feign
可以通过声明接口自动构造请求的目标地址完成请求
环境
Spring Cloud Hoxton.SR9 + Spring Cloud Alibaba 2.2.6.RELEASE
Feign
是Netflix
公司产品,目前已停止更新,文章中使用的是OpenFeign
,是Spring
社区开发的组件
简单示例
content-center pom.xml
<!-- openfeign --> <dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency>
启动类ContentCenterApplication.java
@EnableFeignClients public class ContentCenterApplication { }
TestController.java
import com.coisini.contentcenter.feignclient.TestFeignClient; import lombok.RequiredArgsConstructor; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.RestController; @RestController @RequiredArgsConstructor(onConstructor = @__(@Autowired)) public class TestController { private final TestFeignClient testFeignClient; /** * 整合Feign * @return */ @GetMapping("test4") public String test4() { return testFeignClient.test("Coisini"); } }
TestFeignClient.java
import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PathVariable; /** * @FeignClient(name = "user-center") * name 要请求的微服务的名称 */ @FeignClient(name = "user-center") public interface TestFeignClient{ /** * test接口被调用时,feign会构造出 url * http://user-center/test/{name} 完成请求 * @param name * @return */ @GetMapping("/test/{name}") String test(@PathVariable String name); }
user-center TestController.java
@RestController @Slf4j public class TestController { @GetMapping("/test/{name}") public String test(@PathVariable String name) { log.info("请求..."); return "hello " + name; } }
示例测试结果
…至此,已完成Feign
的整合
Feign 的组成和支持的配置项
Feign 的组成
不和Ribbon配合时 feign.Client.Default
Feign 支持的配置项
配置属性支持的配置项
feign.client.config: <feignName>: connectTimeout: 5000 # 连接超时时间 readTimeout: 5000 # 读取超时时间 loggerLevel: full # 日志级别 errorDecoder: com.example.SimpleErrorDecoder # 错误解码器 retryer: com.example.SimpleRetryer # 重试策略 requestInterceptors: com.example.FooRequestInterceptor # 拦截器 decode404: false # 是否对404错误码解码 encoder: com.example.SimpleEncoder # 编码器 decoder: com.example.SimpleDecoder # 解码器 contract: com.example.SimpleContract # 契约
Feign 的日志
Feign 的日志级别
feign
默认不打印任何日志
自定义配置 Feign 的日志级别
Java 代码配置方式 UserCenterFeignConfiguration.java
import feign.Logger; import org.springframework.context.annotation.Bean; /** * @Description 用户中心 Feign 配置类 */ public class UserCenterFeignConfiguration { @Bean public Logger.Level level() { return Logger.Level.FULL; } }
UserCenterFeignClient.java
@FeignClient(name = "user-center", configuration = UserCenterFeignConfiguration.class) public interface UserCenterFeignClient { ... }
application.yml
logging: level: # feign 的日志级别是建立在接口日志级别基础上的 com.coisini.contentcenter.feignclient.UserCenterFeignClient: debug
访问接口查看feign日志
yml 属性配置方式
application.yml,实现效果同上
logging: level: com.coisini.contentcenter.feignclient.UserCenterFeignClient: debug # 自定义配置 feign 日志级别 feign: client: config: # 调用的微服务名称 user-center: loggerLevel: full
全局配置 Feign 的日志级别
Java 代码配置方式 GlobalFeignConfiguration.java
import feign.Logger; import org.springframework.context.annotation.Bean; /** * @Description Feign 全局配置类 */ public class GlobalFeignConfiguration { @Bean public Logger.Level level() { // feign 日志级别 FULL return Logger.Level.FULL; } }
启动类ContentCenterApplication.java
@EnableFeignClients(defaultConfiguration = GlobalFeignConfiguration.class) @SpringBootApplication public class ContentCenterApplication { ... }
application.yml
logging: level: com.coisini.contentcenter.feignclient.UserCenterFeignClient: debug
接口日志打印
yml 属性配置方式 application.yml
# 自定义配置 feign 日志级别 feign: client: config: # 全局配置 default: loggerLevel: full
实现效果同上
Feign 日志级别配置方式总结
- 配置方式优先级:全局代码配置 < 全局属性配置 < 自定义代码配置(细粒度) < 自定义属性配置(细粒度)
- 建议尽量使用属性配置
项目源码
GitHub: https://github.com/Maggieq8324/coisini-cloud-alibaba
Gitee: https://gitee.com/maggieq8324/coisini-cloud-alibaba
到此这篇关于SpringCloudAlibaba 整合 Feign 实现远程 HTTP 调用的文章就介绍到这了,更多相关SpringCloudAlibaba远程 HTTP 调用内容请搜索自由互联以前的文章或继续浏览下面的相关文章希望大家以后多多支持自由互联!
【来源:自由互联、日本站群服务器】