网创优客建站品牌官网
为成都网站建设公司企业提供高品质网站建设
热线:028-86922220
成都专业网站建设公司

定制建站费用3500元

符合中小企业对网站设计、功能常规化式的企业展示型网站建设

成都品牌网站建设

品牌网站建设费用6000元

本套餐主要针对企业品牌型网站、中高端设计、前端互动体验...

成都商城网站建设

商城网站建设费用8000元

商城网站建设因基本功能的需求不同费用上面也有很大的差别...

成都微信网站建设

手机微信网站建站3000元

手机微信网站开发、微信官网、微信商城网站...

建站知识

当前位置:首页 > 建站知识

如何进行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接口返回流的实现
网站URL:http://bjjierui.cn/article/goicod.html

其他资讯