减少数据资源接口调用超时日志输出
This commit is contained in:
parent
468c71b304
commit
c4dcb0c4cc
|
@ -9,6 +9,7 @@ import org.slf4j.LoggerFactory;
|
||||||
import org.springframework.http.HttpEntity;
|
import org.springframework.http.HttpEntity;
|
||||||
import org.springframework.http.HttpHeaders;
|
import org.springframework.http.HttpHeaders;
|
||||||
import org.springframework.http.MediaType;
|
import org.springframework.http.MediaType;
|
||||||
|
import org.springframework.web.client.ResourceAccessException;
|
||||||
import org.springframework.web.client.RestTemplate;
|
import org.springframework.web.client.RestTemplate;
|
||||||
|
|
||||||
import java.nio.charset.Charset;
|
import java.nio.charset.Charset;
|
||||||
|
@ -77,6 +78,9 @@ public class TsingtaoDataResourceService extends AbstractDataResourceService {
|
||||||
result.put("data", objects);
|
result.put("data", objects);
|
||||||
|
|
||||||
return result;
|
return result;
|
||||||
|
} catch (ResourceAccessException e) {
|
||||||
|
logger.error("青岛市资源数据接口连接超时!!!");
|
||||||
|
return null;
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
logger.error("青岛市资源数据调用失败!!!", e);
|
logger.error("青岛市资源数据调用失败!!!", e);
|
||||||
return null;
|
return null;
|
||||||
|
|
|
@ -11,6 +11,7 @@ import okhttp3.Request;
|
||||||
import okhttp3.Response;
|
import okhttp3.Response;
|
||||||
import org.slf4j.Logger;
|
import org.slf4j.Logger;
|
||||||
import org.slf4j.LoggerFactory;
|
import org.slf4j.LoggerFactory;
|
||||||
|
import org.springframework.web.client.ResourceAccessException;
|
||||||
|
|
||||||
import java.util.concurrent.TimeUnit;
|
import java.util.concurrent.TimeUnit;
|
||||||
|
|
||||||
|
@ -47,8 +48,12 @@ public class TsingtaoXHADataResourceService extends AbstractDataResourceService
|
||||||
} else {
|
} else {
|
||||||
logger.error("西海岸数据资源列表获取失败");
|
logger.error("西海岸数据资源列表获取失败");
|
||||||
}
|
}
|
||||||
} catch (Exception exception) {
|
} catch (ResourceAccessException e) {
|
||||||
logger.error("西海岸数据资源列表获取失败", exception);
|
logger.error("西海岸资源数据接口连接超时!!!");
|
||||||
|
return null;
|
||||||
|
} catch (Exception e) {
|
||||||
|
logger.error("西海岸资源数据调用失败!!!", e);
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue