2022
03-01
03-01
解决springboot项目找不到resources目录下的资源问题
springboot项目找不到resources目录下的资源问题描述:将老的mvc项目转为boot后找不到resources文件夹下的资源文件原因:war包采用的是tomcat部署,tomcat会对war包进行解压,以及目录的一些操作。而springboot使用jar包部署,服务器中是不存在相关目录的。环境:springboot2.2.2RELAESE主要的API:ClassPathResourceclassPathResource=newClassPathResource(filePath);InputStreaminputStream=classPathResource.getInput...
继续阅读 >