我正在使用SpringBootApplication
我使用org.springframework.core.io.ClassPathResource
从项目类路径获取文件,如下所示
File file = new ClassPathResource("File1").getFile();
我的文件位于资源文件夹
这在Spring STS中运行良好。 当我将项目导出为WAR并将其部署到TOMCAT容器中时,我得到 IO Exception (项目文件夹结构在导出到WAR时会发生变化)。
这个问题的解决方法是什么?