欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

springboot项目打成jar包后无法获取static下的静态资源文件的问题分析

程序员文章站 2022-04-28 09:24:59
...

Springboot项目打成jar包后无法获取static下的静态资源文件的问题分析

springboot 后端项目 做某个功能时 需要读取根目录下的.doc文件,具体项目中路径如下

开始是通过绝对路径读取文档,在本地没有任何问题。
但是 讲项目打成jar包 部署到测试环境发现无论怎样都读取不到,然后在本地运行jar包出现同样的情况。

捕获异常:java.io.FileNotFoundException

[[email protected]]
java.io.FileNotFoundException: class path resource [static/.doc] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/D:///target/-0.0.1-SNAPSHOT.jar!/BOOT-INF/classes!/static/***.doc

原因:
此时运行中的Java程序其实是在读取jar包中的文件,直接使用下面的方式是不行的:

常见的获取路径写法:
//例子 比如文件路径 src\main\resources\static\***.doc
String path = this.getClass().getClassLoader().getResource("").getPath()+"/static/***.doc";
File file = new File(path);

在java中,如果应用打成jar包后,应用运行后需要读取本jar包之内的文件,更换写法:

通过类加载器的getResourceAsStream方法,让jar读取到自己的资源文件
InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("static/***.doc");

例如:

public static File getFile(String filePath, String... ops) {
        File file;
        if (filePath.startsWith("classpath:")) {
            InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(filePath.substring("classpath:".length()));
            try {
                if (ops != null && ops.length >= 2) {
                    file = File.createTempFile(ops[0], ops[1]);
                } else {
                    file = File.createTempFile("temp", ".classfile");
                }
                org.apache.commons.io.FileUtils.copyInputStreamToFile(is, file);
            } catch (IOException e) {
                file = null;
                log.error("获取类路径文件发生IO异常!");
            } finally {
                IOUtils.closeQuietly(is);
            }
        } else {
            file = new File(filePath);
        }
        return file;
    }
相关标签: spring boot