如何使用RestTemplate在Web门户内使用PDF报告?

时间:2019-07-27 12:55:38

标签: spring rest spring-boot web-services resttemplate

得到以下异常:

  

RestClientException:无法提取响应:不适合   找到响应类型为[接口java.util.Map]的HttpMessageConverter   和内容类型[application / pdf] RestClientException:   org.springframework.web.client.RestClientException:无法提取   响应:没有找到合适的HttpMessageConverter作为响应类型   [接口java.util.Map]和内容类型[application / pdf]

我正尝试使用restTemplate方法将PDF报告从其余应用程序转换为Web门户应用程序:

Map<String, Object> 
abcReport=restTemplate.getForObject(url,Map.class,....);

注意:URL在其他rest应用程序中包含pdf报告,我希望在web-portal应用程序中使用相同的报告。

我想要与Web应用程序中的其余应用程序相同的pdf报告。

0 个答案:

没有答案