springboot项目根据id下载下载相对应的文件

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

springboot项目根据id下载下载相对应的文件最先出现在Python成神之路

版权声明:
作者:倾城
链接:https://www.techfm.club/p/18511.html
来源:TechFM
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>