Post请求和Get请求;@RequestBody和@RequestParam

1.@RequestBody用于Post请求,接收json数据,例如:@RequestBody User user  例如:@RequestBody Map map 。不要用于Get请求。

2.@RequestParam用于Get请求,例如:@RequestParam  Map map,不能用于Post请求。

3.记住如果是Get请求要传一个对象时,千万别用@RequestParam  User user,接收不到的。直接User user这样接收就可以了。

posted @ 2019-02-22 13:48  梦中的鱼  阅读(9184)  评论(1编辑  收藏  举报