gpt4 book ai didi

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

转载 作者:搜寻专家 更新时间:2023-10-31 08:10:56 24 4
gpt4 key购买 nike

我再次遇到一个奇怪的问题,希望这里有人能提供帮助。

我有一个 spring boot 后端模块,它在 eclipse 中运行良好,并且在 application.java 中启动 main 时可以执行应用程序。一切都很好。

我的应用程序使用 src/main/resources 文件夹中包含的 csv 文件将示例数据导入数据库。如前所述,在 Eclipse 中启动时一切正常。

现在我想将它作为可执行 jar 执行,应用程序开始启动然后启动失败,因为它找不到 csv 文件。它打印出的路径、它查找文件的位置是正确的,并且 csv 文件包含在包含的 jar 中。

模块的 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 文件的路径在属性文件中配置如下:

# EXAMPLE PATH
csv.path=config/csv/

java配置文件部分如下:

  ...

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

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

...

在 jar 中,文件位于路径

\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

同样,应用程序在从 eclipse 启动时按预期工作,只有可执行 jar 提示缺少 csv 文件,jar 中已经有了。

任何线索都会很棒。

最佳答案

好的,我已经找到了真正的问题和解决方案。

首先,应用程序使用了正确的 csv 文件路径,但是在使用我在以下链接中找到的可执行 jar 时存在另一个问题。 Stackoverflow-Link

在我遇到可执行 jar 问题之前,我使用了以下解决方案来获取 CSV 文件(问题是 getFile()):

final List<String> resourceLines = FileReadUtils.readLines(specialisationResource.getFile());
for (final String line : resourceLines) {
data.add(getNewTransientSpecialisation(line));
}

但是在可执行 jar 中我不能将我的资源用作文件,我需要将它用作流,请参阅上面提供的链接。所以我需要更改我的代码。如果您更喜欢使用 native java,您可以执行以下操作:

final InputStream inputStream = specialisationResource.getInputStream();
final BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(inputStream));

String line;
while ((line = bufferedReader.readLine()) != null) {
data.add(getNewTransientSpecialisation(line));
}

我更喜欢使用框架并使用 apache commons,如下所示:

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

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

希望对某人有所帮助。

关于java - 使用可执行 Jar 时找不到 Spring-Boot 资源,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26185137/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com