我正在尝试捕获我的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
最佳答案
原文链接:https://www.f2er.com/spring/432693.html