如何获取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();
总结
以上为个人经验,希望能给大家一个参考,也希望大家多多支持脚本之家。
相关文章
使用Spring Boot+MyBatis框架做查询操作的示例代码
这篇文章主要介绍了使用Spring Boot+MyBatis框架做查询操作的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-10-10Spring mvc整合mybatis(crud+分页插件)操作mysql
这篇文章主要介绍了Spring mvc整合mybatis(crud+分页插件)操作mysql的步骤详解,需要的朋友可以参考下2017-04-04Java文件处理之使用itextpdf实现excel转pdf
在文件处理中,经常有文件类型转换的使用场景,本文主要介绍了如何使用poi以及itextpdf完成excel转pdf的操作,需要的小伙伴可以参考一下2024-02-02
最新评论