SpringCloud采坑总结(持续更新)

2019/04/18

简介

此篇主要介绍在平常工作中的有关SpringCloud遇到的问题

问题

RestTemplate 相关问题

问题 : no suitable HttpMessageConverter found for response type [class java.lang.Object] and content type [application/json;charset=UTF-8]

img

原因 : MediaType类型不支持

参考连接 :

解决 : 配置下封装参数

RestTemplateConfig.java

 <dependency>
    <groupId>org.apache.httpcomponents</groupId>
    <artifactId>httpclient</artifactId>
    <version>4.5.6</version>
</dependency>
  <!--web-->
<dependency>
    <groupId>org.springframework</groupId>
    <artifactId>spring-web</artifactId>
    <version>5.0.4.RELEASE</version>
    <scope>compile</scope>
</dependency>

(本篇博文完结;中文字数一共:684字,英文字数一共:74 字)


扫扫加关注公众号 让我们一起学习一起成长

(转载本站文章请注明作者和出处 IT超仔

Post Directory