springboot中为啥会出现resource下的static文件夹下新建文件夹显示不了?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了springboot中为啥会出现resource下的static文件夹下新建文件夹显示不了?相关的知识,希望对你有一定的参考价值。
使用idea新建的springboot项目下的static文件夹下新建文件夹为什么成为了static文件夹的后缀?
参考技术A 右键new然后选directory创建SpringBoot 项目打包后获取不到resource下资源的解决
SpringBoot 项目打包后获取不到resource下资源的解决
在项目中有几个文件需要下载,然后不想暴露真实路径,又没有CDN,便决定使用接口的方式来获取文件。最初的时候使用了传统的方法来获取文件路径,发现不行。查找资料后发现是SpringBoot框架导致的,得用另外的方法:
//听说在linux系统中会失效。
//不用听说了,就是会挂,血的教训
String path = ResourceUtils.getURL("classpath:").getPath();
//此方法返回读取文件字节的方式在linux系统中无异。
InputStream inputStream = getClass().getClassLoader().getResourceAsStream("RSA/privateKey.txt");
//声明io的resources对象也可访问
Resource resource = new ClassPathResource(uploadPath+privateKeyFileName);
// 此方法用来写文件或上传文件在本项目中指定路径。
String privateKeyFileStr = request.getSession().
getServletContext().getRealPath("RSA/privateKey.txt");
刚开始的时候用的就是第一种方法,初生牛犊不怕虎吧,说不定在linux上就行呢,本地环境测试通过,然后再上linux测试环境,不出意外,挂了。
//听说在linux系统中会失效。
//不用听说了,就是会挂,血的教训
String path = ResourceUtils.getURL("classpath:").getPath();
乖乖使用其他的方法,这里选择使用了第三种方法:
public byte[] downloadServerCrt() {
try {
Resource resource = new ClassPathResource("static/syslog/cert/server.crt");
byte[] bytes = readFileInBytesToString(resource);
return bytes;
} catch (Exception e) {
throw new Exception("下载失败" + e.getMessage());
}
}
这里还有一个坑,也是踩过了才知道,这边的resource是Resource
类型的变量,刚开始我使用了resource.getFile()
方法获取到File对象然后再采用IO流进行操作,即:
File file = resource.getFile();
DataInputStream isr = new DataInputStream(resource.getInputStream());
...
在IDE中运行是完全没有问题的,但使用mvn打包成jar包后,再运行就会提示ERROR:
java.io.FileNotFoundException: class path resource [static/syslog/cert/server.crt] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/home/admin/dtlog-web/lib/log-web-3.0.2.jar!/static/syslog/cert/server.crt
后来查阅了资料说:一旦打成jar包后,使用File
是访问不到资源的内容的,推荐使用getInputStream()
的方法,修改后:
InputStream in = resource.getInputStream();
DataInputStream isr = new DataInputStream(in);
...
测试没有问题,bug解决。
参考资料
Classpath resource not found when running as jar
以上是关于springboot中为啥会出现resource下的static文件夹下新建文件夹显示不了?的主要内容,如果未能解决你的问题,请参考以下文章
springboot-项目获取resources下文件的方法解决乱码