2022
01-06
01-06
Spring 使用 feign时设置header信息的操作
Springfeign时设置header信息最近使用SpringBoot项目,把一些http请求转为使用feign方式。但是遇到一个问题:个别请求是要设置header的。于是,查看官方文档和博客,大致推荐两种方式。也可能是我没看明白官方文档。接口如下:@FeignClient(url="XX_url",value="XXService")publicinterfaceXXService{@RequestMapping(value="/xx",method=RequestMethod.POST)@Headers({"Content-Type:application/json...
继续阅读 >