错Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No conve
时间: 2023-10-03 15:09:37 浏览: 241
错误 "Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class com.cy.pj.common.vo.JsonResult]" 是由于返回值类型没有找到合适的转换器导致的。另外,错误信息中提到了"No converter for [class org.springframework.data.domain.PageImpl] with preset Content-Type 'null'",这是因为没有为PageImpl类型的对象找到合适的转换器。
要解决这个问题,可以尝试以下方法:
1. 确保你的控制器方法上使用了正确的produces属性,并指定了正确的媒体类型。
2. 检查你的代码是否正确配置了相应的转换器,确保转换器能够正确地将返回值转换为期望的响应类型。
3. 如果你使用的是自定义的返回类型,确保你已经正确配置了自定义的转换器。
4. 检查你的依赖库是否正确引入,并且版本匹配。
如果以上方法都没有解决问题,可以考虑查看Spring框架的官方文档或寻求相关社区的帮助来获取更详细的解决方案。
: org.springframework.http.converter.HttpMessageNotWritableException: No converter found for return value of type: class com.cy.pj.common.vo.JsonResult
: org.springframework.http.converter.HttpMessageNotWritableException: No converter for [class org.springframework.data.domain.PageImpl] with preset Content-Type 'null'
: @RequestMapping(value = "/administrator", produces = "application/json;charset=UTF-8")<span class="em">1</span><span class="em">2</span><span class="em">3</span>
#### 引用[.reference_title]
- *1* [关于解决错误Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No ...](https://blog.csdn.net/weixin_44957065/article/details/114979031)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
- *2* *3* [报错Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No conve](https://blog.csdn.net/weixin_43263994/article/details/123005978)[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^v93^chatsearchT3_2"}}] [.reference_item style="max-width: 50%"]
[ .reference_list ]
阅读全文