我使用的是以下行來獲得使用Spring RestTemplate響應對象:春RestTemplate檢查鑄造響應對象之前響應狀態導致沒有合適的轉換器錯誤
final ResponseEntity<Object> genericErrorResponse = restTemplate
.postForEntity("urlvalue.com", request,
Object.class);
我的目標是檢查
if the response is 200: cast to Custom200ResponseModel
If response is 500: cast to CustomErrorModel
我收到以下錯誤:
org.springframework.web.client.RestClientException: Could not extract response:
no suitable HttpMessageConverter found for response type [class java.lang.Object] and content type [text/xml]
所有
我的MOD ELS對他們@XmlRootElement
- 我可以用
response.postForObject(...)
那麼,什麼是做到這一點的最簡單的方法,直接投?