成人午夜视频全免费观看高清-秋霞福利视频一区二区三区-国产精品久久久久电影小说-亚洲不卡区三一区三区一区

使用Feign怎么實(shí)現(xiàn)多文件上傳功能

本篇文章為大家展示了使用Feign怎么實(shí)現(xiàn)多文件上傳功能,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細(xì)介紹希望你能有所收獲。

創(chuàng)新互聯(lián)建站專業(yè)為企業(yè)提供江城網(wǎng)站建設(shè)、江城做網(wǎng)站、江城網(wǎng)站設(shè)計(jì)、江城網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計(jì)與制作、江城企業(yè)網(wǎng)站模板建站服務(wù),十多年江城做網(wǎng)站經(jīng)驗(yàn),不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。

想用Feign實(shí)現(xiàn)多文件的批量上傳 Controller實(shí)現(xiàn)如下代碼:

@PostMapping(value = "/uploadBatch/ali", consumes = MediaType.MULTIPART_FORM_DATA_VALUE, headers = "content-type=multipart/form-data")
	@ApiOperation(value = "阿里云批量上傳文件")
	@ResponseBody
	public Response uploadBatchAli(
			@RequestPart("files") MultipartFile[] files,
			@RequestParam("path") String path) {
		return fileServiceClient.uploadBatchAli(files, path);
	}

FeignClient代碼如下

@PostMapping(value = File_Service_API_PREFIX + "/uploadBatch/ali", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
	Response uploadBatchAli(
			@RequestPart("files") MultipartFile[] files,
			@RequestParam("path") String path);

Feign調(diào)用服務(wù),傳送類似MultipartFile[] files的時候,會出現(xiàn)如下錯誤

Could not write request: no suitable HttpMessageConverter found for request type [[Lorg.springframework.web.multipart.MultipartFile;] and content type [multipart/form-data]"

錯誤是因?yàn)镕eign在組裝MultipartFile[] files,的時候出現(xiàn)了問題 ,解決這個問題可以重寫SpringFormEncoder這個類,重寫后的代碼如下

public class SpringMultipartEncoder extends SpringFormEncoder {
	public SpringMultipartEncoder(Encoder delegate) {
		super(delegate);
		MultipartFormContentProcessor processor = (MultipartFormContentProcessor) getContentProcessor(MULTIPART);
		processor.addWriter(new SpringSingleMultipartFileWriter());
		processor.addWriter(new SpringManyMultipartFilesWriter());
	}

	@Override
	public void encode(Object object, Type bodyType, RequestTemplate template) throws EncodeException {
		if (bodyType != null && bodyType.equals(MultipartFile[].class)) {
			MultipartFile[] file = (MultipartFile[]) object;
			if(file != null) {
				Map data = Collections.singletonMap(file.length == 0 ? "" : file[0].getName(), object);
				super.encode(data, MAP_STRING_WILDCARD, template);
				return;
			}
		}
		super.encode(object, bodyType, template);
	}
}

然后配置類如下:

@Configuration
public class MultipartSupportConfig {

    @Autowired
    private ObjectFactory<HttpMessageConverters> messageConverters;

    @Bean
    public Encoder feignFormEncoder() {
        return new SpringMultipartEncoder(new SpringEncoder(messageConverters));
    }

然后FeignClient指定一下調(diào)用類

@FeignClient(name = "xxx",
		configuration = MultipartSupportConfig.class)
public interface FileServiceClient {

@PostMapping(value = File_Service_API_PREFIX + "/uploadBatch/ali", produces = {MediaType.APPLICATION_JSON_UTF8_VALUE}, consumes = MediaType.MULTIPART_FORM_DATA_VALUE)
	Response uploadBatchAli(
			@RequestPart("files") MultipartFile[] files,
			@RequestParam("path") String path);
		    
}

上述內(nèi)容就是使用Feign怎么實(shí)現(xiàn)多文件上傳功能,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。

網(wǎng)站題目:使用Feign怎么實(shí)現(xiàn)多文件上傳功能
網(wǎng)站鏈接:http://jinyejixie.com/article32/ijjesc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供網(wǎng)頁設(shè)計(jì)公司、Google服務(wù)器托管、企業(yè)網(wǎng)站制作、域名注冊、網(wǎng)站營銷

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)

營銷型網(wǎng)站建設(shè)
唐河县| 廉江市| 惠州市| 信丰县| 宜昌市| 临澧县| 安溪县| 东辽县| 大厂| 塔城市| 泾川县| 日照市| 乌兰察布市| 威宁| 赤水市| 乌兰察布市| 西昌市| 沁源县| 兴山县| 英德市| 台东市| 上高县| 临沂市| 汉川市| 广东省| 宁明县| 岳普湖县| 大冶市| 徐闻县| 三台县| 咸阳市| 永登县| 繁峙县| 肃宁县| 大城县| 广平县| 察隅县| 阳谷县| 顺平县| 施秉县| 黄山市|