在立即restTemplate postForObject调用之后,关于声纳的警告始终会评估为false

时间:2018-12-27 15:55:27

标签: java sonarqube resttemplate lint

示例代码:

      Info info = restTemplate.postForObject(connectionString, requestEntity, 
         Info.class);

      if (info == null) {
         throw new ApplicationException(Constants.NO_RESULT_ERROR_CODE);
      }

问题:为什么声纳会向我发出警告(“更改此问题,以便它不会始终评估为“ false”。)。我已经证明if (info == null)在requestEntity进行评估时评估为true不包含在数据库中找到的有效负载。那么如何摆脱这种误报?

0 个答案:

没有答案