springboot项目根据id下载下载相对应的文件
需求:根据前端传递的id查询数据库中相对于的文件路径,根据相对应路径将文件下载下来
注:下列代码中的注1、注2、注3、注4、注5代表需要更换的内容后可直接使用
@RequestMapping(value = "/download", method = RequestMethod.GET)
public ResponseEntity
throws Exception {
PlywoodInfo f = service.download(id); //注1
if(f==null){
return fail("文件不存在!");
}else{ //f.getPlywoodPath()为数据库中查到的文件路径 eg:D:/test
共有 0 条评论