Could not extract response: no suitable HttpMessageConverter found for response type [class com.exam

本文解决了在使用Spring的RESTTemplate获取天气API数据时遇到的数据转换错误。原代码尝试直接将响应转换为WeatherData对象失败,通过先将响应转换为String,再使用ObjectMapper将String转换为WeatherData对象的方法成功解决问题。

报错信息:Could not extract response: no suitable HttpMessageConverter found for response type [class com.example.vo.WeatherData] and content type [application/octet-stream]

这是在用restTemplate获取uri返回数据,进行数据转换的时候报错的,原来的代码如下:

@Service
public class WeatherServiceImpl implements WeatherService{

    @Autowired
    RestTemplate restTemplate;
    
    String uri = "http://wthrcdn.etouch.cn/weather_mini?city=深圳";

    @Override
    public WeatherData getWeather() {
        ResponseEntity<WeatherData> weatherData = restTemplate.getForEntity(uri, WeatherData.class);
        return weatherData.getBody();
    }
}

这里无法直接转换为对象,需要先转为String,再转为自己所需对象,修改后的代码如下

@Service
public class WeatherServiceImpl implements WeatherService{

    @Autowired
    RestTemplate restTemplate;
    
    String uri = "http://wthrcdn.etouch.cn/weather_mini?city=深圳";

    @Override
    public WeatherData getWeather() {
        ResponseEntity<String> weatherData = restTemplate.getForEntity(uri, String.class);
        //使用ObjectMapper进行处理
        ObjectMapper mapper = new ObjectMapper();
        if(weatherData.getStatusCodeValue() == 200){
            String response = weatherData.getBody();
            WeatherData weatherData2 = null;
            try {
                weatherData2 = mapper.readValue(response, WeatherData.class);
            } catch (Exception e) {
                e.printStackTrace();
            } 
            return weatherData2;
        }
        return null;
    }
}

修改这样,运行后,请求成功

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值