当前位置: 首页 > 知识库问答 >
问题:

使用可执行Jar时未找到Spring-Boot资源

戴建义
2023-03-14

我再次面临一个奇怪的问题,希望这里有人能帮助我。

模块的Pom如下所示:

<project>
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>at.company.bbsng</groupId>
        <artifactId>bbsng-import</artifactId>
        <version>0.1.0-SNAPSHOT</version>
    </parent>

    <artifactId>bbsng-import-backend</artifactId>
    <name>bbsng-import-backend</name>

    <properties>
        <start-class>at.company.bbsng.dataimport.Application</start-class>
    </properties>


    <dependencies>

        <!-- SPRING ... -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-batch</artifactId>
            <!-- EXCLUDE LOGBACK AND USE LOG4J -->
            <exclusions>
                <exclusion>
                    <artifactId>spring-boot-starter-logging</artifactId>
                    <groupId>org.springframework.boot</groupId>
                </exclusion>
            </exclusions>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-log4j</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <!-- COMMONS ... -->

        ...

    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

</project>

CSV路径-文件在propery files中配置如下:

# EXAMPLE PATH
csv.path=config/csv/

java配置文件的部分如下:

  ...

  @Value("${csv.path}")
  private String csvExamplePath;

  @Bean
  public Resource addressResource() {
    return new ClassPathResource(csvExamplePath + CSV_ADDRESS);
  }

    ...
\config\csv\
Caused by: java.io.FileNotFoundException: class path resource [config/csv/Company.csv] cannot be resolved to absolute file path because it does not reside in th
e file system: jar:file:/C:/Development/Projekte/bbsng/trunk/import/backend/target/bbsng-import-backend-0.1.0-SNAPSHOT.jar!/config/csv/Company.csv
        at org.springframework.util.ResourceUtils.getFile(ResourceUtils.java:207)
        at org.springframework.core.io.AbstractFileResolvingResource.getFile(AbstractFileResolvingResource.java:52)
        at at.compax.bbsng.dataimport.app.source.company.CompanyGenerator.init(CompanyGenerator.java:28)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.springframework.beans.factory.annotation.InitDestroyAnnotationBeanPostProcessor$LifecycleElement.invoke(InitDestroyAnnotationBeanPostProcessor.java

共有1个答案

韩梓
2023-03-14

好吧,我已经找到真正的问题和解决办法了。

首先,应用程序使用csv文件的正确路径,但在使用可执行jar时还有另一个问题,我在下面的链接中找到了这个问题。StackOverflow-链接

在发布可执行jar之前,我使用了以下获取CSV-File的解决方案(问题是getFile()):

final List<String> resourceLines = FileReadUtils.readLines(specialisationResource.getFile());
for (final String line : resourceLines) {
  data.add(getNewTransientSpecialisation(line));
}
final InputStream inputStream = specialisationResource.getInputStream();
final BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));

String line;
while ((line = bufferedReader.readLine()) != null) {
    data.add(getNewTransientSpecialisation(line));
}
final List<String> resourceLines = IOUtils.readLines(specialisationResource.getInputStream());
for (final String line : resourceLines) {
    data.add(getNewTransientSpecialisation(line));
}

所以请记住,不要使用File()获取资源,始终使用stream从一开始就避免了这个问题:-)

希望能帮到别人。

 类似资料:
  • 为了在我的spring-boot应用程序中启用https,我执行了以下操作。 如果我使用mvn spring-boot:run运行它,它会像预期的那样工作。 但是当我使用带有的可执行jar运行时,我得到了FileNotFoundException。

  • 提前道谢。 更新:在另一台机器上尝试相同的jar后,问题会改变。现在,我可以确认这些图像不是可执行的“胖”jar的一部分,因为这些图像不会出现在网页上。更进一步说,“webapp”下的文件没有一个打包在jar中。我已经把spring-boot-maven-plugin插件放在pom中,并使用“mvn package”来创建JAR。在我的src项目中,webapp在src/main之下(与java和

  • 我正在开发一个应用程序,并在Maven中使用spring boot。我想生成一个可执行jar,但是jar不是在目标文件夹中生成的。我在做mvn清洁包装。这是我的pom文件。

  • 我使用的是NetBeans IDE 8.2。这是我正在使用的代码: 加载到cats阵列中的图像位于名为“img”的src文件夹中,编号为1-6。当我从NetBeans IDE运行程序时,它运行得非常完美;然而,当我试图在构建项目后创建的dist文件夹中执行JAR文件时,它根本不会运行。当我尝试使用命令行运行它时,我得到以下结果: 我假设问题是JAR文件无法访问图像文件,但我不知道如何修复它。如何将

  • 我目前正在阅读Spring Boot的教程页(https://Spring.io/guides/gs/uploading-files/#initial),以便检查如何上传映像文件,但我不太理解“运行应用程序”一章的“构建可执行JAR”部分。 我通过教程页面上的链接下载了该项目,并复制和粘贴了所有文件,我在命令提示符上编写了,就像在构建页面中编写的可执行JAR部分一样,但我无法运行该程序。 为了更具

  • 我尝试从Windows 8命令行使用maven插件,但失败了: java.lang.ClassNotFoundException:com.sun.mirror.apt.AnnotationProcessorFactory 我知道这表明Maven在我的JDK中找不到tools.jar,但是我不知道如何添加这个(当然JDK已经安装了)。 以下是有关我的配置的一些详细信息: 所以我也尝试在我的pom.x