因爲項目須要調用其餘微服務的數據,首先想到的就是寫一個http網絡請求的工具類,可是想到在以前看springCloud的時候裏面有這個Fegin能夠實現,就順便實踐一下,雖然過程有點坎坷,好在都順利解決了,在實踐的過程當中主要碰見了如下幾個問題spring
1) 不一樣請求方式傳參方式不一樣json
2) 同一請求方式請求頭信息不一樣api
3) 發送請求時候的編碼器不一樣網絡
4) 文件上傳app
(一) Fegin使用ide
1) 添加依賴微服務
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-feign</artifactId> </dependency>
2)在啓動類上加上註解
工具
@EnableEurekaClient @EnableHystrixDashboard @EnableFeignClients //這個就是使用Feign須要添加的註解 @SpringBootApplication public class VideoProxyServiceApplication { public static void main(String[] args) { SpringApplication.run(VideoProxyServiceApplication.class, args); } }
3)Feign 客戶端接口
測試
@Component @FeignClient(name = "stream-service",url = "${stream_service}") //name指定FeignClient的名稱,url通常用於調試,能夠手動指定@FeignClient調用的地址 public interface StreamServiceClient { //GET請求 @RequestMapping(value = "/task/findById",method = RequestMethod.GET) String findById(@RequestParam(value = "id") String id);
4)在Controller層裏調用編碼
@RestController @RequestMapping(value = "stream") public class StreamServiceController { @Autowired private StreamServiceClient streamServiceClient; @RequestMapping(value = "/findById",method = RequestMethod.GET) public ResponseResult findById(String id) { String s = streamServiceClient.findById(id); return responseResult(s, "jsonObject"); //ResponseResult是封裝的一個返回對象,而responseResult是寫的一個處理結果的公共方法,這裏就不展現了 } 點擊查看代碼
到這裏整個Feign的使用基本上就結束了,可是若是你認爲這樣你就能夠順利的使用Feign,那麼恭喜你,你將會很鬧心,由於在調用別人的服務的時候你不肯定人家究竟是須要怎麼取請求,若是是你寫接口只要你本身測試通了那就萬事大吉,但是如今是別人寫的接口讓你調,那麼你就須要考慮不少問題了,至少在我實踐中遇到的有這幾種,請求頭須要設置、請求的時候請求參數在路徑上傳參該怎麼傳等等一系列問題
劃重點,我主要就是講的運用,也就是在實際使用過程當中對於不一樣的請求,咱們應該怎麼作
(二) GET請求
對於GET請求應該算是最簡單的了,在這裏我分兩種來講,一種參數就在請求頭上,還有一種是參數在路徑中的
1) 對於參數在請求頭中的請求
@RequestMapping(value = "/task/findById",method = RequestMethod.GET) String findById(@RequestParam(value = "id") String id);
在@RequestMapping註解中value值是接口,method規定請求方式,在傳參的時候注意必定要加上@RequestParam,值是請求的參數名
2)請求參數在路徑中的請求
@RequestMapping(value = "/shrekapi/job/{id}",method = RequestMethod.GET) String deletejob(@PathVariable("id") String id);
這裏注意咱們的註解是@PathVariable加上參數名
(三)POST請求
POST請求,請求的時候我遇到了三種狀況,
一、請求參數在請求體中(這種方式實際上是最方便的)
// @RequestMapping(value = /addLable",method = RequestMethod.POST) String addLable(@RequestBody PointMsg lableName);//PointMsg是實體類
請求的時候直接在參數前加上@RequestBody,定義方法爲POST
二、請求參數在請求頭中
// @RequestMapping(value = "/updateStatusByCameraId",method = RequestMethod.POST) String updateStatusByCameraId(@RequestParam("camera") String camera);
這種請求的產生應該是在寫接口的時候參數前沒有加註解形成的,其實這種方式跟GET請求是如出一轍的
三、請求頭映射條件不一樣
//刪除標籤 @RequestMapping(value = "/deleteLable",method = RequestMethod.POST,headers = {"content-type=application/x-www-form-urlencoded"}) String deleteLable(@RequestParam("id") String id);
對於須要更改請求頭映射的直接使用headers,定義不一樣的映射
(四)文件上傳、自定義編碼器
因爲文件上傳的時候咱們咱們傳參數的時候其實傳的是文件,這個時候咱們默認的編碼器是不支持這種的,須要咱們自定義編碼器並應到咱們的client
注:在網上不少提到了自定義編碼器並使用@Configuration使其生效,最好不要這樣,一旦使用了這個註解那就是全局都使用這個編碼器了,那麼你的其餘請求就會出現問題,報編碼器異常
咱們的寫的時候能夠直接在客戶端接口上指定使用哪一個編碼器,而且只在這個客戶端接口生效,還有注意一點的就是,@FeignClient裏面的name屬性不能夠和其餘客戶端接口重複,重複的話等因而同一個客戶端接口仍是會使用指定的編碼器
@Component @FeignClient(name = "stream-service-File",url = "${stream_service}",configuration = FileUploadServiceClient.FeignMultipartSupportConfig.class) public interface FileUploadServiceClient { //文件上傳 @RequestMapping(value = "/importFile",method = RequestMethod.POST,produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}, consumes = MediaType.MULTIPART_FORM_DATA_VALUE) String upload(@RequestBody MultipartFile file); @RequestMapping(value = "/downloadExcel",method = RequestMethod.GET,consumes = MediaType.APPLICATION_JSON_UTF8_VALUE) Response downloadFile(); //自定義文件上傳編碼器 class FeignMultipartSupportConfig { @Bean public Encoder multipartFormEncoder() { return new SpringFormEncoder(); } @Bean public feign.Logger.Level multipartLoggerLevel() { return feign.Logger.Level.FULL; } } }
到這裏結束,若是遇到了新的問題歡迎一塊兒探討,上述全部都是在使用過程當中遇到的一些問題,僅作記錄,供君參考