|
|
@ -8,8 +8,10 @@ |
|
|
|
|
|
|
|
package com.epmet.commons.tools.feign; |
|
|
|
|
|
|
|
import feign.Logger; |
|
|
|
import feign.RequestInterceptor; |
|
|
|
import feign.RequestTemplate; |
|
|
|
import org.springframework.context.annotation.Bean; |
|
|
|
import org.springframework.context.annotation.Configuration; |
|
|
|
import org.springframework.web.context.request.RequestAttributes; |
|
|
|
import org.springframework.web.context.request.RequestContextHolder; |
|
|
@ -18,6 +20,7 @@ import org.springframework.web.context.request.ServletRequestAttributes; |
|
|
|
import javax.servlet.http.HttpServletRequest; |
|
|
|
import java.util.Enumeration; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
* Feign调用,携带header |
|
|
|
* |
|
|
@ -47,4 +50,9 @@ public class FeignConfig implements RequestInterceptor { |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
@Bean |
|
|
|
Logger.Level feignLoggerLevel() { |
|
|
|
return Logger.Level.FULL;//控制台会输出debug日志
|
|
|
|
} |
|
|
|
} |
|
|
|