Maven
curl
忽略https证书校验
增加参数-k或者–insecure
curl -k https://domain/path
curl --insecure https://domain/path
统计http调用时长
curl -o /dev/null -s -w "time_connect: %{time_connect}\ntime_starttransfer: %{time_starttransfer}\ntime_total: %{time_total}\n" "http://domain/path"
domain换成真实域名,path换成真实路径。
wget
忽略https证书校验
增加参数–no-check-certificate
wget 'https://domain/path' --no-check-certificate