使用Spring Cloud Feign 日志查看请求响应

Posted 21Java

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用Spring Cloud Feign 日志查看请求响应相关的知识,希望对你有一定的参考价值。

在使用微服务时,常常会用feign做客户端去调用别的微服务,但是在日志中很难查看到具体的请求和响应。因此,需要把feign默认的日志打开。

日志设置

  • 创建feign配置类

@Configuration
public class FeignLogConfiguration {

	@Bean
	Logger.Level feignLoggerLevel() {

		return Logger.Level.FULL;

	}
}
  • 其中Logger.Level是枚举类

  • application.properties或者application.yml文件中设置Feign客户端的日志级别----->可以看到feign客户端的请求响应
logging.level.com.wugui.spring.cloud.weather.Service:debug


  • 其中com.wugui.spring.cloud.weather.Service为feign client接口所在包

日志查看

以上是关于使用Spring Cloud Feign 日志查看请求响应的主要内容,如果未能解决你的问题,请参考以下文章

Spring Cloud Alibaba - 14 OpenFeign自定义配置 + 调用优化 + 超时时间

spring cloud Feign oauth2令牌传递

Spring Cloud Alibaba全家桶——微服务调用组件Feign

Bug集锦-Spring Cloud Feign调用其它接口报错

Bug集锦-Spring Cloud Feign调用其它接口报错

08 在Spring Cloud中使用Feign