org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported
时间: 2023-11-04 20:39:51 浏览: 185
这个错误通常是由于请求头中的 Content-Type 不被服务端所支持导致的。如果服务端无法处理请求头中指定的 Content-Type,则会抛出此异常。解决这个问题的方法是,在客户端请求时,将 Content-Type 修改为服务端支持的格式,例如 application/x-www-form-urlencoded 或 multipart/form-data。如果客户端需要发送 JSON 格式的数据,则可以将 Content-Type 设置为 application/json,并在服务端添加相应的消息转换器,将 JSON 数据转换为 Java 对象。
相关问题
Resolved [org.springframework.web.HttpMediaTypeNotSupportedException: Content type 'application/json;charset=UTF-8' not supported
回答: 这个警告信息表示请求的内容类型 'application/json;charset=UTF-8' 不被支持。\[1\] 这可能是因为服务器没有配置相应的消息转换器来处理这个内容类型。解决这个问题的方法是配置正确的消息转换器,以支持请求的内容类型。\[2\] 另外,警告信息中还提到了一个 'HttpMessageNotWritableException' 异常,它表示返回值类型为 'java.lang.Boolean' 的对象没有找到相应的转换器。\[3\] 为了解决这个问题,你可以检查你的代码,确保返回值类型正确,并配置相应的转换器来处理它。
#### 引用[.reference_title]
- *1* *3* [HttpMediaTypeNotSupportedException: Content type ‘application/json;charset=UTF-8‘ not supported...](https://blog.csdn.net/ONEtype/article/details/130881572)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
- *2* [org.springframework.web.HttpMediaTypeNotSupportedException: Content type ‘application/json;charset...](https://blog.csdn.net/yyuggjggg/article/details/120607498)[target="_blank" data-report-click={"spm":"1018.2226.3001.9630","extra":{"utm_source":"vip_chatgpt_common_search_pc_result","utm_medium":"distribute.pc_search_result.none-task-cask-2~all~insert_cask~default-1-null.142^v91^insertT0,239^v3^insert_chatgpt"}} ] [.reference_item]
[ .reference_list ]
org.springframework.web.HttpMediaTypeNotSupportedException: Content type application/x-www-form-urlencoded;charset=UTF-8 not supported
这个错误通常是因为你的请求头中指定的 Content-Type 不被支持。常见的 Content-Type 包括 application/json、application/xml、application/x-www-form-urlencoded 等。可以尝试修改请求头中的 Content-Type 为被支持的类型,或者检查服务端是否支持当前请求的 Content-Type。具体处理方式需要根据具体情况进行调整。
阅读全文