标签: resttemplate
rest模板调用服务,该服务返回Html响应,因此我的应用程序中断了。
CustomClass customClass = restTemplate.getForEntity(URI.create(url), CustomClass.class).getBody();
我通过添加消息转换器解决了它。但是,现在我需要测试此更改,我如何模拟resttemplate来给出任何其他响应类型并仍然看到修复程序?
预先感谢