feign调用出现:org.springframework.web.client.RestClientException: Could not extract response:

2019年5月23日

问题描述:使用feign去调用自己的服务的时候出现

前端错误如下:

feign调用出现:org.springframework.web.client.RestClientException: Could not extract response:_第1张图片

后端错误如下:

feign调用出现:org.springframework.web.client.RestClientException: Could not extract response:_第2张图片

org.springframework.web.client.RestClientException: Could not extract response: no suitable HttpMessageConverter found for response type [class java.lang.Object] and content type [text/plain;charset=UTF-8]

改正如下:

服务的生产者的返回值是一个字符串,服务的调用者无法用解析这个字符串。生产者返回一个object,消费者就可以解析了。
feign调用出现:org.springframework.web.client.RestClientException: Could not extract response:_第3张图片

你可能感兴趣的:(springboot)