postman传递list参数给Springboot的controller

post在raw中选择,传递json格式的数据,数据格式,如下:

[
        {
            "tagName": "Bill"
        },
        {
            "tagName": "George"
        },
        {
            "tagName": "Thomas"
        }
]

Springboot的controller接收的代码如下:

    public Object addTag(@RequestBody List tags){
        return tagService.batchAddTag(tags);
    }

@RequestBody
这个是重点


你可能感兴趣的:(springboot)