restTemplate和HttpUtil发送请求为什么耗时相差那么多

//用时100ms左右
 String post = HttpUtil.post("http://"+ip+":10091/api/flow/task/queryYB", param); 
//用时1.5s甚至最多8s
ResponseEntity<JSONObject> exchange = restTemplate.exchange("http://"+ip+":10091/api/flow/task/queryYB", HttpMethod.POST, httpEntity, JSONObject.class);


同样的连接同样的参数 在同一个springboot项目中 为什么会相差这么多 造成这种情况的原因有哪些 望各位网友给与指导

每次都这样,偶发的吧?