SpringBoot工程下使用OpenFeign的坑及解決
一、前言
在SpringBoot工程(註意不是SpringCloud)下使OpenFeign的大坑。為什麼不用SpringCloud中的Feign呢?
首先我的項目比較簡單(目前隻有login與業務模塊)所以暫時不去引入分佈式的架構,但兩個服務之間存在一些聯系因此需要接口調用接口(實現該操作方式很多我選擇瞭OpenFeign,踩坑之路從此開始。。。)。
二、具體的坑
使用OpenFeign我是直接參考官方的demo,官方的例子寫的簡潔明瞭直接套用到自己的工程中即可,自己也可以做相應的封裝再調用但demo中使用到瞭一個feign的核心註解@RequestLine,問題就是出在該註解上。
此時你去做調試如果使用的是GET請求,被請求的接口則會收到POST的請求然後A接口(請求方)就報500的錯誤,B接口(被請求方)則提示接口不支持POST請求(不支持POST請求是非常正常的,因為B接口定義的method是GET方法)。
以下是我的代碼片段:
自定義UserFeign接口
public interface UserFeign { /** * 根據userId獲取用戶信息 * @param userId * @return */ @RequestLine("GET /user/getUserById?id={id}") Result getUserById(@Param("id") String userId); }
調用UserFeign接口
@Service public class UserService{ /** * 通過OpenFegin實現接口調用接口 * @param userId * @return */ public Result getUserByIdWith(String userId) { UserFeign userInfo = Feign.builder() .decoder(new JacksonDecoder()) .target(UserFeign.class, "http://localhost:8080"); Result res = userInfo.getUserById(userId); return res; } }
A接口 (請求方)
@RequestMapping(value = "/test", method = RequestMethod.GET) public Result test() { String id = "ad545461300a"; return userService.getUserByIdWith(id); }
B接口 (被請求方)
@RequestMapping(value = "/getUserById", method = RequestMethod.GET) public Result getUserByUserId(@RequestParam(required = true) String id){ if ("".equals(id)) { throw new BusinessException(400, "userId不能為空!"); } Users info = usersService.getUserById(id); if (info == null) { throw new BusinessException(404, "userId有誤!"); } return ResultUntil.success(info); }
以上代碼我做瞭一些小調整,將調用UesrFeign接口中的方法封裝在UserService中並且使用瞭@service這樣我就可以在其它地方直接註入UserService然後調用其中方法。
你會覺得以上代碼跟官網的demo沒啥區別但官方文檔中並沒有說明使用@RequestLine註解需要進行配置(事實上需要進行配置的)。
配置代碼如下:
@Bean public Contract useFeignAnnotations() { return new Contract.Default(); }
完成以上的配置就可以進行正常的調用瞭,該問題困擾我好幾天瞭今天終於解決瞭(真不容易),希望該文章沒有白寫。
最後感謝這篇文章讓我在放棄的時候找到瞭思路。(調試中遇到的細節問題就不在此進行贅述瞭)
以上為個人經驗,希望能給大傢一個參考,也希望大傢多多支持WalkonNet。
推薦閱讀:
- Feign如何實現第三方的HTTP請求
- Java Ribbon與openfeign區別和用法講解
- SpringCloud升級2020.0.x版之OpenFeign簡介與使用實現思路
- SpringCloud 如何使用feign時的復雜參數傳遞
- 剖析SpringCloud Feign中所隱藏的坑