我正在使用Resttemplate从我的一个应用程序中调用一个URL。当我将其部署在服务器中时,我得到:
Could not extract response: no suitable HttpMessageConverter found for response type [class com.package.CustomClass] and content type [text/html;charset=UTF-8]
但这在我的本地公司可行,有什么问题吗?
这是如何调用
CustomClass customClass = restTemplate.getForEntity(URI.create(url), CustomClass.class).getBody();
有什么想法吗?