其他分享
首页 > 其他分享> > @RequestBody与@ModelAttribute

@RequestBody与@ModelAttribute

作者:互联网

@RequestBody用于接收json(application/json)格式的数据并转成java bean

{ "name":"菜鸟" , "url":"www.com" }

@ModelAttribute用于接收"x-www-form-urlencoded"格式的数据并转成java bean

?a=xx&b=xx&c=xx这种格式

标签:www,java,bean,RequestBody,xx,ModelAttribute,格式
来源: https://blog.csdn.net/qq_34626094/article/details/122117470