我已经习惯了RestTemplate类来调用rest服务,我得到了以下异常。
org.springframework.web.client.RestClientException:无法写入请求:找不到合适的HttpMessageConverter请求类型[UmlerUpdateRequest]
以下是我尝试过的代码片段:
RestTemplate restTemplate = new RestTemplate();
UmlerUpdateRequest obj= new UmlerUpdateRequest();
obj.setTrnspEqpId(equipId);
obj.setLstMaintId(lesseeScac);
obj.setRecLseScac(userId);
obj.setTareWgt(tareWeight);
obj.setBldD(builtDate);
String returns = restTemplate.postForObject(url, obj, String.class);
有人可以帮我吗?