使用Feign的时候,有时候会动态设置headers:
//在方法参数前面添加@RequestHeader注解
@PostMapping(value = “/getStuDetail”)
public ReturnInfo getStudentDetail(@RequestBody Map map,@RequestHeader(name = “id”) String id);
//使用@RequestHeader(name = “id”)可以传递动态header属性
在idea里执行代码请求的Fiddler的拦截过滤出现:
System.setProperty("http.proxyHost", "127.0.0.1");
System.setProperty("https.proxyHost", "127.0.0.1");
System.setProperty("http.proxyPort", "8888");
System.setProperty("https.proxyPort", "8888");