Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type ‘text/plain;chars

天行健,君子以自强不息;地势坤,君子以厚德载物。


每个人都有惰性,但不断学习是好好生活的根本,共勉!


文章均为学习整理笔记,分享记录为主,如有错误请指正,共同学习进步。

Bug笔记0007

  • 描述
  • 报错
  • 分析
  • 解决

描述

使用postman请求接口新增数据到mysql数据库时postman报错
但IDEA控制台并未报错,只有一个WARNING

报错

{
    "timestamp": "2023-08-27T12:47:40.357+00:00",
    "status": 415,
    "error": "Unsupported Media Type",
    "path": "/user/register"
}

postman界面
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type ‘text/plain;chars_第1张图片
控制台输出内容

2023-08-27 20:47:40.357  WARN 22100 --- [nio-8888-exec-3] .w.s.m.s.DefaultHandlerExceptionResolver : Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'text/plain;charset=UTF-8' not supported]

在这里插入图片描述

分析

请求的内容为文本,不支持,所以是提交的对象格式有问题

解决

我们可以看到postman中我们选择的是text格式,改为JSON格式即可
在这里插入图片描述


你可能感兴趣的:(BaseAndView,java,BUG)