|
@@ -49,17 +49,22 @@ public class WeatherServiceImpl {
|
|
|
JSONObject resultObj = JSONObject.parseObject(result, JSONObject.class);
|
|
|
|
|
|
if (!resultObj.getString("result").equalsIgnoreCase(SUCCESS)) {
|
|
|
- log.error("查询小时天气历史数据返回结果:{}", result);
|
|
|
+ log.error("查询室外小时天气历史数据返回结果:{}", result);
|
|
|
/*// todo 由于在没有数据情况下接口返回也是失败,但是其实是成功,所以不抛异常
|
|
|
if (null != resultObj.get("reason")) {
|
|
|
throw new Exception("查询小时天气历史数据请求返回失败");
|
|
|
}*/
|
|
|
- throw new Exception("查询小时天气历史数据请求返回失败");
|
|
|
+ return new ArrayList<>();
|
|
|
+ // throw new Exception("查询小时天气历史数据请求返回失败");
|
|
|
}
|
|
|
List<JSONObject> jsonObjectList = JSON.parseArray(JSON.toJSONString(resultObj.get("content")), JSONObject.class);
|
|
|
if (!CollectionUtils.isEmpty(jsonObjectList)){
|
|
|
List<WeatherDTO> weatherDTOList = new ArrayList<>();
|
|
|
for (JSONObject obj:jsonObjectList) {
|
|
|
+ //温湿度 任意为空 跳过
|
|
|
+ if (null == obj.getDouble("temperature") || null == obj.getDouble("humidity")){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
WeatherDTO dto = new WeatherDTO();
|
|
|
dto.setHourTime(obj.getDate("hourTime"));
|
|
|
dto.setTemperature(obj.getDouble("temperature"));
|
|
@@ -69,7 +74,7 @@ public class WeatherServiceImpl {
|
|
|
return weatherDTOList;
|
|
|
}
|
|
|
} catch (Exception e) {
|
|
|
- log.error("---------出错了---------");
|
|
|
+ log.error("---------获取室外小时天气历史数据出错了---------");
|
|
|
log.error("出错的请求路径是:{}", requestUrl);
|
|
|
log.error("出错的请求参数是:{}", JSON.toJSONString(paramMap));
|
|
|
// 重试
|