您好,登錄后才能下訂單哦!
本篇內容介紹了“如何解決feign微服務間的文件上傳報錯問題”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!
the request was rejected because no multipart boundary was found
spring cloud版本 H
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-dependencies</artifactId> <version>Hoxton.SR8</version> <type>pom</type> <scope>import</scope> </dependency>
如果你是使用feign相信你已經引入openfeign的依賴了;
<dependency> <groupId>org.springframework.cloud</groupId> <artifactId>spring-cloud-starter-openfeign</artifactId> </dependency>
服務提供者接口:
//服務提供者上傳文件接口 @PostMapping(value = " /file/upload") public ResultModel<FileInfo> fileUpload(@RequestParam("access_token") String accessToken, @RequestParam("file") MultipartFile file) { //返回保存文件信息的實體類 FileInfo fileInfo = fileInfoService.uploadFile(file); return ResultModel.ok(fileInfo); }
消費者接口:
@Component @FeignClient(value = "file-server") public interface FileInfoFeignService { @PostMapping(value = "/file/upload", consumes = MediaType.MULTIPART_FORM_DATA_VALUE) public ResultModel<FileInfo> fileUpload(@RequestParam("access_token") String accessToken, @RequestPart("file") MultipartFile file); }
必須加
consumes = MediaType.MULTIPART_FORM_DATA_VALUE
MultipartFile file 前面的注解必須是@RequestPart
消費者controller類:
//消費者上傳文件接口 @PostMapping(value = "/fileUpload") public ResultModel<FileInfo> fileUpload(@RequestParam("access_token") String accessToken, @RequestPart("file") MultipartFile file) { return fileInfoFeignService.fileUpload(accessToken, file); }
這樣就完成了!
自己調試了很多遍,感覺其他的博客寫的亂七八糟的。
通過 feign 調用文件服務提供者接口時,需傳輸 文件file ,服務調用者有時會報錯誤:
feign.FeignException$BadRequest: status 400 reading
服務提供者會報 Required request part 'file' is not present 錯誤。
這是因為服務調用者MultipartFile的value跟服務提供者@RequestPart中的value值不一樣導致的。
在服務調用者MultipartFile的value要跟服務提供者的@RequestPart中的value值一樣。不然它會拋出400異常!!!
服務調用者
@PostMapping("/xxx/file") public xx uploadOrderFilesToOSS(@ApiParam("附件") @RequestParam("file") MultipartFile[] file) { return xxxService.uploadOrderFilesToOSS(file); }
Feign
@PostMapping(value = "/file", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}, consumes = MediaType.MULTIPART_FORM_DATA_VALUE) xxx uploadSigleFile(@RequestParam("path") String path, @RequestPart("file") MultipartFile file);
服務提供者
@PostMapping(value = "/file", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}, consumes = MediaType.MULTIPART_FORM_DATA_VALUE) public xxx uploadSigleFile(@RequestParam("path") String path, @RequestPart("file") MultipartFile file) { return fileService.uploadFileToOSS(path, file); }
可以通過以下代碼查看請求參數
Collection<Part> parts = request.getParts(); logger.info(JSONObject.toJSONString(parts, true));
“如何解決feign微服務間的文件上傳報錯問題”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。