java

关注公众号 jb51net

关闭
首页 > 软件编程 > java > 获取springboot打成jar后的classpath

如何获取springboot打成jar后的classpath

作者:琴瑟裹腹

这篇文章主要介绍了如何获取springboot打成jar后的classpath问题,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教

获取springboot打成jar后的classpath

项目需要另一个子项目Utils的一个util工具类,在A项目的maven中加入了该子项目

<dependency>
            <groupId>com.supconit.data.algorithm.platform</groupId>
            <artifactId>data_algorithm_util</artifactId>
            <version>1.1.00.190408-SNAPSHOT</version>
</dependency>

但是该工具类的执行依赖一个conf文件,把子项目Utils打成jar包后,发布到linux平台上,发现无法读取该配置文件

报错如下:

java.io.FileNotFoundException: class path resource [fdfs_client.conf] cannot be resolved to absolute file path because it does not reside in the file system: jar:file:/home/data_algorithm/data_algorithm_executor-1.1.00.190408-SNAPSHOT.jar!/BOOT-INF/lib/data_algorithm_util-1.1.00.190408-SNAPSHOT.jar!/fdfs_client.conf

修改之前的代码

 String path  = new ClassPathResource("fdfs_client.conf").getFile().getAbsolutePath();
 ClientGlobal.init(path);

修改之后的代码

 ClassPathResource classPathResource = new ClassPathResource("fdfs_client.conf");
            //创建临时文件,将fdfs_client.conf的值赋值到临时文件中,创建这个临时文件的原因是springboot打成jar后无法获取classpath下文件
            String tempPath =System.getProperty("java.io.tmpdir") + System.currentTimeMillis()+".conf";
            File f = new File(tempPath);
            IOUtils.copy(classPathResource.getInputStream(),new FileOutputStream(f));
            ClientGlobal.init(f.getAbsolutePath());

发布之后,问题解决,原因是因为打包后Spring试图访问文件系统路径,但无法访问JAR中的路径,因此必须使用resource.getInputStream()。

springboot打成jar后获取classpath下文件异常解决

写了一个工具类,要读取classpath下的文件,使用

Resource resource = new ClassPathResource(filePath);
File file = resource.getFile();

在本地测试,没发现问题,但是将项目打包成jar包后运行,发现报错

Caused by: java.io.FileNotFoundException: class path resource [test.txt] cannot be resolved to absolute file path because it does not reside in the file system: j

原因

打包后Spring试图访问文件系统路径,但无法访问JAR中的路径。

解决

Resource resource = new ClassPathResource(filePath);
InputStream inputStream = resource.getInputStream();

总结

以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。

您可能感兴趣的文章:
阅读全文