在Spring中解决ClassPathResource问题

时间:2017-04-03 09:57:13

标签: java spring spring-boot

我正在使用SpringBootApplication

我使用org.springframework.core.io.ClassPathResource从项目类路径获取文件,如下所示

File file = new ClassPathResource("File1").getFile();

我的文件位于资源文件夹

这在Spring STS中运行良好。 当我将项目导出为WAR并将其部署到TOMCAT容器中时,我得到 IO Exception (项目文件夹结构在导出到WAR时会发生变化)。

这个问题的解决方法是什么?

0 个答案:

没有答案