소스 검색

获取天气业务,增加日志

tags/v1.2.0^2
wanjing 1 년 전
부모
커밋
eb3ae37a6c
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. +5
    -0
      tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/ThInspectionServiceImpl.java

+ 5
- 0
tuoheng-admin/src/main/java/com/tuoheng/admin/service/impl/ThInspectionServiceImpl.java 파일 보기

@@ -222,11 +222,16 @@ public class ThInspectionServiceImpl extends BaseServiceImpl<ThInspectionMapper,

@Override
public AirWeatherVO getWeather(Integer airportId) throws ServiceException {
log.info("获取天气信息信息");
Tenant tenant = tenantMapper.selectById(ShiroUtils.getTenantId());
//这边需要配置到yml文件里面
String url = tenant.getAirportUrl() + "/api/airportInterface/getWeather";
String param = "airportId=" + airportId;
log.info("获取天气信息信息,调用机场接口");
log.info("获取天气信息信息,url={}", url);
log.info("获取天气信息信息,param={}", param);
String weatherStr = HttpUtils.sendGet(url, param);
log.info("获取天气信息信息,调用机场接口结束,weatherStr={}", weatherStr);
JsonResult jsonResult;
try {
jsonResult = JacksonUtil.json2pojo(weatherStr, JsonResult.class);

Loading…
취소
저장