postman发送json参数到后端controller报错415的解决方案

Posted zxCoder

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了postman发送json参数到后端controller报错415的解决方案相关的知识,希望对你有一定的参考价值。

警告 [http-nio-8080-exec-9] org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.logException Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type \'application/json;charset=UTF-8\' not supported]

大概出现了这样的问题,前端用ajax可以正常post,但是如果用postman,只能用表单数据发送,如果用json,后端controller收到的永远是null。
@RequestBody 和 @RequestParam都试过了。

原因应该是缺少json解析的依赖包,所以maven里加入jackson json的三个包即可。

以上是关于postman发送json参数到后端controller报错415的解决方案的主要内容,如果未能解决你的问题,请参考以下文章

前端发送数据到后端

Postman同时发送多个对象+文件到Controller的实现方法

将 JSON 请求循环到后端(REST API)

Postman测试工具调试接口详细教程向后端发送Json数据并接收返回的Json结果

postman怎么发送json参数

postman怎么发送加密请求