【后端】SpringBoot - 文件上传MultipartFile.transferTo(dest)报FileNotFoundException

运行在保存文件 file.transferTo(dest) 报错
问题
dest 是相对路径,指向 upload/doc20170816162034_001.jpg
file.transferTo 方法调用时,判断如果是相对路径,则使用temp目录,为父目录
因此,实际保存位置为 C:\Users\xxxx\AppData\Local\Temp\tomcat.372873030384525225.8080\work\Tomcat\localhost\ROOT\upload\doc20170816162034_001.jpg

一则,位置不对,二则没有父目录存在,因此产生上述错误。

解决办法
transferTo 传入参数 定义为绝对路径

参考:
https://www.jianshu.com/p/d8666f2e698f
https://blog.csdn.net/dany_zj_cn/article/details/82019253

你可能感兴趣的:(【后端】SpringBoot - 文件上传MultipartFile.transferTo(dest)报FileNotFoundException)