Java后端excel文件导出接口

Java后端excel文件导出接口,第1张

记录自己遇到的问题,虽然还不清楚具体原因,但找到了暂时的应对之法。

@PostMapping(value = {"/downloadFile"})
@ApiOperation(value = "导出", notes = "导出", produces = "application/octet-stream")
public String downloadFile(HttpServletResponse response, @RequestParam(value = "heDeptName", required = false) String heDeptName, @RequestParam(value = "ids", required = false) long[] ids) {
    try {
        String result = this.getService().downloadFile(response, heDeptName, ids);
        this.logger.error(MessageFormat.format("导出结果:" + result, ""));
    } catch (Exception var4) {
        this.logger.error(MessageFormat.format("下载失败! {0}", var4.getMessage()));
    }
    return "成功";
}

最开始采用@RequestParam接收参数,不知道是否和HttpServletResponse有关,一直提示如下错误:

 无论怎么给heDeptNameids传参,后端都接收为null。

最后无奈另外写了一个传参实体类,将参数封装进去,改用@RequestBody后成功:

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/792587.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-05
下一篇 2022-05-05

发表评论

登录后才能评论

评论列表(0条)

保存