java.io.FileNotFoundException: c

2020-03-26  本文已影响0人  天道酬勤_ST

问题描述

通过Spring的ClassPathResource获取文件的时候,在idea上能正常运行,使用maven打包成jar文件后,报出以上异常。


File file = new ClassPathResource(filePath).getFile();

具体解释参看
classpath-resource-not-found-when-running-as-jar

解决方法
使用resource.getInputStream()替代以上方法。

上一篇 下一篇

猜你喜欢

热点阅读