9

使用 Spring Boot 2.1.5 Release,创建了以下示例 Spring Boot 微服务:

Maven项目结构:

MicroService
    │
    pom.xml
    src
    │
    └───main
        │ 
        ├───java
        │   │ 
        │   └───com
        │       └───microservice
        │           │
        │           └───MicroServiceApplication.java  
        │  
        └───resources
            │
            └───data.json
                │                    
                application.properties

具有以下 JSON 文件(在 src/main/resources/data.json 内):

{"firstName": "John", "lastName": "Doe"}

微服务应用:

@SpringBootApplication
public class MicroServiceApplication {

    @Bean
    CommandLineRunner runner() {
        return args -> {
            String data = FilePathUtils.readFileToString("../src/main/resources/data.json", MicroServiceApplication.class);
            System.out.println(data);
        };
    }

    public static void main(String[] args) {
        SpringApplication.run(MicroServiceApplication.class, args);
    }
}

引发以下异常:

  java.lang.IllegalStateException: Failed to execute CommandLineRunner
  ...
  Caused by: java.io.IOException: Stream is null

FilePathUtils.java:

import io.micrometer.core.instrument.util.IOUtils;

import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.Charset;

public class FilePathUtils {
    public static String readFileToString(String path, Class aClazz) throws IOException {

        try (InputStream stream = aClazz.getClassLoader().getResourceAsStream(path)) {
            if (stream == null) {
                throw new IOException("Stream is null");
            }
            return IOUtils.toString(stream, Charset.defaultCharset());
        }
    }
}

我可能做错了什么?

4

3 回答 3

18

虽然@Deadpool 提供了答案,但我想补充一点,当创建 spring boot 工件时src/main/,不再有这样的文件夹(您可以打开 spring boot 工件并自行确保)。

所以你不能像这样加载资源:

FilePathUtils.readFileToString("../src/main/resources/data.json", MicroServiceApplication.class);

Spring确实有一个Resource可以在应用程序中使用的抽象,甚至可以注入到类/配置中:

@Value("classpath:data/data.json")
Resource resourceFile;

请注意前缀“类路径”,它意味着资源将从类路径中解析(读取正确打包到工件中的所有内容)。

有一个很好的教程,可以很方便

于 2019-11-05T06:52:29.377 回答
7

在 Spring Boot 项目中,您可以使用ResourceUtils

Path file = ResourceUtils.getFile("data/data.json").toPath();

或者ClassPathResource

String clsPath =  new ClassPathResource("data/data.json").getPath();

有时如果你正在阅读不同的扩展文件,或者.graphql你需要像使用spring一样阅读它,这篇文章有明确的解释.mmdb.jsonInputStreamResourceLoader

@Autowire
private ResourceLoader resourceLoader;

   Resource resource =resourceLoader.getResource("classpath:GeoLite2-Country.mmdb");
   InputStream dbAsStream = resource.getInputStream();

并使用复制InputStream到临时文件Files.copy

Files.copy(inputStream, outputFile.toPath(), StandardCopyOption.REPLACE_EXISTING);
于 2019-11-05T03:41:53.383 回答
4

您可以使用jakson-databind.

JacksonObjectMapper类 ( com.fasterxml.jackson.databind.ObjectMapper) 是最简单的解析方法之一JSON。来自字符串、流或文件的 Jackson ObjectMapper can parse JSONcreate a Java object or object graph表示解析后的 JSON。Parsing JSON转入 Java 对象也称为deserialize Java objects转自 JSON。

// create Object Mapper
ObjectMapper mapper = new ObjectMapper();

// read JSON file and map/convert to java POJO
try {
    SomeClass someClassObject = mapper.readValue(new File("../src/main/resources/data.json"), SomeClass.class);
    System.out.println(someClassObject);
} catch (IOException e) {
    e.printStackTrace();
}

你应该jakson-databind在你的.pom文件中有:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.11.4</version>
</dependency>
于 2020-12-28T22:59:05.967 回答