ソースを参照

获取天气业务,增加日志

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);

読み込み中…
キャンセル
保存