解决——》feign文件下载时报错feign.codec.EncodeException: not in non blocking mode
生活随笔
收集整理的這篇文章主要介紹了
解决——》feign文件下载时报错feign.codec.EncodeException: not in non blocking mode
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
推薦鏈接:
????總結——》【Java】
????總結——》【Mysql】
????總結——》【Spring】
????總結——》【SpringBoot】
????總結——》【MyBatis、MyBatis-Plus】
解決——》feign文件下載時報錯feign.codec.EncodeException: not in non blocking mode
- 1、操作
- 2、現象
- 3、原因
- 4、解決
1、操作
feign文件下載
2、現象
報異常feign.codec.EncodeException: not in non blocking mode
2022-11-10 09:30:05.200 ERROR [10.122.143.9] [http-nio-8882-exec-2] [house-platform-api-0a7a8f09-463345-253] com.eju.houseparent.config.starter.BaseControllerHandler.handleException [line=143 ] : handleException ex uri:/tmall/cityopen/syncEsfCommunity/logList/downloadError/1667895255597,param:{} 2022-11-10 09:30:05.200 ERROR [10.122.143.9] [http-nio-8882-exec-2] [house-platform-api-0a7a8f09-463345-253] com.eju.houseparent.config.starter.BaseControllerHandler.handleException [line=144 ] : handleException ex class:class feign.codec.EncodeException,ex:not in non blocking mode. 2022-11-10 09:30:05.201 ERROR [10.122.143.9] [http-nio-8882-exec-2] [house-platform-api-0a7a8f09-463345-253] com.eju.houseparent.config.starter.BaseControllerHandler.handleException [line=145 ] : 系統正在維護中,請稍候再試 feign.codec.EncodeException: not in non blocking mode.at feign.ReflectiveFeign$BuildEncodedTemplateFromArgs.resolve(ReflectiveFeign.java:384)at feign.ReflectiveFeign$BuildTemplateByResolvingArgs.create(ReflectiveFeign.java:232)at feign.SynchronousMethodHandler.invoke(SynchronousMethodHandler.java:84)at feign.ReflectiveFeign$FeignInvocationHandler.invoke(ReflectiveFeign.java:100)at com.sun.proxy.$Proxy305.downloadErrorLogListByBatchNo(Unknown Source)at com.ejudata.platform.controller.TmallCityOpenController.downloadErrorLogListByBatchNo$original$DkyYi2Ll(TmallCityOpenController.java:70)at com.ejudata.platform.controller.TmallCityOpenController.downloadErrorLogListByBatchNo$original$DkyYi2Ll$accessor$nvaSjmiZ(TmallCityOpenController.java)at com.ejudata.platform.controller.TmallCityOpenController$auxiliary$m4Yk46Iz.call(Unknown Source)at org.apache.skywalking.apm.agent.core.plugin.interceptor.enhance.InstMethodsInter.intercept(InstMethodsInter.java:86)at com.ejudata.platform.controller.TmallCityOpenController.downloadErrorLogListByBatchNo(TmallCityOpenController.java)3、原因
服務消費者,需要設置方法返回值為Response
4、解決
將服務提供者的文件下載響應的響應體(文件內容)復制到服務消費者對外的文件下載響應體中
@FeignClient(value = "${feign.client.config.good-house-push.name}", url = "${feign.client.config.good-house-push.url}", path = "${feign.client.inner.path}", configuration = CatFeignConfiguration.class) public interface ITmallSyncEsfCommunityApi{@ApiOperation("根據批次號,下載同步二手房小區的錯誤日志列表")@GetMapping({"/api/tmall/syncEsfCommunity/logList/downloadError/{batchNo}"})Response downloadErrorLogListByBatchNo(@PathVariable(name = "batchNo") String batchNo); } @ApiOperation(value = "根據批次號,下載同步二手房小區的錯誤日志列表")@GetMapping("/cityopen/syncEsfCommunity/logList/downloadError/{batchNo}")void downloadErrorLogListByBatchNo(@PathVariable(name = "batchNo") String batchNo, HttpServletResponse response) {InputStream inputStream = null;try {Response serviceResponse = tmallSyncEsfCommunityApi.downloadErrorLogListByBatchNo(batchNo);Response.Body body = serviceResponse.body();inputStream = body.asInputStream();BufferedInputStream bufferedInputStream = new BufferedInputStream(inputStream);response.setContentType("application/vnd.openxmlformats-officedocument.spreadsheetml.sheet");response.setCharacterEncoding("utf-8");response.setHeader("Content-disposition", "attachment;filename*=utf-8''" + batchNo + ".xlsx");BufferedOutputStream bufferedOutputStream = new BufferedOutputStream(response.getOutputStream());int length = 0;byte[] temp = new byte[1024 * 10];while ((length = bufferedInputStream.read(temp)) != -1) {bufferedOutputStream.write(temp, 0, length);}bufferedOutputStream.flush();bufferedOutputStream.close();bufferedInputStream.close();inputStream.close();} catch (IOException e) {e.printStackTrace();}}總結
以上是生活随笔為你收集整理的解决——》feign文件下载时报错feign.codec.EncodeException: not in non blocking mode的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: ireport mysql_iRepor
- 下一篇: 数据分析-kaggle泰坦尼克号生存率分