SpringMVC返回JSON对象遇到的错误

SPringMVC返回JSON对象遇到报错:org.springframework.web.servlet.handler.AbstractHandlerExceptionResolver.logException Resolved [org.springframework.http.converter.HttpMessageNotWritableException: No converter for [class java.util.ArrayList] with preset Content-Type 'null']

错误代码

  @RequestMapping(value = "/test" , produces = {"text/html" , "application/json"})

改正后

  @RequestMapping(value = "/test" , produces = {MediaType.APPLICATION_JSON_VALUE})

错误原因

SpringMVC在解析返回对象的时候produces属性的text/html和application/json有冲突,也有可能是没有添加jackson相关依赖。

posted @ 2023-03-20 11:13  月火4526  阅读(168)  评论(0编辑  收藏  举报