1、使用postman测试restful接口
问题:使用postman测试接口rest/artcile
的时候出现了内容类型不支持的问题,
请求体:
{
"id": 1,
"author": "zimug",
"title": "spring boot",
"content": "c",
"createTime": "",
"reader":[{"name":"zimug","age":18},{"name":"kobe","age":37}]
}
问题如下:
解决:添加header,设置ContentType为application/json
来源:CSDN
作者:jeT5devil
链接:https://blog.csdn.net/weixin_41288824/article/details/103843490