栏目分类:
子分类:
返回
名师互学网用户登录
快速导航关闭
当前搜索
当前分类
子分类
实用工具
热门搜索
名师互学网 > IT > 软件开发 > 后端开发 > Java

解决SpringBoot打成jar运行后无法读取resources里的文件问题

Java 更新时间: 发布时间: IT归档 最新发布 模块sitemap 名妆网 法律咨询 聚返吧 英语巴士网 伯小乐 网商动力

解决SpringBoot打成jar运行后无法读取resources里的文件问题

开发一个word替换功能时,因替换其中的内容功能需要 word 模版,就把 word_replace_tpl.docx 模版文件放到 resources 下

在开发环境中通过下面方法能读取word_replace_tpl.docx文件,但是打成jar包在 linux下运行后无法找到文件了

File file = ResourceUtils.getFile(ResourceUtils.CLASSPATH_URL_PREFIX + "static/office_template/xxx.docx");

在开发环境运行时,会把资源文件编译到 项目targetclassesstaticoffice_templatexxx.docx 目录下,但是打包成jar后,

Resource下的文件是存在于jar这个文件里面,在磁盘上是没有真实路径存在的,它是位于jar内部的一个路径。所以通过ResourceUtils.getFile或者this.getClass().getResource("")方法无法正确获取文件。

我们用压缩软件打开 jar 文件,看看该word模版位于jar内部的路径在这里插入图片描述

怎么解决

1.把该模版文件放到jar项目外,在项目中配置该模版文件的绝对路径,不太推荐这种方式,可能会忘记配置模版

2.通过 ClassPathResource resource = new ClassPathResource(“static/office_template/word_replace_tpl.docx”);方式读取

用第二种方式读取jar中的文件流

ClassPathResource resource = new ClassPathResource("static/office_template/word_replace_tpl.docx");
File sourceFile = resource.getFile();
InputStream fis = resource.getInputStream();

还要在项目pom.xml中配置resources情况


 
 
 
 src/main/java
 
 ***.xml
 ***.*
 
 
 false
 
 
 

再次发布项目,访问功能,测试后已经在服务器上能读取模版文件并生成出新文件了

补充知识:两个list高效取出其中新增和相同的数

两个list循环,尽量避免双层循环以及contains的使用

public static void test(){
    List oldList = new ArrayList(){{add(1);add(2);add(4);add(5);}};
    List newList = new ArrayList(){{add(3);add(4);add(5);add(6);}};
    Map map = new HashMap<>();

    for (Integer i: oldList ) {
      map.put(i,0);
    }
    System.out.print(map);

    for (Integer j: newList ) {

      //value为1 ,更新的数据
      if (map.containsKey(j)){
 map.put(j,1);
      }else {
 //value为2 ,新增的数据
 map.put(j,2);
      }
    }
    System.out.println(map);
    for (Map.Entry entry: map.entrySet() ) {
      if(entry.getValue().equals(0)){
 System.out.println("旧的值:"+entry.getKey());
      }
      if(entry.getValue().equals(1)){
 System.out.println("更新的值:"+entry.getKey());
      }
      if(entry.getValue().equals(3)){
 System.out.println("新增的值:"+entry.getKey());
      }
    }

    System.out.println(map);
  }

  public static void main(String[] arg){
    test();
  }

以上这篇解决SpringBoot打成jar运行后无法读取resources里的文件问题就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持考高分网。

转载请注明:文章转载自 www.mshxw.com
本文地址:https://www.mshxw.com/it/132532.html
我们一直用心在做
关于我们 文章归档 网站地图 联系我们

版权所有 (c)2021-2022 MSHXW.COM

ICP备案号:晋ICP备2021003244-6号