最近使用 SpringBoot 项目,把一些 http 请求转为 使用 feign方式。可是遇到一个问题:个别请求是要设置header的。java
因而,查看官方文档和博客,大体推荐两种方式。也多是我没看明白官方文档。json
接口以下:app
@FeignClient(url = "XX_url", value = "XXService") public interface XXService { @RequestMapping(value = "/xx", method = RequestMethod.POST) @Headers({"Content-Type: application/json","Accept: application/json"}) String sendDing(String params); }
这种方式通过尝试,没有做用。暂时不清楚缘由。ide
@Component public class FeginClientConfig { @Bean public RequestInterceptor headerInterceptor() { return new RequestInterceptor() { @Override public void apply(RequestTemplate requestTemplate) { // 小示例,没什么卵用 requestTemplate.header("Content-Type", "application/json"); } }; } @Bean public Logger.Level level() { return Logger.Level.FULL; } }
这种方式,是针对全部feign请求进行拦截,设置Header,不适于个人需求。url
后来发现其实个人思路走偏了。咨询了一个同事,既然使用的是RequestMapping注解。那么直接使用RequestMapping注解的header属性就能够了。以下:code
@RequestMapping(value = "/xx", method = RequestMethod.POST, headers = {"content-type=application/x-www-form-urlencoded"})
有一点须要注意:content-type=application/x-www-form-urlencoded。此时,方法里接收的参数,就不能直接是一个对象(Map等)。否则仍是会默认orm
content-type为 application/json.
@RequestMapping(value = "/xx", method = RequestMethod.POST, headers = {"content-type=application/x-www-form-urlencoded"}) String login(@RequestParam("username") String username, @RequestParam("password") String password;