我在 Spring 中为休息控制器创建的 feign 客户端存在问题,在这种方法中,我在 HttpServletResponse 上写了一个 csv 字符串,但是当我想测试 feign 实现时显示控制台错误。
feign.codec.DecodeException: Could not extract response: no suitable HttpMessageConverter found for response type [class java.lang.Void] and content type [text/csv;charset=UTF-8]
假装的实现是:
@GET
@Path("/{id}/report/download")
@Produces('text/csv')
@ApiOperation("Generate a report in csv format")
ResponseEntity<Void> downloadCsv(@PathParam("id") String id)
任何人都可以帮我解决这个问题吗?