Postman post 请求415错误

第一次使用Postman 看到需要配置很多东西,但是不清楚哪些需要配置哪些不需要,只能依靠报错来找了

{
    "timestamp": 1536032587041,
    "status": 415,
    "error": "Unsupported Media Type",
    "exception": "org.springframework.web.HttpMediaTypeNotSupportedException",
    "message": "Content type 'text/plain;charset=UTF-8' not supported",
    "path": "/dubhe/。。。。。"
}

报错信息如上,缺少media类型
这是因为我们没有在请求的Headers里面增加Content-Type,只需要配置
Content-Type value: application/json; charset=utf-8 就可以了。

解决办法如上,就可以正常访问了~

你可能感兴趣的:(前端)