Spring|Spring 使用 feign时设置header信息的操作
Spring feign时设置header信息
最近使用 SpringBoot 项目,把一些 http 请求转为 使用 feign方式。但是遇到一个问题:个别请求是要设置header的。
于是,查看官方文档和博客,大致推荐两种方式。也可能是我没看明白官方文档。
接口如下:
@FeignClient(url ="XX_url", value ="https://www.it610.com/article/XXService")public interface XXService { @RequestMapping(value ="https://www.it610.com/xx", method = RequestMethod.POST)@Headers({"Content-Type: application/json","Accept: application/json"})String sendDing(String params); }
1. 使用Headers注解。直接在请求上或者在类上添加
【Spring|Spring 使用 feign时设置header信息的操作】这种方式经过尝试,没有作用。暂时不清楚原因。
2. 通过实现RequestInterceptor接口,完成对所有的Feign请求,设置Header
@Componentpublic class FeginClientConfig {@Beanpublic RequestInterceptor headerInterceptor() {return new RequestInterceptor() {@Overridepublic void apply(RequestTemplate requestTemplate) {// 小示例,没什么卵用requestTemplate.header("Content-Type","application/json"); }}; } @Beanpublic Logger.Level level() {return Logger.Level.FULL; } }
这种方式,是针对所有feign请求进行拦截,设置Header,不适于我的需求。
后来发现其实我的思路走偏了。咨询了一个同事,既然使用的是RequestMapping注解。那么直接使用RequestMapping注解的header属性就可以了。如下:
@RequestMapping(value ="https://www.it610.com/xx", method = RequestMethod.POST, headers = {"content-type=application/x-www-form-urlencoded"})
有一点需要注意:content-type=application/x-www-form-urlencoded。此时,方法里接收的参数,就不能直接是一个对象(Map等)。不然还是会默认
content-type为 application/json.
@RequestMapping(value ="https://www.it610.com/xx", method = RequestMethod.POST, headers = {"content-type=application/x-www-form-urlencoded"})String login(@RequestParam("username") String username,@RequestParam("password") String password;
Feign动态设置Header Feign调用接口:
/** * @author Liangzhifeng * date: 2018/9/13 */public interface UserInfoFeignClient {/*** 根据token获取用户信息* @param token* @return*/@RequestMapping(value = "https://www.it610.com/user/info/1.0", method = RequestMethod.POST)Object getUserInfoByToken(@RequestParam("token") String token); }/** * @author Liangzhifeng * date: 2018/9/15 */@Componentpublic class AuthorityConfig {/*** 授权信息Header的key*/public static final String OAUTH_KEY = "token"; /*** 授权信息Header的值的前缀*/public static final String OAUTH_VALUE_PREFIX = "Bearer "; // GlobalConstant.AUTHORITY_SERVICE_LINK: 服务的名称@Autowiredprivate Client client; public UserInfoFeignClient userInfoFeignClient(String token) {UserInfoFeignClient authorityServiceLoginInvoker = Feign.builder().client(client).encoder(new GsonEncoder()).decoder(new GsonDecoder()).contract(new SpringMvcContract()).requestInterceptor(template -> template.header(OAUTH_KEY, OAUTH_VALUE_PREFIX + token)).target(UserInfoFeignClient.class, GlobalConstant.AUTHORITY_SERVICE_LINK); return authorityServiceLoginInvoker; }}
接口调用:
@Autowiredprivate AuthorityConfig authorityConfig; /** * 根据token获取用户信息 * * @param token 用户登录的授权token * @return 用户信息JSON */public Object getUserInfo(String token) {try {Object userInfo = authorityConfig.userInfoFeignClient(token).getUserInfoByToken(token); return userInfo; } catch (Exception e) {log.info("获取用户信息异常", e); return null; }}
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
推荐阅读
- 由浅入深理解AOP
- 【译】20个更有效地使用谷歌搜索的技巧
- Activiti(一)SpringBoot2集成Activiti6
- mybatisplus如何在xml的连表查询中使用queryWrapper
- MybatisPlus|MybatisPlus LambdaQueryWrapper使用int默认值的坑及解决
- MybatisPlus使用queryWrapper如何实现复杂查询
- SpringBoot调用公共模块的自定义注解失效的解决
- 解决SpringBoot引用别的模块无法注入的问题
- iOS中的Block
- Linux下面如何查看tomcat已经使用多少线程