小编给大家分享一下如何解决springboot项目找不到resources目录下的资源问题,希望大家阅读完这篇文章之后都有所收获,下面让我们一起去探讨吧!
将老的mvc项目转为boot后找不到resources文件夹下的资源文件
war包采用的是tomcat部署,tomcat会对war包进行解压,以及目录的一些操作。而springboot使用jar包部署,服务器中是不存在相关目录的。
springboot 2.2.2RELAESE
ClassPathResource classPathResource = new ClassPathResource(filePath);
InputStream inputStream = classPathResource.getInputStream();
import java.io.File;
import java.io.InputStream;
import org.apache.commons.io.FileUtils;
import org.apache.commons.io.IOUtils;
import org.springframework.core.io.ClassPathResource;
public class FileUtil {
public File getResourceFile(String filePath) throws Exception{
try {
ClassPathResource classPathResource = new ClassPathResource(filePath);
InputStream inputStream = classPathResource.getInputStream();
//生成目标文件
File somethingFile = File.createTempFile("DailyReportTemplate", ".xls");
try {
FileUtils.copyInputStreamToFile(inputStream, somethingFile);
} finally {
IOUtils.closeQuietly(inputStream);
}
return somethingFile;
} catch (Exception e) {
throw new Exception(e);
}
}
}
在idea中运行,一切正常,资源文件都可以访问到,但打成jar包后,使用java -jar的形式去启动,就访问不到resource下的资源文件了
网上搜了很多文章,但试了后都不好使
我的路径是配置在properties文件中,然后读取配置文件中的值,然后拼接文件路径,再使用ClassPathResource去读取的
开始时我配置文件中是这样写的:
#路径中注意首尾不要有空格
service.config-root=static/service/
service.config-name=AppConfig.json
程序代码读出后拼接:
@Value("${service.config-root}")
private String configRoot;
@Value("${service.config-name}")
private String configName;
.....省略无关code.....
public String getPath(){
String configPath = this.configRoot + this.configName;
return configPath;
}
但运行jar后,直接FileNotFoundException了
主要是斜杠"\"和反斜杠"/"的问题,配置文件修改如下:
#路径中注意首尾不要有空格
service.config-root=static\\tileservice\\
service.config-name=AppConfig.json
使用"File.spearator"拼接路径
service.config-root=static
service.config-name=AppConfig.json
@Value("${service.config-root}")
private String configRoot;
@Value("${service.config-name}")
private String configName;
.....省略无关code.....
public static <T> T readJsonFromClassPath(Type type) throws IOException {
//这里使用File.spearator拼接
ClassPathResource resource = new ClassPathResource(this.configRoot + File.spearator + this.configName);
if (resource.exists()) {
return JSON.parseObject(resource.getInputStream(), StandardCharsets.UTF_8, type, .....
}
}
看完了这篇文章,相信你对“如何解决springboot项目找不到resources目录下的资源问题”有了一定的了解,如果想了解更多相关知识,欢迎关注亿速云行业资讯频道,感谢各位的阅读!
亿速云「云服务器」,即开即用、新一代英特尔至强铂金CPU、三副本存储NVMe SSD云盘,价格低至29元/月。点击查看>>
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。