如何使用RestTemplate从服务器接收应用程序/ pdf响应

前端之家收集整理的这篇文章主要介绍了如何使用RestTemplate从服务器接收应用程序/ pdf响应前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我正在尝试捕获我的java客户端代码发出的HTTP请求的响应.响应的内容类型为application / pdf.在日志中我可以看到服务器发送了响应

Object result = getRestTemplate().postForObject(urlString,formDataHttpEntity,returnClassObject,parametersMapStringString);

我得到以下JUnit错误

org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter found for response type
[java.lang.Object] and content type [application/pdf]

我需要做些什么来克服这个问题?我的最终目标是将其放在byte []中并将其推送到blob类型的DB表字段中

注意:我从服务器获得以下响应头

HTTP/1.1 200 OK Cache-Control: max-age=0,must-revalidate
Content-Disposition: attachment; filename=”Executive Summary.PDF”
Content-Type: application/pdf

最佳答案
谢谢托马斯的工作.

我将ByteArrayHttpMessageConverter添加到RestTemplate并且它有效.

添加代码

ByteArrayHttpMessageConverter byteArrayHttpMessageConverter = new ByteArrayHttpMessageConverter();

List
原文链接:https://www.f2er.com/spring/432693.html

猜你在找的Spring相关文章