1.对url进行规范,写RESTful风格的url
非REST的url:
https://xxx/queryProduct.action?pid=111&pType=0
规范后:
https://xxx/queryProduct/111
特点:更简洁,参数通过路径传递。
2.HTTP方法规范
不管是增删改查,路径是不变的。
3.HTTP contentType规范
请求时设置contentType。
总而言之
看Url就知道要什么
看http method就知道干什么
看http status code就知道结果如何