SpringBoot导出excel数据报错Could not find acceptable representation

今天在实现后台导出数据时,导出数据一直报错:

 

org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representation

 

在导出excel数据时,返回的数据时文件流的格式,写入到response.getOutputStream()中的,返回的数据前端下载是没有问题的,但是后端就是有报错,最后在仔细检查才发现,是因为我在Controller类上使用了注解@RestController,该注解会把该Controller下所有的请求返回的数据格式化为json,但是数据导出返回的格式是文件流,所以这里就报错了。最后吧@RestController换回@Controller就好了,还得给该Controller下所有的请求,需要将结果转化为json的请求,加上@ResponseBody注解,注明返回结果需要格式化为json格式;

SpringBoot导出excel数据报错Could not find acceptable representation_第1张图片

你可能感兴趣的:(SpringBoot导出excel数据报错Could not find acceptable representation)