编辑
2024-07-01
学习记录
00
请注意,本文编写于 276 天前,最后修改于 276 天前,其中某些信息可能已经过时。

目录

前提
操作

前提

将文件流写入HttpServerResponse,knife4j不能正常的下载文件,只会把文件信息显示出来

操作

Controller层在对应的接口增加knife4j配置

在@ApiOperation注解中加上produces = “application/octet-stream”

java
@GetMapping("/getWord") @ApiOperation(value = "获取word文件",produces = "application/octet-stream" ) @Permission(rule = PermissionRule.Login) public void getWord(HttpServerResponse res) { taskService.getWord(res); }

本文作者:Weee

本文链接:

版权声明:本博客所有文章除特别声明外,均采用 BY-NC-SA 许可协议。转载请注明出处!