could not extract response: no suitable HttpMessageConverter found for response type
时间: 2023-11-16 10:59:52 浏览: 118
详解 问题:HttpServlet cannot be resolved to a type
"Could not extract response: no suitable HttpMessageConverter found for response type"是一个常见的异常情况,通常出现在使用Spring框架进行RESTful API调用时。这个异常的原因是因为Spring无法找到合适的HttpMessageConverter来将响应内容转换为Java对象。解决这个问题的方法是在代码中显式地指定响应的数据类型,或者添加合适的HttpMessageConverter。
阅读全文