简介
此篇主要介绍在平常工作中的有关SpringCloud遇到的问题
问题
RestTemplate 相关问题
问题 : no suitable HttpMessageConverter found for response type [class java.lang.Object] and content type [application/json;charset=UTF-8]
原因 : MediaType类型不支持
参考连接 :无
解决 : 配置下封装参数
<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>