Linux系统发送Http请求
- post请求无参
curl --location --request POST 'http://localhost:8080/testController/testtest'
- post请求并传递json串
curl -H "Content-type: application/json" -X POST -d '{"page":1,"perpage":20}' http://localhost:8080/test
- get请求
curl --location --request GET 'http://localhost:8080/testController/testtest'