Spring: @ModelAttribute VS @RequestBody

后端 未结 7 485
闹比i
闹比i 2020-12-04 16:19

Please correct me if I am wrong. Both can be used for Data Binding.

The question is when to use @ModelAttribute?

@RequestMapping(val         


        
7条回答
  •  春和景丽
    2020-12-04 16:55

    @ModelAttribute is used for binding data from request param (in key value pairs),

    but @RequestBody is used for binding data from whole body of the request like POST,PUT.. request types which contains other format like json, xml.

提交回复
热议问题