如何进行SpringCloudFeign接口返回流的实现-成都快上网建站

如何进行SpringCloudFeign接口返回流的实现

今天就跟大家聊聊有关如何进行SpringCloudFeign接口返回流的实现,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。

创新互联建站专注为客户提供全方位的互联网综合服务,包含不限于成都网站建设、做网站、乌鲁木齐网络推广、小程序开发、乌鲁木齐网络营销、乌鲁木齐企业策划、乌鲁木齐品牌公关、搜索引擎seo、人物专访、企业宣传片、企业代运营等,从售前售中售后,我们都将竭诚为您服务,您的肯定,是我们最大的嘉奖;创新互联建站为所有大学生创业者提供乌鲁木齐建站搭建服务,24小时服务热线:18980820575,官方网址:www.cdcxhl.com

服务提供者

@GetMapping("/{id}")  public void queryJobInfoLogDetail(@PathVariable("id") Long id, HttpServletResponse response) {    File file = new File("xxxxx");    InputStream fileInputStream = new FileInputStream(file);    OutputStream outStream;    try {      outStream = response.getOutputStream();      byte[] bytes = new byte[1024];      int len = 0;      while ((len = fileInputStream.read(bytes)) != -1) {        outStream.write(bytes, 0, len);      }      fileInputStream.close();      outStream.close();      outStream.flush();    } catch (IOException e) {      log.error("exception", e);    }  }

client 客户端

@GetMapping(value = "/{id}", consumes = MediaType.APPLICATION_JSON_UTF8_VALUE)  feign.Response queryJobInfoLogDetail(@PathVariable("id") Long id);

服务消费者

@GetMapping("/{id}")  public void queryJobInfoLogInfoList(@PathVariable("id") Long id, HttpServletResponse servletResponse) {    Response response = apiServices.queryJobInfoLogDetail(id);    Response.Body body = response.body();    InputStream fileInputStream = null;    OutputStream outStream;    try {      fileInputStream = body.asInputStream();      outStream = servletResponse.getOutputStream();      byte[] bytes = new byte[1024];      int len = 0;      while ((len = fileInputStream.read(bytes)) != -1) {        outStream.write(bytes, 0, len);      }      fileInputStream.close();      outStream.close();      outStream.flush();    } catch (Exception e) {    }  }

看完上述内容,你们对如何进行SpringCloudFeign接口返回流的实现有进一步的了解吗?如果还想了解更多知识或者相关内容,请关注创新互联行业资讯频道,感谢大家的支持。


网站题目:如何进行SpringCloudFeign接口返回流的实现
标题来源:http://kswjz.com/article/goicod.html
扫二维码与项目经理沟通

我们在微信上24小时期待你的声音

解答本文疑问/技术咨询/运营咨询/技术建议/互联网交流