您好,登錄后才能下訂單哦!
這篇文章主要介紹“Spring使用feign時怎么設置header信息”,在日常操作中,相信很多人在Spring使用feign時怎么設置header信息問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring使用feign時怎么設置header信息”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
最近使用 SpringBoot 項目,把一些 http 請求轉為 使用 feign方式。但是遇到一個問題:個別請求是要設置header的。
于是,查看官方文檔和博客,大致推薦兩種方式。也可能是我沒看明白官方文檔。
接口如下:
@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); }
這種方式經過嘗試,沒有作用。暫時不清楚原因。
@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,不適于我的需求。
后來發現其實我的思路走偏了。咨詢了一個同事,既然使用的是RequestMapping注解。那么直接使用RequestMapping注解的header屬性就可以了。如下:
@RequestMapping(value ="/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 ="/xx", method = RequestMethod.POST, headers = {"content-type=application/x-www-form-urlencoded"}) String login(@RequestParam("username") String username,@RequestParam("password") String password;
/** * @author Liangzhifeng * date: 2018/9/13 */ public interface UserInfoFeignClient { /** * 根據token獲取用戶信息 * @param token * @return */ @RequestMapping(value = "/user/info/1.0", method = RequestMethod.POST) Object getUserInfoByToken(@RequestParam("token") String token); } /** * @author Liangzhifeng * date: 2018/9/15 */ @Component public class AuthorityConfig { /** * 授權信息Header的key */ public static final String OAUTH_KEY = "token"; /** * 授權信息Header的值的前綴 */ public static final String OAUTH_VALUE_PREFIX = "Bearer "; // GlobalConstant.AUTHORITY_SERVICE_LINK : 服務的名稱 @Autowired private 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; } }
@Autowired private 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; } }
到此,關于“Spring使用feign時怎么設置header信息”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。