71

我正在开发一个 Spring Boot 应用程序。我需要在开始时解析一个 XML 文件 (countries.xml)。问题是我不知道把它放在哪里以便我可以访问它。我的文件夹结构是

ProjectDirectory/src/main/java
ProjectDirectory/src/main/resources/countries.xml

我的第一个想法是将它放在 src/main/resources 中,但是当我尝试创建文件(countries.xml)时,我得到了一个 NPE,并且堆栈跟踪显示我的文件在 ProjectDirectory 中查找(所以 src/main/resources/未添加)。我尝试创建文件(resources/countries.xml),路径看起来像 ProjectDirectory/resources/countries.xml(所以再次没有添加 src/main)。

我尝试添加这个没有结果

@Override
public void addResourceHandlers(final ResourceHandlerRegistry registry) {
    registry.addResourceHandler("/resources/**").addResourceLocations("/resources/");
    registry.setOrder(Ordered.HIGHEST_PRECEDENCE);
    super.addResourceHandlers(registry);
}

我知道我可以手动添加 src/main/,但我想了解它为什么不能正常工作。我还尝试了 ResourceLoader 的示例 - 同样没有结果。

谁能提出问题是什么?

更新: 仅供将来参考 - 构建项目后,我遇到访问文件的问题,所以我将 File 更改为 InputStream

InputStream is = new ClassPathResource("countries.xml").getInputStream();
4

8 回答 8

133

只需使用 Spring 类型ClassPathResource

File file = new ClassPathResource("countries.xml").getFile();

只要这个文件在类路径中的某个地方,Spring 就会找到它。这可以src/main/resources在开发和测试期间进行。在生产中,它可以是当前运行目录。

编辑: 如果文件在 fat JAR 中,这种方法不起作用。在这种情况下,您需要使用:

InputStream is = new ClassPathResource("countries.xml").getInputStream();
于 2016-04-02T11:42:19.440 回答
9

在使用 Spring Boot 应用程序时,resource.getFile()当它部署为 JAR 时很难使用类路径资源,因为我遇到了同样的问题。此扫描使用 Stream 解决,它将找出放置在类路径中任何位置的所有资源。

以下是相同的代码片段 -

ClassPathResource classPathResource = new ClassPathResource("fileName");
InputStream inputStream = classPathResource.getInputStream();
content = IOUtils.toString(inputStream);
于 2018-04-13T07:03:34.573 回答
8

获取类路径中的文件:

Resource resource = new ClassPathResource("countries.xml");
File file = resource.getFile();

要读取文件 onStartup 使用@PostConstruct

@Configuration
public class ReadFileOnStartUp {

    @PostConstruct
    public void afterPropertiesSet() throws Exception {

        //Gets the XML file under src/main/resources folder
        Resource resource = new ClassPathResource("countries.xml");
        File file = resource.getFile();
        //Logic to read File.
    }
}

这是一个在 Spring Boot App 启动时读取 XML 文件的小示例

于 2016-04-02T12:22:56.907 回答
5

我使用弹簧靴,所以我可以简单地使用:

File file = ResourceUtils.getFile("classpath:myfile.xml");
于 2019-01-21T05:56:38.447 回答
1

您需要使用以下构造

InputStream in = getClass().getResourceAsStream("/yourFile");

请注意,您必须在文件名前添加此斜杠。

于 2018-06-18T15:16:22.437 回答
1

您可以使用以下代码从资源文件夹中读取字符串中的文件。

final Resource resource = new ClassPathResource("public.key");
String publicKey = null;
try {
     publicKey = new String(Files.readAllBytes(resource.getFile().toPath()), StandardCharsets.UTF_8);
} catch (IOException e) {
     e.printStackTrace();
}
于 2018-10-21T13:47:36.097 回答
0

我使用 Spring Boot,我的解决方案是

"src/main/resources/myfile.extension"

希望它可以帮助某人。

于 2019-03-04T08:11:27.790 回答
0

因为 java.net.URL 不足以处理各种底层资源,所以 Spring 引入了 org.springframework.core.io.Resource。要访问资源,我们可以使用@Value 注解或 ResourceLoader 类。@Autowired 私有 ResourceLoader 资源加载器;

@Override public void run(String... args) 抛出异常 {

    Resource res = resourceLoader.getResource("classpath:thermopylae.txt");

    Map<String, Integer> words =  countWords.getWordsCount(res);

    for (String key : words.keySet()) {

        System.out.println(key + ": " + words.get(key));
    }
}
于 2019-10-22T10:20:35.880 回答