post请求,参数是RequestBody形式接收时:
curl -H “Content-Type:application/json” -X POST --data ‘{“aaa”:“bbb”}’ http://127.0.0.1:8089/test
post请求,参数是RequestParam形式接收时:
curl -H “Content-Type:application/x-www-form-urlencoded” -X POST --data “startTime=2019022815&endTime=2019022816” http://localhost:8081