在Spring Boot中从类路径加载文件的示例

资源加载器

使用Java,您可以使用当前线程的classLoader并尝试加载文件,但是Spring Framework为您提供了更为优雅的解决方案,例如ResourceLoader。

您只需要自动连接ResourceLoader,然后调用getResource(„somePath“)方法即可。

在Spring Boot(WAR)中从资源目录/类路径加载文件的示例

在以下示例中,我们从类路径中加载名为GeoLite2-Country.mmdb的文件作为资源,然后将其作为File对象检索。

@Service("geolocationservice")
public class GeoLocationServiceImpl implements GeoLocationService {
  private static final Logger LOGGER = LoggerFactory.getLogger(GeoLocationServiceImpl.class);
  private static DatabaseReader reader = null;
  private ResourceLoader resourceLoader;
  @Autowired
  public GeoLocationServiceImpl(ResourceLoader resourceLoader) {
    this.resourceLoader = resourceLoader;
  }  @PostConstruct
  public void init() {
    try {
      LOGGER.info("GeoLocationServiceImpl: Trying to load GeoLite2-Country database...");
      Resource resource = resourceLoader.getResource("classpath:GeoLite2-Country.mmdb");
      File dbAsFile = resource.getFile();      // Initialize the reader
      reader = new DatabaseReader
            .Builder(dbAsFile)
            .fileMode(Reader.FileMode.MEMORY)
            .build();
      LOGGER.info("GeoLocationServiceImpl: Database was loaded successfully.");
    } catch (IOException | NullPointerException e) {
      LOGGER.error("Database reader cound not be initialized. ", e);
    }
  }
  @PreDestroy
  public void preDestroy() {
    if (reader != null) {
      try {
        reader.close();
      } catch (IOException e) {
        LOGGER.error("Failed to close the reader.");
      }
    }
  }
} 

在Spring Boot(JAR)中从资源目录/类路径加载文件的示例

如果您想从Spring Boot JAR中的 classpath加载文件,则必须使用该resource.getInputStream()方法将其作为InputStream检索。如果尝试使用resource.getFile()该方法,则会收到错误消息,因为Spring尝试访问文件系统路径,但无法访问JAR中的路径。

@Service("geolocationservice")
public class GeoLocationServiceImpl implements GeoLocationService {
  private static final Logger LOGGER = LoggerFactory.getLogger(GeoLocationServiceImpl.class);
  private static DatabaseReader reader = null;
  private ResourceLoader resourceLoader;
  @Inject
  public GeoLocationServiceImpl(ResourceLoader resourceLoader) {
    this.resourceLoader = resourceLoader;
  }  @PostConstruct
  public void init() {
    try {
      LOGGER.info("GeoLocationServiceImpl: Trying to load GeoLite2-Country database...");
      Resource resource = resourceLoader.getResource("classpath:GeoLite2-Country.mmdb");
      InputStream dbAsStream = resource.getInputStream(); // <-- this is the difference
      // Initialize the reader
      reader = new DatabaseReader
            .Builder(dbAsStream)
            .fileMode(Reader.FileMode.MEMORY)
            .build();
      LOGGER.info("GeoLocationServiceImpl: Database was loaded successfully.");
    } catch (IOException | NullPointerException e) {
      LOGGER.error("Database reader cound not be initialized. ", e);
    }
  }
  @PreDestroy
  public void preDestroy() {
    if (reader != null) {
      try {
        reader.close();
      } catch (IOException e) {
        LOGGER.error("Failed to close the reader.");
      }
    }
  }
} 

以上就是在Spring Boot中从类路径加载文件的示例的详细内容,更多关于spring boot 加载文件的资料请关注我们其它相关文章!

(0)

相关推荐

  • SpringBoot内部外部配置文件加载顺序解析

    内部配置加载顺序 SpringBoot 启动会扫描以下位置的application.properties或者application.yml文件作为Spring boot的默认配置文件 –file:./config/ –file:./ –classpath:/config/ –classpath:/ 优先级由高到底,高优先级的配置会覆盖低优先级的配置: SpringBoot会从这四个位置全部加载主配置文件:互补配置:还可以通过spring.config.location来改变默认的配置文件位置 项

  • 详解springboot启动时是如何加载配置文件application.yml文件

    今天启动springboot时,明明在resources目录下面配置了application.yml的文件,但是却读不出来,无奈看了下源码,总结一下springboot查找配置文件路径的过程,能力有限,欢迎各位大牛指导!!! spring加载配置文件是通过listener监视器实现的,在springboot启动时: 在容器启动完成后会广播一个SpringApplicationEvent事件,而SpringApplicationEvent事件是继承自ApplicationEvent时间的,代码如下

  • 详解Spring Boot加载properties和yml配置文件

    一.系统启动后注入配置 package com.example.config; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.context.annotation.Configuration; import org.springframework.context.annotation.PropertySource; import org.springframewo

  • spring boot加载第三方jar包的配置文件的方法

    前言 今天收到一封邮件,大概内容如下:spring boot鼓励去配置化,那么怎么将第三方jar包中的xml去配置化了? 其实,这个问题,在前面的文章中也有提到,http://www.jb51.net/article/125700.htm 下面,我们就以Quartz定时任务为例,单独对这个问题来进行说明,如何实现去配置化. 如果不使用spring boot,我们配置一个简单的定时任务时,需要引入以下配置文件: <!-- 配置需要定时执行的任务类以及方法 --> <bean id=&quo

  • SpringBoot配置文件的加载位置实例详解

    springboot采纳了建立生产就绪spring应用程序的观点. Spring Boot优先于配置的惯例,旨在让您尽快启动和运行.在一般情况下,我们不需要做太多的配置就能够让spring boot正常运行.在一些特殊的情况下,我们需要做修改一些配置,或者需要有自己的配置属性. SpringBoot启动会扫描以下位置的application.yml或者 application.properties文件作为SpringBoot的默认配置文件. -file:./config/    -file:./

  • 简单了解springboot加载配置文件顺序

    1.目录结构 Application属性文件,按优先级排序,位置高的将覆盖位置 当前项目目录下的一个/config子目录 当前项目目录 项目的resources即一个classpath下的/config包 项目的resources即classpath根路径(root) 二.读取顺序 如果在不同的目录中存在多个配置文件,它的读取顺序是: 1.config/application.properties(项目根目录中config目录下) 2.config/application.yml 3.appli

  • spring boot启动时加载外部配置文件的方法

    前言 相信很多人选择Spring Boot主要是考虑到它既能兼顾Spring的强大功能,还能实现快速开发的便捷.本文主要给大家介绍了关于spring boot启动时加载外部配置文件的相关内容,下面话不多说了,来随着小编一起学习学习吧. 业务需求: 加载外部配置文件,部署时更改比较方便. 先上代码: @SpringBootApplication public class Application { public static void main(String[] args) throws Exce

  • Springboot为什么加载不上application.yml的配置文件

    调试源代码,配置文件加载代码位置是: org.springframework.boot.context.config.ConfigFileApplicationListener public void postProcessEnvironment(ConfigurableEnvironment environment,SpringApplication application)方法 这个方法执行完,enviroment->propertySources从4个,变成6个,最终加载完成 先读取pro

  • 浅谈SpringBoot2.4 配置文件加载机制大变化

    前言 Spring Boot 2.4.0.M2刚刚发布,它对 application.properties 和 application.yml 文件的加载方式进行重构.如果应用程序仅使用单个 application.properties 或 application.yml 作为配置文件,那么可能感受不到任何区别.但是如果您的应用程序使用更复杂的配置(例如,Spring Cloud 配置中心等),则需要来了解更改的内容以及原因. 为什么要进行这些更改 随着最新版本 Spring Boot 发布,S

  • Spring Boot加载配置文件的完整步骤

    前言 本文针对版本2.2.0.RELEASE来分析SpringBoot的配置处理源码,通过查看SpringBoot的源码来弄清楚一些常见的问题比如: SpringBoot从哪里开始加载配置文件? SpringBoot从哪些地方加载配置文件? SpringBoot是如何支持yaml和properties类型的配置文件? 如果要支持json配置应该如何做? SpringBoot的配置优先级是怎么样的? placeholder是如何被解析的? 带着我们的问题一起去看一下SpringBoot配置相关的源

随机推荐