Spring Cloud Feign接口返回流的实现

网友投稿 444 2023-07-18

Spring Cloud Feign接口返回流的实现

Spring Cloud Feign接口返回流的实现

服务提供者

@GetMAPPing("/{id}")

public void queryJobInfoLogDetail(@PathVariable("id") Long id, HttpServletResponse response) {

File file = new File("xxxxx");

InputStream fileInputStream = new FileInputStream(fileHhXDdZh);

OutputStream outStream;

try {

outStream = response.getOutputStream();

byte[] bytes = new byte[1024];

int len HhXDdZh= 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) {

}

}

版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:开放银行生态:打造财富共享的未来金融生态系统
下一篇:springBoot 创建定时任务过程详解
相关文章

 发表评论

暂时没有评论,来抢沙发吧~