Could not read JSON: Can not deserialize instance of hello.Country[] out of START_OBJECT token

前端 未结 5 1137
攒了一身酷
攒了一身酷 2020-12-13 18:05

I have rest url that gives me all countries - http://api.geonames.org/countryInfoJSON?username=volodiaL.

I use RestTemplate from spring 3 to parse returned json into

5条回答
  •  粉色の甜心
    2020-12-13 18:11

    Another solution:

    public class CountryInfoResponse {
      private List geonames;
    }
    
    
    

    Usage of a generic Object-List solved my problem, as there were other Datatypes like Boolean too.

    提交回复
    热议问题